Show pageBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== tmux ====== https://www.tmuxcheatsheet.com/ ===== Commands ===== ^ Attach to last session | tmux a | ===== Keyboard ===== ''Ctrl + b'' to enter command, one of the following: ^ Rename session | ''$'' | ^ Detach from session | ''d'' | ^ Move to previous session | ''('' | ^ Move to next session | '')'' | ^ New Window | ''c'' | ^ Close current window | ''&'' | ^ Previous window | ''p'' | ^ Next window | ''n'' | ^ Scroll mode | ''['' | ===== settings ===== ^ __set setting__ | '':'', then type | ^ enable mouse support | ''set -g mouse on'' | ===== tips & tricks ===== ==== launch automatically over SSH ==== <file bash ~/.bashrc> if [ -z "$TMUX" ] && [ -n "$SSH_TTY" ]; then tmux attach-session -t ssh || tmux new-session -s ssh exit fi</file> ===== troubleshooting ===== ==== open terminal failed: missing or unsuitable terminal: xterm-256color ==== Your system doesn't have xterm-256color. You could: <code bash>export TERM=xterm</code> Maybe the file ''/usr/share/terminfo/x/xterm-256color'' is corrupted. It may be fixed upon (system/package) upgrade / reinstall. Meanwhile you can use other terminfo entry. You can get the available options by ''ls /usr/share/terminfo/x''. <code bash>ln -sf /usr/share/terminfo/x/xterm-color /usr/share/terminfo/x/xterm-256color</code> ([[https://stackoverflow.com/questions/21523815/tmux-open-terminal-failed-missing-or-unsuitable-terminal-xterm-256color|source]]) Last modified: 2024-07-05 14:31