Skip to content
This repository was archived by the owner on Jan 24, 2025. It is now read-only.

Server Tricks

Mark Gorenstein edited this page May 23, 2014 · 4 revisions

tmux

tmux is a terminal multiplexor 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."

Start a new session: %tmux
Exit the current session: Ctrl+B, then release and hit D
List sessions: %tmux list-sessions (returns a numbered list of sessions)
Resume a session: %tmux attach -t [number of session]

Clone this wiki locally