...
For example, to copy your deleted file from your project directory from last Friday:
[user@ln1 user@talapas-ln1 ~]$ cp /gpfs/.snapshots/daily-Fri/projects/myPIRG/myDataDir/path/to/myDeletedFile .
...
Perhaps the easiest way for you to do this is by using rsync, e.g.:
[user@ln1 user@talapas-ln1 ~]$ rsync -auv myDuckID@dtn01.uoregon.edu:/projects/myPIRG/myDuckID/myDataDirectory myDestinationDirectory
alternatively you can use scp:
[user@ln1 user@talapas-ln1 ~]$ scp -rp myDuckID@dtn01.uoregon.edu:/projects/myPIRG/myDuckID/myDataDirectory myDestinationDirectory
...
Most quota issues involve the home directory. All users gets a hard 10GB quota that is fixed and will not be increased. We recommend that users use their project directory (/projects/{myPIRG}/{myUsername}) to write and store their data. By default, PIRGs have minimum of 2 TB to work with in their project directories, and users have a shortcut in their home directory that points to their projects directory so that it can be accessed from the home directory by just doing "cd projects". If you do not have this shortcut and would like to have it, perform the following commands:
[user@talapas-ln1 ~]$ cd
[user@talapas-ln1 ~]$ ln -s /projects/myPIRG/myUsername projects
[user@talapas-ln1 ~]$ cd projects
[user@talapas-ln1 projects]$ $
You can now work from your projects folder.
...