如何扩展在 VMWare Player 中运行的 Ubuntu Server 的主分区

如何扩展在 VMWare Player 中运行的 Ubuntu Server 的主分区

我在家使用的虚拟机空间不足。它运行 Ubuntu 服务器,现有空间为 20G。我决定将其增加到 100G,以确保有足够的空间。

因此我按照这里的说明进行操作:http://www.rootusers.com/use-gparted-to-increase-disk-size-of-a-linux-native-partition/

一切都很顺利,直到最后一步。尝试将/dev/sda1/分区大小增加到 99G 在第 3 步失败:“检查文件系统/dev/sda1是否有错误并(如果可能)修复它们。”

看起来这一步尝试运行:e2fsck -f -y -v /dev/sda1

这将引发一个错误:

无法读取超级块或超级块未描述正确的 ext2 文件系统。

有问题的分区是 ext3 分区,但我不确定这是否重要。

主分区仍然正常,Ubuntu 仍可启动,所以我认为没问题。有什么想法可以让它变大吗?

编辑 :

fdisk -l从 gparted 实时磁盘启动时的输出。

Disk /dev/sda: 107.3 GB, 107374182400 bytes
255 heads, 63 sectors/track, 13054 cylinders
Units = cylinders of 16064 * 512 = 9225280 bytes

    Device Boot     Start       End      Blocks    Id  System
/dev/sda1    *          1      2481    19921920    83  Linux
/dev/sda2           12924     13054     1052275+    5 Extended
/dev/sda5           12925     13054     1044225    82 Linux swap / Solaris

编辑2:

fdisk -l在 ubuntu 服务器启动时

有趣的是,当我正常启动虚拟机后运行时,输出有所不同。

Disk /dev/sda: 107.4 GB, 107374182400 bytes
255 heads, 63 sectors/track, 13054 cylinders, total 209715200 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: 0x00044fd6

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048    39845887    19921920   83  Linux
/dev/sda2       207607995   209712509     1052257+   5  Extended
/dev/sda5       207624060   209712509     1044225   82  Linux swap / Solaris

编辑 3:输出mount | grep " / "

/dev/sda1 on / type ext4 (rw,errors=remount-ro)

答案1

感谢fdisk和的mount输出。

  1. 两个 fdisk 输出之间的差异仅在于使用的单位,因此数字也不同。
  2. /dev/sda1 分区尚未调整大小,仍为~20GB。

您必须先调整它的大小,最好在从 CD 启动时进行:

~# fdisk /dev/sda
Welcome to fdisk (util-linux 2.23.2).

Command (m for help): p

Device Boot         Start         End      Blocks   Id  System
/dev/sda1            2048    39845887    19921920   83  Linux
/dev/sda2       207607995   209712509     1052257+   5  Extended
/dev/sda5       207611904   209712509     1050303   82  Linux swap / Solaris

如果您没有看到这些“长”数字的输出,请使用 fdisk 命令u将单位更改为扇区,然后p再次打印。

现在删除/dev/sda1并重新创建更大的分区。删除分区只会更改分区表,不会删除任何数据,但我强烈建议您先对虚拟机进行快照。

Command (m for help): d
Partition number (1,2,5, default 5): 1
Partition 1 is deleted

现在创建一个新的:

Command (m for help): n
Partition type:
   p   primary (0 primary, 1 extended, 3 free)
   l   logical (numbered from 5)
Select (default p): p
Partition number (1,3,4, default 1): 1
First sector (2048-209715199, default 2048):    <==== This MUST be the same as in the original partition table!
Using default value 2048
Last sector, +sectors or +size{K,M,G} (2048-207607994, default 207607994):  <== Use the default, will be maximum it can do
Using default value 207607994
Partition 1 of type Linux and of size 99 GiB is set

验证其是否看起来合理:

Command (m for help): p

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1            2048   207607994   103802973+  83  Linux       <=== Note the new size
/dev/sda2       207607995   209712509     1052257+   5  Extended
/dev/sda5       207611904   209712509     1050303   82  Linux swap / Solaris

并写入磁盘:

Command (m for help): w
The partition table has been altered!

Calling ioctl() to re-read partition table.
Syncing disks.

现在检查文件系统的一致性并调整大小:

~# e2fsck -f /dev/sda1
e2fsck 1.42.9 (28-Dec-2013)
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
/dev/sda1: 11/1245184 files (0.0% non-contiguous), 122210/4980480 blocks

~# resize2fs /dev/sda1 
resize2fs 1.42.9 (28-Dec-2013)
Resizing the filesystem on /dev/sda1 to 25950743 (4k) blocks.
The filesystem on /dev/sda1 is now 25950743 blocks long.

这应该够了吧。

答案2

我之前使用的是旧版 GParted Live Disk。我下载了最新版本,它按照我链接的说明运行。

相关内容