DEV Community

technonotes-hacker
technonotes-hacker

Posted on

Tmux - A Multiplexer Screen Viewer

  • Terminal Multiplexing ( Tmux )
  • Helps to run the program simultaneously.
  • The whole screen and can be divided into rectangular panes.
  • Its a concept for sessions in the screen.

How to Install in Ubuntu

sudo apt-get install tmux
Enter fullscreen mode Exit fullscreen mode

Image description

One by one execute the below command:

tmux
Control + B
D 
Enter fullscreen mode Exit fullscreen mode

Image description

Image description

Image description

Help

tmux
control + b
?
Enter fullscreen mode Exit fullscreen mode

Image description

Panes

tmux
control + b
% ( control + % )
Enter fullscreen mode Exit fullscreen mode

Image description

control + b
" ( control + " )
Enter fullscreen mode Exit fullscreen mode

Image description

Moving across the Panes

control + b
Arrow 
Enter fullscreen mode Exit fullscreen mode

Image description

Resize the Panes

control + b ( hold it )
Press the Arrow
Enter fullscreen mode Exit fullscreen mode

Image description

Screens

Control + B
C
Enter fullscreen mode Exit fullscreen mode

Image description

Switch between screens

control + b
n ( Next )
P ( Previous )
Enter fullscreen mode Exit fullscreen mode

Reference

  1. https://www.fosslinux.com/58586/install-and-use-tmux-on-linux.htm

  2. https://www.youtube.com/watch?v=e-ra8fSaSkQ&list=PLTY9BjMMGESF20iLUIMncEN1UVLJocD3T

Top comments (0)