After you submitted your assignment, you should verify
what you've submitted can be compiled as is on
aludra.usc.edu/nunki.usc.edu.
- Go to the homework page on
BlackBoard
- Download the file you have just uploaded
- Copy the file to aludra.usc.edu/nunki.usc.edu
- On aludra/nunki
- Unpack the file (see example below)
- Compile your code
- Test your code
Example of Verifying Your Submission
Below, we use hw1 as an example.
You should change hw1 to the appropriate name for your assignments.
Let's say your hw1.tar.gz is in your ~ (home) directory.
Do the following on aludra.usc.edu/nunki.usc.edu:
% cd ~
% mkdir xyzzy
% cd xyzzy
% gunzip -c ../hw1.tar.gz > hw1.tar
% tar xvf hw1.tar
% [ check to make sure that all the files are there ]
% [ use the instruction in your "compile.txt" to compile your hw1 ]
% cd ..
% rm -rf xyzzy
Before you run the mkdir command, make sure you don't
have the xyzzy directory. If you do, delete it before
you proceed.
A few things to note:
- If the gunzip command failed, the hw1.tar.gz
file your've submitted is not properly gzipped.
- If the tar command failed, the hw1.tar.gz
file your've submitted is not properly created.
- If by following the instruction in your "compile.txt" file failed
to create your program, you probably forgot to include
something in your submission. Please remember that if this does not
work properly, you will lose quite a few points.
- If any of the above failure occurs, you must recreate your submission
and submit again and verify again.
Please remember that, if you forget to submit a file,
we cannot accept a file after the submission deadline (no matter what
the file timestamp is on aludra/nunki or on your personal machine)
and your assignment most likely will end up with a score of zero.
|