Contact
Service group IT
University of Ulm
The SGI drives can also be accessed from home. This small How-To shows a simple way with the SCP or SFTP protocol, which ensures practically tap-proof data transmission.
Under Linux, of course, the scp protocol also exists. One way to use it is simply from the command line, similar to the cp command:
scp <from> <to>
With <from> and <to> you may add the usual path names in front:
<username>@<computer name>:<path name>.
The colon between computer name and pathname is important!
Two examples:
scp something.txt xy3@login.informatik.uni-ulm.de:
copies the file to the target machine, (password is requested, a login happens in the background), into the home directory of xy3.
scp -r ms67@login.informatik.uni-ulm.de:/home/ms67/Desktop/ .
copies the desktop, because of -r the whole tree, to the local machine.
Service group IT
University of Ulm