Files
lk/system/tmux.md
2026-04-28 17:40:08 +02:00

61 lines
750 B
Markdown

---
title: tmux
tags:
- system
---
Start with:
```sh
tmux
```
Input a command with C-b
In addition to Windows, there are panes.
|Commands | Key |
|------------------|------|
| New Window | c |
| Previous Window | p |
| next window | n |
| list windows | w |
| vertical split | % |
| horizontal split | " |
| name a command | : |
| kill pane | x |
| kill session | d |
### Name Commands
- split-window
- rename-window
# Sessions
Crate a new session with the name 'backup'.
```sh
tmux new -s backup
```
List sessions:
```sh
tmux list-sessions
```
```sh
tmux kill-session -t 2
```
```sh
tmux attach -t backup
```
# Control
Resize Panes with ^b then Esc+[direction].