Hi,
ich habe einen meiner Server letztlich ge-upgraded.
Nun ist mir aufgefallen, dass ich noch die Partition vergrößern müsste.
Also habe ich folgendes getan:
Code
root@stein:/home/konstantin# df -h
Filesystem Size Used Avail Use% Mounted on
tmpfs 392M 1,2M 390M 1% /run
/dev/mapper/ubuntu--vg-ubuntu--lv 19G 14G 4,3G 76% /
tmpfs 2,0G 28K 2,0G 1% /dev/shm
tmpfs 5,0M 0 5,0M 0% /run/lock
/dev/sda2 2,0G 253M 1,6G 14% /boot
tmpfs 392M 4,0K 392M 1% /run/user/1000
root@stein:/home/konstantin# lvextend -L +20g /dev/mapper/ubuntu--vg-ubuntu--lv
Insufficient free space: 5120 extents needed, but only 4864 available
root@stein:/home/konstantin# lvextend -L +4864 /dev/mapper/ubuntu--vg-ubuntu--lv
Size of logical volume ubuntu-vg/ubuntu-lv changed from <19,00 GiB (4863 extents) to <23,75 GiB (6079 extents).
Logical volume ubuntu-vg/ubuntu-lv successfully resized.
root@stein:/home/konstantin# df -h
Filesystem Size Used Avail Use% Mounted on
tmpfs 392M 1,2M 390M 1% /run
/dev/mapper/ubuntu--vg-ubuntu--lv 19G 14G 4,3G 76% /
tmpfs 2,0G 28K 2,0G 1% /dev/shm
tmpfs 5,0M 0 5,0M 0% /run/lock
/dev/sda2 2,0G 253M 1,6G 14% /boot
tmpfs 392M 4,0K 392M 1% /run/user/1000
root@stein:/home/konstantin# resize2fs /dev/mapper/ubuntu--vg-ubuntu--lv
resize2fs 1.46.5 (30-Dec-2021)
Filesystem at /dev/mapper/ubuntu--vg-ubuntu--lv is mounted on /; on-line resizing required
old_desc_blocks = 3, new_desc_blocks = 3
The filesystem on /dev/mapper/ubuntu--vg-ubuntu--lv is now 6224896 (4k) blocks long.
root@stein:/home/konstantin# df -h
Filesystem Size Used Avail Use% Mounted on
tmpfs 392M 1,2M 390M 1% /run
/dev/mapper/ubuntu--vg-ubuntu--lv 24G 14G 8,8G 61% /
tmpfs 2,0G 28K 2,0G 1% /dev/shm
tmpfs 5,0M 0 5,0M 0% /run/lock
/dev/sda2 2,0G 253M 1,6G 14% /boot
tmpfs 392M 4,0K 392M 1% /run/user/1000
Display More
Wie man am ende sehen kann ist /dev/mapper/ubuntu--vg-ubuntu--lv nur gerademal auf 24G. Ich habe aber einen VPS500 mit 80GB Speicherplatz.
Wie kann ich das ganze beheben und nahe 80 GB auf der Partition bekommen?