我有以下信息df
:
francis@playground /var/log sudo df -h
Filesystem Size Used Avail Use% Mounted on
udev 2.9G 0 2.9G 0% /dev
tmpfs 595M 46M 549M 8% /run
/dev/mapper/ubuntu--vg-ubuntu--lv 39G 39G 0 100% /
tmpfs 3.0G 0 3.0G 0% /dev/shm
tmpfs 5.0M 0 5.0M 0% /run/lock
我的卷组正在使用/dev/sda3
。
问题是,我将此虚拟机的磁盘扩大到 81G(原先是 40GH)。然后,我使用 fdisk 删除/dev/sda3
并创建一个具有新空间的新分区。它起作用了:
Device Start End Sectors Size Type
/dev/sda1 2048 4095 2048 1M BIOS boot
/dev/sda2 4096 2101247 2097152 1G Linux filesystem
/dev/sda3 2101248 171966430 169865183 81G Linux filesystem
Disk /dev/mapper/ubuntu--vg-ubuntu--lv: 38.97 GiB, 41821405184 bytes, 81682432 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
但是,我在卷组中看不到新的空间:
--- Volume group ---
VG Name ubuntu-vg
System ID
Format lvm2
Metadata Areas 1
Metadata Sequence No 6
VG Access read/write
VG Status resizable
MAX LV 0
Cur LV 1
Open LV 1
Max PV 0
Cur PV 1
Act PV 1
VG Size <38.95 GiB
PE Size 4.00 MiB
Total PE 9971
Alloc PE / Size 9971 / <38.95 GiB
Free PE / Size 0 / 0
我怎样才能让它看到新的、放大的/dev/sda3
?
答案1
我想我必须按照这里的指示来扩展它:https://unix.stackexchange.com/questions/138090/cant-resize-a-partition-using-resize2fs
我需要先使用 调整物理卷的大小pvresize
。之后,卷组/逻辑卷的额外空间才可见。