1. Find and open the Terminal application on your lab machine. (Click here to view an image of the application icon).
  2. You will need to use a minimum of Linux commands to navigate to your submission directory. These commands are:
  3. We will now copy this directory to your home directory of your CS account, using the scp (secure copy) command
    scp -r Lab1 ursa.cs.uchicago.edu:~/
    -r specifies that the directory will be copied recursively, while ~specifies the home directory of your CS account. To read more about the scp command type man scp at the terminal window.
  4. We will now connect remotely to your CS account using the ssh (secure shell) command:
    ssh ursa.cs.uchicago.edu
    You will be authenticated using your CS account password.
  5. Once logged in, we are by default located in the home directory. A simple list of its currents content should show the lab directory we have copied here in step 3:
    bash-3.2$ ls
    Lab1
    bash-3.2$ ls Lab1
    lab1.rkt
  6. We are now ready to submit this directory using the hwsubmit command:
    bash-3.2$ hwsubmit cmsc10500lab Lab1