-
Notifications
You must be signed in to change notification settings - Fork 0
Moving Files to and from Filer
Travis Collins edited this page Dec 23, 2015
·
7 revisions
Since the Linux machines do not have filer drives mapped, we need to use alternative means to save and retrieve files from filer.
ssh-keygen -t rsa -C "your_email@wpi.edu"
ssh-copy-id -i ~/.ssh/id_rsa.pub username@ccc.wpi.edu
mkdir ece4305_sync
Sync folder to filer. This will create a folder on filer with the same name.
rsync ece4305 username@wpi.edu:~/ece4305
Pull files: rsync username@wpi.edu:~/ece4305 ece4305
Backup files: rsync ece4305 username@wpi.edu:~/ece4305
echo "alias filer_push='rsync ece4305 username@wpi.edu:~/ece4305'">>~/.bashrc
echo "alias filer_pull='rsync username@wpi.edu:~/ece4305 ece4305'">>~/.bashrc