MyFirstBrain/Technik/Linux-Volume-Manager.md

21 lines
443 B
Markdown
Raw Normal View History

2024-10-22 09:56:26 +02:00
# LVM
2024-10-22 19:12:56 +02:00
Add 10GB to "root" volume: (Bei mir das 2.te)
2024-10-22 09:56:26 +02:00
```bash
lvresize -L +10G /dev/VolGroup00/root
2024-10-22 19:10:56 +02:00
lvresize -L +40G pve/root
2024-10-22 09:56:26 +02:00
```
danach noch
Resize the filesystem that resides on that volume_:
```bash
resize2fs /dev/VolGroup00/root
```
2024-10-22 18:13:11 +02:00
Note: resize2fs may take a while to expand the file system on a large volume, so you may want to open a second terminal and monitor the progress with the following command:
2024-10-22 09:56:26 +02:00
```bash
watch df -h
```