> For the complete documentation index, see [llms.txt](https://minanode.staketab.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://minanode.staketab.com/english/setting-up-tmux.md).

# Setting up TMUX

## 1. Install TMUX

```
sudo apt install tmux -y
```

### 1.1 Configuring TMUX

Session creation:

```
tmux new -s session1
```

Where the session name `session1` can be written any.

Exit from the session using the keys:

> CTRL+B->D

#### Return to session:

```
tmux attach -t session1
```

#### View working sessions:

```
tmux ls
```

#### Deleting a session:

```
tmux kill-session -t session1
```
