在虚拟机中扩展ubuntu分区

在虚拟机中扩展ubuntu分区

我将 Ubuntu 作为托管在 esxi 服务器中的虚拟机来宾。 Ubuntu 磁盘存储为 5 GB,我想将磁盘扩展到 30 GB。我通过 esxi 客户端扩展了它,现在我在 Ubuntu 终端中看到了这个

root@linux:/temp# df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/sda1             5.6G  5.3G   31M 100% /
none                  497M  184K  497M   1% /dev
none                  502M     0  502M   0% /dev/shm
none                  502M  108K  502M   1% /var/run
none                  502M  4.0K  502M   1% /var/lock
none                  502M     0  502M   0% /lib/init/rw

root@linux:/temp# fdisk -l
Disk /dev/sda: 32.2 GB, 32212254720 bytes
255 heads, 63 sectors/track, 3916 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x0001c70e

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1         743     5964800   83  Linux
Partition 1 does not end on cylinder boundary.
/dev/sda2             743        3917    25490433    5  Extended
/dev/sda3               1           1         992+  8e  Linux LVM
Partition 3 does not end on cylinder boundary.
/dev/sda5            2025        3917    15192064   83  Linux

Partition table entries are not in disk order
root@linux:/temp#

如何将 sda1 扩展到完整的 32 GB(如fdisk -l输出所示)?

我尝试从 gparted 启动并可以看到以下内容

在此输入图像描述

我的 sda1 无法调整大小,有什么帮助吗?

答案1

这类似于您拥有较大磁盘但没有扩展分区来使用可用空间的情况。/dev/sda1卸载时,您将需要使用某种磁盘实用程序。

我建议使用 .iso 版本格帕特在主机上,您可以将其作为 DVD 驱动器安装在 Ubuntu 客户机上。将 VM 引导到 Gparted 磁盘,Gparted 在实时模式下运行,并扩展/dev/sda1以填充可用空间。

Gparted 是一个相当易于使用的程序,具有直观的界面,但有详细的使用说明这里

相关内容