0%

tmux初步入门

记录一下常用的tmux命令

  • Create Named Sessions
    1
    2
    3
    4
    5
    tmux new-session -s basic

    or

    tmux new -s basic
  • detach session
    1
    PREFIX d
  • Retattaching to Existing Sessions

    1
    2
    3
    4
    5
    tmux list-sessions

    or

    tmux ls
  • Attach to Sessions

    1
    tmux attach -t basic

Welcome to my other publishing channels