Syncing with $ARCHIVE
A few examples of backing up data to $ARCHIVE
$CENTER1 <-> $ARCHIVE
The volatile, high performance scratch filesystem, $CENTER1, is not intended for permanent storage. Users are responsible for backing up any critical data either to their own storage, or to $ARCHIVE. The two methods recommended to backup files are either sftp
, scp
, or rsync
via ssh
. Here are examples of using these commands.
sftp a file
Login to a chinook login node.
$ cd $CENTER1/local-subdir
$ sftp bigdipper.alaska.edu
> cd /archive/PROJECT/username/remote-subdir
> put file1
> quit
scp a sub-directory
Login to a chinook login node.
$ scp -rp $CENTER1/local-subdir \
bigdipper.alaska.edu:/archive/PROJECT/$USER/remote-subdir
rsync via ssh
Login to a chinook login node.
$ rsync -av --rsh=ssh $CENTER1/local-subdir/ \
bigdipper.alsaka.edu:/archive/PROJECT/$USER/remote-subdir/
All of these transfers can be automated and executed as a batch job in the chinook transfer queue, or as a cron job on a chinook login node.
Last updated
Was this helpful?