This commit is contained in:
2024-08-10 00:40:26 -05:00
parent f0ef368d59
commit f6582b2a2a

View File

@@ -1,16 +1,16 @@
# alpine_resize_disk
after the virtual disk has already been expanded (e.g. in proxmox)
### after the virtual disk has already been expanded (e.g. in proxmox)
```bash
apk add --no-cache cfdisk e2fsprogs-extra
```
# choose partition then "Resize" > "Write" (to finalize)
### choose partition then "Resize" > "Write" (to finalize)
```bash
cfdisk
```
# replace * with partition you are resizing
### replace * with partition you are resizing
```bash
resize2fs /dev/sda3
```