> 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/ua/contabo/vps-resize.md).

# Розширення дискового простору

Інструкція актуальна у випадку придбання додаткового місця для зберігання для послуг на локації Contabo.&#x20;

{% hint style="danger" %}
Зверніть увагу, що розширення можливе в межах тієї ж архітектури (перехід з Name на Name або з SSD на SSD). Якщо ви переходите, наприклад, з NVMe на SSD, тоді потрібна повна заміна диска з видаленням даних.
{% endhint %}

<figure><img src="/files/t1AZbgesJ2WZyREQMUg0" alt=""><figcaption></figcaption></figure>

Підключіться до вашого віртуального сервера через SSH. Використовуйте команду для встановлення необхідного програмного забезпечення:

```
apt install cloud-utils -y
```

У нашому прикладі (і зазвичай на всіх VPS серверах Contabo) це sda3. Використовуйте команду для перевірки:

```
mount | grep ' / '
```

Це поверне інформацію про розділ, який використовується для основного дискового простору.

Використовуйте наступні команди для розширення розділу диска:

```
sudo growpart /dev/sda 3
```

```
sudo resize2fs /dev/sda3
```

{% hint style="info" %}
У обох випадках цифра «3» позначає використовуваний розділ диска. Замініть на відповідне значення, якщо це необхідно у вашому випадку.
{% endhint %}


---

# 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, and the optional `goal` query parameter:

```
GET https://spacecore.gitbook.io/wiki/ua/contabo/vps-resize.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
