provocativo_
back to the arsenal
// arsenal·Linux & ShellBeginnerFOSS

tmux

Terminal multiplexer — multiple sessions and panes in one terminal, survives SSH drops.

Linux & Shell

$ tmux --help

tmux

// what it is

Description

Nicholas Marriott's terminal multiplexer. Critical for any long-running engagement — start a tmux session, detach, reconnect later, your work survives network drops and laptop sleeps.

// use cases

What people use it for

  • Resilient remote sessions
  • Multi-pane workflows
  • Sharing terminal sessions

// commands

The commands you'll type

New session

$ tmux new -s work

Attach existing

$ tmux attach -t work

// facts

category
Linux & Shell
platforms
LIN · MAC
license
FOSS
difficulty
Beginner

// related in Linux & Shell