Terminal Multiplexer (TMUX): Revision history

From mylearnings
Jump to navigationJump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

16 June 2025

  • curprev 12:3212:32, 16 June 2025 Pristal talk contribs 844 bytes +844 Created page with "* Open a tmux session in shared mode. <pre> tmux -S /tmp/<name> </pre> * Connect to a shared session. <pre> tmux -S /tmp/<name> attach * Detach from current session <pre> <prefix> + d </pre> * View all the tmux sessions running. <pre> tmux ls </pre> * Attach to a session. <pre> tmux attach -t <name/number> </pre> * Rename a tmux session. <pre> tmux rename-session -t <session name/number> <new name> </pre> * Start a new tmux session with name <pre> tmux new -s <sess..."