Skip to content

Instantly share code, notes, and snippets.

@khssnv
Last active February 13, 2020 10:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save khssnv/f693c402cce21a67fd71d63231aeae10 to your computer and use it in GitHub Desktop.
Save khssnv/f693c402cce21a67fd71d63231aeae10 to your computer and use it in GitHub Desktop.
Tmux cheatsheet for Autonomous Kitchen
  1. Add connection config to ssh (it's only for NUC only, you may find jetsons configs in chat):

Open ~/.ssh/config.

Add this and save:

Host nuc-1
    Hostname 192.168.7.231
    User remy
    ForwardX11 yes
    ForwardAgent yes
    IdentityFile ~/.ssh/id_rsa
  1. Connect to NUC by ssh:
ssh nuc-1

Replace nuc-1 with jetson-x if you want to connect to x-nth jetson.

  1. Attach to tmux session (NB! shared between all users attached, be careful):
tmux attach -t ak
  1. Switch tab to 3rd:
Ctrl+b, 3
  1. Create new tab for your stuff:
Ctrl+b, c
  1. Detach from tmux session:
Ctrl+b, d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment