There is no system in place to directly access files saved when working in the Linux labs, to do so you must first connect to the externally facing server Helios, from there connect to server Ouranos and then drag the files you want back with you to your computer. This is the basic process:
- Connect to Helios
- Connect to Ouranos
- Pack up the folder you want
- Disconnect from Ouranos
- Copy file Ouranos > Helios
- Disconnect from Helios
- Copy file Helios > your computer
Windows
- Open PuTTY
- Connect to Helios using the following Host Name
helios.hud.ac.uk
ssh ouranos
tar -czf new_filename.tar.gz directory_name
exit
sftp ouranos
get new_filename.tar.gz
(Hint: While using FTP interactively, use the usual Unix commands for navigating the file structure, ls, cd etc.)
exit
sftp://helios.hud.ac.uk
(Port: Leave blank)
Linux/OS X
- Open a new Terminal
- Connect to Helios with your student ID
ssh u0899999@helios.hud.ac.uk
ssh ouranos
tar -czf new_filename.tar.gz directory_name
exit
sftp ouranos
get new_filename.tar.gz
(Hint: While using FTP interactively, use the usual Unix commands for navigating the file structure, ls, cd etc.)
exit
sftp u0899999@helios.hud.ac.uk
get new_filename.tar.gz
exit
tar -xvf new_filename.tar.gz