2.4K
Tmux is a software application that can be used to multiplex several virtual consoles, allowing a user to access multiple separate terminal sessions inside a single terminal window or remote terminal session. It is similar to screen as it lets you run numerous TTYs in the same terminal window.
Tmux is a software application that can be used to multiplex several virtual consoles, allowing a user to access multiple separate terminal sessions inside a single terminal window or remote terminal session. It is similar to screen as it lets you run numerous TTYs in the same terminal window.
To install Tmux, the following libraries should be installed on the server.
libevent , libevent-devel
How to install Tmux ?
Download tmux -1.6.tar.gz using wget.tar -xvf tmux-1.6.tar.gz./configure –prefix=/usr/local/tmuxmake && make install/usr/local/tmux/bin/tmux
Session Management
tmux new -s session_name :- creates a new tmux session named session_nametmux attach -t session_name :- attaches to an existing tmux session named session_nametmux switch -t session_name :- switches to an existing session named session_nametmux list-sessions :- lists existing tmux sessionstmux detach (prefix + d) :- detach the currently attached session
If you require help, contact SupportPRO Server Admin
