> For the complete documentation index, see [llms.txt](https://spacecore.gitbook.io/wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://spacecore.gitbook.io/wiki/os-and-software/linux-screen.md).

# Screen

### Процесс установки:

```
apt-get install -y screen
```

### Запуск и основы работы со Screen:

{% hint style="danger" %}
Во всех случаях для корректной работы важен регистр.
{% endhint %}

Для создания нового окна **screen** используйте команду:

```
screen -S <NAME>
```

Для перехода в уже созданное окно используйте:&#x20;

```
screen -x <NAME>
```

Чтобы посмотреть список всех созданных **screen**, используйте команду:

```
screen -ls
```

Чтобы перейти или выйти со **screen**, используйте сочетание клавиш:

```
CTRL + A + D
```
