Instructions on making your project available to Judy
- Make sure all of your files are in your one project folder.
Include all sound and image files. Double check this.
- Copy this folder to the Desktop.
- Open the Terminal Application:
Applications=>Utilities=>Terminal
- The Terminal opens to your (the user's) top level
directory.
- Change to the Desktop directory:
cd Desktop
- 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.
- 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
- 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
- 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