Tmux is a terminal multiplexer that lets you switch easily between several programs in one terminal, detach them (they keep running in the background) and reattach them to a different terminal.
This article assumes you have at least basic knowledge of linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo’ to the commands to get root privileges. I will show you through the step by step installation Tmux Terminal Multiplexer on a Linux server.
Install Tmux Terminal Multiplexer on Linux
Step 1. First make sure that all your system packages are up-to-date by running these following apt-get commands in the terminal.
sudo apt-get update sudo apt-get upgrade
Step 2. Installing Tmux.
Installation is pretty straightforward if you have Ubuntu or CentOS distribution you can install tmux with:
### Debian / Ubuntu based ### apt-get install tmux ### On RedHat / CentOS based ### yum install tmux
After the installation is finish, then type tmux on your console to run tmux:
tmux
Step 3. Tmux Commands QuickStart.
Ctrl+b is the Tmux command prefix. Here below for the sake of Clarity the Ctrl+b will be repeated for every command:
To List the Available Commands:
Ctrl+b ?
To Create a New Pane:
Ctrl+b "
To Change Panes Layouts:
Ctrl+b Space
To Rotate Panes into Layout:
Ctrl+b Ctrl+o
To Switch into another Pane:
Ctrl+b ;
Congratulation’s! You have successfully installed Tmux. Thanks for using this tutorial for installing Tmux Terminal Multiplexer on Linux server. For additional help or useful information, we recommend you to check the official Tmux web site.