Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
linux_commands [2020/04/18 17:48] – Add systemd misaka00251linux_commands [2022/03/02 15:14] (current) – Add tmux misaka00251
Line 1: Line 1:
 ====== Linux Commands ====== ====== Linux Commands ======
 +
 +===== tmux =====
 +
 +
 +<code>
 +tmux new -s build
 +tmux detach            # or Ctrl+b d
 +tmux ls
 +tmux attach -t 0
 +tmux kill-session -t 0
 +tmux switch -t 0
 +tmux rename-session -t 0 <new_name>
 +</code>
 +
 +To create a new tab, ''Ctrl+b c''.
 +
 +Switch between tabs, ''Ctrl+b <tab_number>''.
  
 ===== Copy ===== ===== Copy =====