There are many ways to connect to the server on a mac -- these are my preferred ways.
ssh -Y csusername@servername.cs.unm.edu
. Here, csusername is your CS username and servername is one of trucks or moons.If you want to work on a file on your home computer and upload it to the server, you will need to sftp.
cd
into the folder where your file is located on your home computer. sftp csusername@servername.cs.unm.edu
. Here, csusername is your CS username and servername is one of trucks or moons.put filename
will put the file on your home computer named filename onto the CS server in your home folder.get filename
will get the file from the CS server and download it to your home computer.