Instructions and commands
This appendix lists some of the popular commands you will use when running programs on Raspberry Pi:
Linux
cd .. @ Change dictionary to parent
mkdir /home/pi/testProg @ Create new file called testProg in folder pi
ls /home/pi @ List files in folder pi
as -g -0 file.o file.s @ Assemble source file file.s to create object file file.o
ld -0 file file.o @ Link object file file.o
gdb file @ Call debugger to debug file
sudo apt-get update @ Download packages in your configuration source files
sudo apt-get upgrade&...