Files
wiki/computers/tmux.md
2021-11-17 23:12:50 -05:00

688 B

title, description, published, date, tags, editor, dateCreated
title description published date tags editor dateCreated
Tmux 1 2021-11-18T04:12:42.276Z markdown 2021-11-18T04:12:42.276Z

Tmux

Basics

  • ctrl+b % - Opens new pane to left
  • ctrl+b " - Opens to new below
  • ctrl+b c - Opens new window
  • ctrl+b {any number} - switches to that window
  • ctrl+b , - rename window
  • ctrl+b d - detach session
  • tmux ls - lists all sessions
  • tmux attach -t {session number/name} - reattach to session
  • tmux session-rename -t {session number/name} {new name} - renames session
  • tmux new -s {name} - Opens new session with given name
  • tmux kill-session -t {session number/name} - kills session