LoginSignup
1
0

More than 5 years have passed since last update.

tmux基本操作

Posted at
  • tmuxのデフォルトでの操作方法を度々忘れるので、自分用に備忘メモ。

プレフィックス

  • デフォルトは「Ctrl + B」

新規セッションを開始する

  • 方法①

    tmux
    
  • 方法②

    tmux new-session
    

既存セッションを確認する

  • 作成済みセッションを一覧表示する

    tmux ls
    

セッションをデタッチ

  • 現在のセッションから抜ける
[prefix] + d

既存セッションにアタッチする

  • 直近使用されたセッション

    tmux attach
    
  • セッション番号を指定

    tmux attach -t (セッション番号)
    
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0