Logging In & Transferring Files
For Macs/Linux - Logging In
- Open a Terminal (usually under Applications/Utilities on a Mac)
-
Cut and paste this into the terminal:
ssh username@tadpole.genomecenter.ucdavis.edu
where ‘username’ is replaced with your actual username. Press Enter.
- Type in your password. No characters will display when you are typing. Press Enter.
For Macs/Linux - Transferring files
-
Use scp (secure copy, a remote file copying program) to pull a file from the remote server to your local machine:
scp username@tadpole.genomecenter.ucdavis.edu:[full path to file] .
Replace ‘username’ with your username and replace ‘[full path to file]’ with the full, absolute path to the file you want to transfer. Note that there is a “.” at the end of the command (after a space), which is where to put the file, i.e. your current directory. You will have to type in your password.
-
Use scp to push a file from your local machine to the remote server:
scp [local path to file] username@tadpole.genomecenter.ucdavis.edu:[full path to directory/]
-
See the pattern? … scp [from] [to]
For Windows - Logging In
- Open up PuTTY (should be on lab computers). If you haven’t installed PuTTY, get it here.
- In the Host Name field, type tadpole.genomecenter.ucdavis.edu
- Make sure the Connection Type is SSH.
- Press “Open”. It will ask you for your username and password.
For Windows - Transferring files
- Open up WinSCP (should be on lab computers). If you haven’t installed WinSCP, get it here.
- In the Host Name field, type tadpole.genomecenter.ucdavis.edu
- Type in your username and password.
- Make sure the File Protocol is SFTP.
- Press “Login”.