General Stuff

ssh-ing into liverpool / baross

Liverpool:

ssh [username]@liverpool.its.carleton.edu

Baross

ssh [username ]@baross.its.carleton.edu

Using screen/ tmux

(We have been using screen in class.)

See: Cheat Sheet

^ = control key

| Action                     | tmux         | screen     |
|----------------------------|--------------|------------|
| start new session          | `tmux`       | `screen`   |
| detach from current session| `^b d`       | `^a ^d`    |
| re-attach detached session | `tmux attach`| `screen-r` |
| list sessions              | `^b s`       | `screen-r` |

File Transfer

Filezilla

  • Open Filezilla
  • Host: sftp://liverpool.its.carleton.edu
  • Username: Carleton username
  • Password: Carleton password
  • Port: 22
  • Click QuickConnect

Secure Copy

From baross to local computer:

scp [username]@baross.its.carleton.edu:/Accounts/[username]/[path of your destination directory]/[some_file.txt] ~/Desktop

From local computer to baross:

scp ~/Desktop/[some_file.txt] [username]@baross.its.carleton.edu:/Accounts/[username]/[path of your destination directory]