CS208 Intro to Systems S24 Resources
Useful all term
- CS 208 Quick Reference (by Aaron Bauer, hosted by Jeff Ondich)
- CS208 Style Guide (by Jeff Ondich)
- Jeff’s Other Resources
Useful commands
Things you’ll probably forget and want a reminder for:
- Look at the contents of any file
hexdump -C filename
- Compile a C program
gcc -Wall -Werror -g -o [executable-name] [source-file.c ...]
(we will add some other command-line options later in the term).
- Compile a C file to an object module (this produces “source-file.o”)
gcc -Wall -Werror -g -c source-file.c
- Translate an executable or object module to assembly language
objdump -d obj-module