Here are some useful editors and compilers for different operating systems:
gcc example.c gfx.c -o example -I/usr/X11R6/include -L/usr/X11R6/lib -lX11 -lm
Here are the commands to copy files between local and remote systems using SSH, **you have to disconnect SSH sudo halt:
scp /path/to/local/file username@hostname:/path/to/remote/file
scp username@hostname:/path/to/remote/file /path/to/local/file
To copy a directory, use the -r
flag:
scp -r pi@raspberrypi:/home/pi/Desktop/csc250DT2 /Users/isaiahkeating/Desktop