What is tmux?
Tmux is a linux tool that you can use to split the terminals for command input.
install tmux first
$ sudo apt install tmux
use tmux
$ tmux or $ tmux new –s myname
now, you have a session. You can create windows in this session:
$ ctrl + b, let it go, and then type "c"
now, you can create pane in a window horizontally and vertically:
$ ctrl + b, let it go, and then "shift + ,"
$ ctrl + b, let it go, and then "shif + %"
Once, you have multiple panes in one window, you can switch among them use:
$ ctrl + b, let it go, and then press the arrow keys: "<-", "->", "up" and "down".
You can also close panes and windows:
$ ctrl + b, let it go, then "x" to kill current one.
What is tmux? Tmux is a linux tool that you can use to split the terminals for command input.