> For the complete documentation index, see [llms.txt](https://utm-1.gitbook.io/utm-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://utm-1.gitbook.io/utm-docs/dokumentaciya/utm-it/programmnoe-obespechenie/linux-servera/instrukcii/ustanovka-ubuntu-desktop.md).

# Установка Ubuntu Desktop

## Ссылки

Download Ubuntu Desktop: [ubuntu.com](https://ubuntu.com/download/desktop)

Установить Ubuntu Desktop: [ubuntu.com](https://ubuntu.com/tutorials/install-ubuntu-desktop#1-overview)

## Заметки по установке Ubuntu Desktop

### Подготовка

1. Скачать iso образ `ubuntu-24.04.3-desktop-amd64.iso`
2. Создать загрузочную флешку с помощью [balenaEtcher](https://etcher.balena.io/) или аналогичной программы.
3. Загрузить компьютер с подготовленной флешки

### Установка

На экране **Type of installation** выбрать **Interactive installation**.

На экране **Application** выбрать **Extended selection**.

На экране **Optimize your computer** выбрать **Install third-party software grafics and WI-FI hardware** и **Download and install support and additional media formats**.

На экране **Disk setup** выбрать **Erase disk and install Ubuntu**.

На экране **Advanced features** выбрать **None**.

На экране **Create your account** указать:

* Your name =  Maxim
* Your computers name = utm-server4
* Your username = maxim
* Password
* Require my password to log in = yes
* Use Active Directory = no

На экране **Select your timezone** выбрать **Moscow**.

## После установки

### Имя компьютера

Проверить имя компьютера. Если установлено не верно, поменять.

Настройки - Сеть - Проводное - Параметры сети - Идентификация - Имя

### IP адрес

На роутере присвоить статический IP адрес новому компьютеру.

Локальная сеть - DHCP сервер - Список присвоенных вручную IP-адресов в обход DHCP

### Обновить пакеты

```bash
sudo apt update
sudo apt upgrade
```

### Изменить размер файла подкачки

Документация [тут](https://arenda-server.cloud/blog/kak-dobavit-swap-prostranstvo-na-ubuntu-24/).

VMware Workstation просит увеличить файл подкачки приблизительно до 16 Гб.

Проверить текущее состояние swap:

```bash
sudo swapon --show
free -h
cat /proc/meminfo | grep -i swap
```

Необходимо создать файл размером 16GB

```bash
sudo fallocate -l 16G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
echo '/swapfile swap swap defaults 0 0' | sudo tee -a /etc/fstab
```

Проверка результата

```bash
sudo swapon --show
free -h
```

### Настройка с помощью программы Tweaks

Установка программы

```bash
sudo apt update
sudo apt install gnome-tweaks
```

Запустить программу Tweaks (Дополнительные настройки), перейти в раздел Windows (Окна).

Кнопки заголовка окна

* Maximize (Развернуть) = on
* Minimize (Свернуть) = on


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://utm-1.gitbook.io/utm-docs/dokumentaciya/utm-it/programmnoe-obespechenie/linux-servera/instrukcii/ustanovka-ubuntu-desktop.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
