TMUX

INSTALLATION

root@oco:~$ sudo apt install tmux -y
root@oco:~$ tmux

WINDOWS

#open a new window
root@oco:~$ tmux
tmux:~$ CTRL+B + c

#switching windows
root@oco:~$ tmux
tmux:~$ CTRL+B + c
tmux:~$ CTRL+B + {0 | 1}

#split window vertically
root@oco:~$ tmux
tmux:~$ CTRL+B + %

#split window horizontally
root@oco:~$ tmux
tmux:~$ CTRL+B + "

#horizontal pane switching
root@oco:~$ tmux
tmux:~$ CTRL+B + "
tmux:~$ CTRL+B + {leftArrow | rightArrow}

#vertical pane switching
root@oco:~$ tmux
tmux:~$ CTRL+B + %
tmux:~$ CTRL+B + {upArrow | downArrow"

Last updated