我需要调整 VMWare Workstation 中 ubuntu 客户机的磁盘空间大小。在 vmware 工作站中使用扩展磁盘实用程序后,我需要执行一些 Linux 魔法来调整分区大小。我搜索并发现了很多关于调整大小的帖子。不幸的是,我对此并不十分了解。有人能帮我解决这个问题吗?
jclawson@ubuntu:~$ df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/mapper/ubuntu-root
7583436 5678136 1520072 79% /
udev 1030884 152 1030732 1% /dev
none 1030884 0 1030884 0% /dev/shm
none 1030884 72 1030812 1% /var/run
none 1030884 0 1030884 0% /var/lock
none 1030884 0 1030884 0% /lib/init/rw
/dev/sda5 233335 39274 181613 18% /boot
.host:/ 244035580 96519316 147516264 40% /mnt/hgfs
root@ubuntu:~# lvs
LV VG Attr LSize Origin Snap% Move Log Copy% Convert
root ubuntu -wi-ao 7.35G
swap_1 ubuntu -wi-ao 388.00M
root@ubuntu:~# fdisk -l
Disk /dev/sda: 8589 MB, 8589934592 bytes
255 heads, 63 sectors/track, 1044 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x0009bea5
Device Boot Start End Blocks Id System
/dev/sda1 * 1 1013 8136891 8e Linux LVM
/dev/sda2 1014 1044 249007+ 5 Extended
/dev/sda5 1014 1044 248976 83 Linux
我非常感谢你的帮助。
答案1
好的,经过一番努力,我终于弄清楚了该怎么做。同样,gparted 无法使用。首先,您应该在 VMWare Workstation 中扩展磁盘大小。启动 livecd 并打开 root 终端:
我们需要利用未使用的空闲空间创建一个新的 LVM 类型的主分区。
#fdisk /dev/sda
#Command (m for help): n
#Command (m for help): p
#Command (m for help): 3
#Command (m for help): w
重新启动虚拟机并再次进入 live cd
创建物理卷:
#pvcreate /dev/sda3
将新卷添加到组:
#vgextend ubuntu /dev/sda3
了解您想要扩展到多少可用空间
#vgdisplay
检查“Free PE/Size”等于什么,并在下一个命令中使用该值
扩展 lvm 并将文件系统扩展到新的空间
#e2fsck -f /dev/ubuntu/root
#lvextend -L +12.6G /dev/ubuntu/root
#resize2fs /dev/ubuntu/root
完毕!