Instructions on making your project available to Judy

  1. Make sure all of your files are in your one project folder.
    Include all sound and image files. Double check this.
  2. Copy this folder to the Desktop.
  3. Open the Terminal Application:
    Applications=>Utilities=>Terminal
  4. The Terminal opens to your (the user's) top level directory.
  5. Change to the Desktop directory:
    cd Desktop
  6. Create a tar file. If your project folder is called MyProj do this:
    tar cvf MyProj.tar MyProj
    and you have created one file called MyProj.tar that has the whole folder in it.
  7. Now put this on a web server and send me the url.
    If you have a class account, you have a public_html folder in the class account.
    For example, 231a-bz/public_html
    or, 212b-aa/public_html
  8. In the Terminal Application, type:
    sftp 231a-bz@beowulf.csc.smith.edu
    and type your password at the prompt
    Then at the sftp prompt:
    sftp> cd public_html
    sftp> put MyProj.tar
    sftp> quit
  9. Now from the Terminal application, log in to beowulf
    ssh 231a-bz@beowulf.csc.smith.edu
    and type your password at the prompt
    cd public_html
    Make sure the permissions are set:
    cd public_html
    chmod a+r MyProj.tar