Files
Personal/NEBULA/resize_of_image.md
2026-04-10 19:25:54 +00:00

25 lines
548 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
### После запуска ВМ( с уже изменнёным по размеру диску в небуле )
Идём на саму ВМ
В ней
```
swapoff -a
```
Удаляем все разделы кроме /
```
d #номер раздела
w
```
Потом, когда у нас остался только основной раздел
```
apt install cloud-guest-utils -y
growpart /dev/sda №
resize2fs /dev/sda №
```
И вернём SWAP
```
fallocate -l 1G /swapfile
chmod 600 /swapfile
mkswap /swapfile
swapon /swapfile
```