我想调整 Linux VM 主分区的大小。
- 我通过ESXi界面添加了空间
- 在 GParted 上启动并调整分区大小
但是,系统确实识别了磁盘增加的变化,但无法识别分区增加的变化:
我查阅了一些教程但它们似乎并不适用。
以下是一些输出:
{root@tuc[antoine]}df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/tuc--vg-root 31G 28G 1.2G 97% / ==> 32GB is old size
none 4.0K 0 4.0K 0% /sys/fs/cgroup
udev 991M 4.0K 991M 1% /dev
tmpfs 201M 532K 200M 1% /run
none 5.0M 0 5.0M 0% /run/lock
none 1001M 0 1001M 0% /run/shm
none 100M 0 100M 0% /run/user
/dev/sda1 236M 215M 8.6M 97% /boot
使用 fdisk 时:
{root@tuc[antoine]}fdisk /dev/sda
Command (m for help): p
Disk /dev/sda: 68.7 GB, 68719476736 bytes ===> Here I have the updated size...
255 heads, 63 sectors/track, 8354 cylinders, total 134217728 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
Disk identifier: 0x0006fdd8
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 499711 248832 83 Linux
/dev/sda2 501758 134217727 66857985 5 Extended
/dev/sda5 501760 134217727 66857984 8e Linux LVM
以及 gparted 截图:
如何使 ubuntu 扩展到可用的完整尺寸?
答案1
通常步骤如下:
调整分区大小以匹配新磁盘大小。您似乎已经这样做了。
调整 LVM 卷组的大小,以使分区中的新空间可供卷管理器使用:
vgextend
使用要扩展的文件系统调整逻辑卷的大小:
lvresize
注意:不要误--size <new capacity>
认为--size +<additional capacity>
调整文件系统大小:
resize2fs
所需的选项都有详细记录。