πŸ’‘
cheatsheets
  • πŸ‘‹Introduction
  • πŸ‹Docker
  • πŸ’ͺBrute Force
    • Hydra
  • πŸ—οΈCryptography
    • Generate pub/priv key
  • 🐧Linux
    • Curl
    • Debian
    • Fail2Ban
    • Find
    • Grep & Co
    • Netstat
    • ps
    • pdfcrack
    • qpdf
    • Rsync
    • Scp
    • Tmux
    • Ufw
    • Vim
  • 🐍Python
    • Files Handling
    • Web
  • πŸ‘οΈRecon
    • Cewl
    • DNS
    • Host Discovery
    • nmap
    • Web
  • πŸ”Splunk
    • tstats
  • πŸ“‘SSH
  • πŸ•ΈοΈWeb
    • Gobuster
    • OWASP
    • SQLi
      • Resources
  • ⛏️Resources
    • πŸ“‘Cheatsheets
    • πŸ‹οΈTrainings
Powered by GitBook
On this page
  • SESSIONS
  • WINDOWS
  • PANES
  1. Linux

Tmux

PreviousScpNextUfw

Last updated 1 year ago

SESSIONS

Start new session

tmux new -s SessionName

Kill session

tmux kill-ses -t SessionName

Show sessions

tmux lsctrl + b s

Detach from session

ctrl + b d

Attach to sessionLast session

tmux a

SessionName

tmux a -t SessionName

Move to next session

ctrl + b )

Move to previous session

ctrl + b (

Rename session

ctrl + b $

WINDOWS

Set windows name when creating session

tmux new -t SessionName -n WindowsName

New window

ctrl + b c

Close current windows

ctrl + b &

Previous windows

ctrl + b p

Next windows

ctrl + b n

Switch / Go to windows number 0...9

ctrl + b 0...9

Rename windows

ctrl + b ,

PANES

Split pane vertically

ctrl + b %

Split pane horizontally

ctrl + b "

Toggle last active pane

ctrl + b :

Show pane numbers

ctrl + b q

Select pane by number

ctrl + b q 0...9

Switch to next pane

ctrl + b o

Convert pane into a window

ctrl + b !

Close current pane

ctrl + b x

🐧
Tmux Cheat Sheet & Quick Reference
Logo