Get a listing of files in your home and data areas:
ls -la /home/$USER ls -l /data/$USER
Check your disk space allocation and usage:
checkquotaCreate a directory for yourself in /scratch and copy a file into that area:
mkdir /scratch/$USER cp /fdb/blastdb/nt.nal /scratch/$USER
Important: Copy the scripts that will be used in this class to your own area. The utility 'hpc-classes' will do this:
hpc-classes biowulfThe copy takes about 4 mins – be patient. You should now have a directory /data/$USER/hpc-classes/biowulf containing a few GB of data.
# change directory to your /home/$USER cd # cd to the .snapshot directory cd .snapshot # see what snapshots are available ls # cd to a specific snapshot -- replace [date] with the date of an available nightly snapshot cd Nightly.[date] # copy a file from that snapshot to your home directory -- replace 'somefile' with the name of a real file cp somefile /home/$USER # check the newly copied file ls -l /home/$USER/somefile # copy the same file, preserving the timestamp cp -p somefile /home/$USER
Answer
Answer
Answer
Answer
Answer