TMUX Tmux is a terminal multiplexer , it creates multiple terminals on the same tab enable you to see multiple running objects on the same tab when tmux is started it creates a new session with the single window and displays it on the terminal screen. A session is a collection of terminals on single screen You can install tmux: Method 1 $ sudo apt-get install tmux Method 2 $ wget https://github.com/libevent/libevent/releases/download/release-2.1.8-stable/libevent-2.1.8-stable.tar.gz $ tar xzvf libevent-2.1.8-stable.tar.gz $ cd libevent-2.1.8-stable $ sudo ./configure --prefix=/usr/local && make $ wget https://github.com/tmux/tmux/releases/download/2.3/tmux-2.3.tar.gz $ tar xzvf tmux-2.3.tar.gz $ cd tmux-2.3 $ LDFLAGS="-L/usr/local/lib -Wl, -rpath=/usr/local/lib" && ./configure --prefix=/usr/local $ sudo make && sudo make install $ export PATH=$PATH:/usr/local/bin After the installation is finished, then type tm
It is most Important to remain updated with new technologies in our daily life.