where loginid is your login id on the Cluster. If your
Cluster id is the same as your local login id, you may omit loginid.
Using the SSH client software, log in to the cluster
prmggr01.its.calpoly.edu.
For security reasons, access to the Cluster is not available with rsh
(remote shell), rlogin (remote login), rexec (remote execute), or
telnet commands, or FTP, as they all send unencrypted passwords over the network.
Copying data and/or program files to/from Cluster.
Use scp client program on your local computer to transfer files from/to the Cluster.
The form of scp is:
$ scp source_filename target_filename
Where source_filename is:
filename(for file in current directory)
relative_path/filename(for a file below your current directory)
/absolute_path/filename (for a file elsewhere)
And target_filename is:
loginid@host_name:filename (for a file in loginid's home directory)
loginid@host_name:relative_path/filename (for a file below the home directory)
loginid@host_name:/absolute_path/filename (for a file elsewhere)
Examples:
To copy "a.file" from your local machine to your home directory on the Custer:
$ scp a.file loginid@prmggr01.its.calpoly.edu:/home/loginid/
The same can be done with multiple files:
$ scp a.file b.file c.file loginid@prmggr01.its.calpoly.edu:/home/loginid/
Or using the "*" wildcard:
$ scp *_file loginid@prmggr01.its.calpoly.edu:/home/loginid/
To copy "a.file" from the cluster to your local machine at your current directory level:
$ scp loginid@prmggr01.its.calpoly.edu:/home/loginid/a.file ./
Using the "*" wildcard and placing the files on the "results" subdirectory:
$ scp loginid@prmggr01.its.calpoly.edu:/home/loginid/*.file ./results/