🖥️
Networking & Server

tmux

Terminal multiplexer — keep sessions running after SSH disconnect

🐧 Linux🍎 Mac🪟 Windows
Reviewed: Tested on: Kubernetes 1.29 · Terraform 1.8 · Ubuntu 22.04

What is this?

tmux lets you split your terminal and keep sessions running after you disconnect from SSH.

📥

Step 01

Install tmux

(01)Install tmux

Linux
1sudo apt-get install -y tmux
⚙️

Step 02

Configure tmux

(01)Configure tmux

Linux
1tmux new -s dev
2# Ctrl+b d to detach
3tmux attach -t dev

Step 03

Verify

(01)Verify installation

Linux
1tmux -V
2tmux ls