Copying files using scp
Copying files between different linux, MacOSX or UNIX servers can be done with the scp
command. Thus you can use scp to transport data between CSC and your local environment or between different file systems at CSC.
The basic syntax for copying data from a local machine to a remote machine is:
scp /path/to/file user@server.example.fi:/path/to/remote/destination
scp user@server.example.fi:/path/to/file /path/to/local/destination
The command to copy a local file data.txt from the current directory to Puhti the user bob:s home directory would be:
scp data.txt bob@puhti.csc.fi:~/
~
points to the users home directory.
To copy complete directories you should use scp
command with option -r.
scp -r /path/to/data_directory bob@puhti.csc.fi:/scratch/project_#####/data_dir
Copying the data from CSC environment to local computer is done in the same way:
scp bob@puhti.csc.fi:/scratch/project_#####/data.txt .
.
symbol points to the current local directory. Use the csc-workspaces
command on Puhti to show available
disk areas.
In the commands above, files and directories have been copied one at a time. However, scp can copy several files at a time:
scp data1.txt data2.txt data3.txt bob@puhti.csc.fi:~/
You can also use wild cards when defining the files to be copied. For example to copy all files with extension .txt in the current directory to Puhti, you could use the command:
scp *.txt kkayttaj@puhti.csc.fi:~/
scp
command, then the copied file will inherit the date and access mode information from the original file.