我使用 Win10 上的 VMWare 作为主机系统,Ubuntu 18.04 作为客户机。我有 20 GB 的 Ubuntu。当它最近抱怨磁盘空间不足时,我试图将其扩展到 40GB。我执行了以下步骤来调整大小:
- 关闭虚拟机。右键单击虚拟机并选择“编辑设置”。选择要扩展的硬盘。在右侧,根据需要将配置大小调大(我的情况是 40GB)。单击“确定”。 VM 设置
- 启动虚拟机。打开终端。以 root 身份登录。使用 fdisk 添加一个 20GB 的新分区 /dev/sda2。在命令提示符下,当我输入 fdisk -l 时,它显示,
root@ubuntu:/# fdisk -lL Disk /dev/loop0: 9.1 MiB, 9510912 bytes, 18576 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 /dev/loop1: 11.6 MiB, 12161024 bytes, 23752 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 /dev/loop2: 55.3 MiB, 58007552 bytes, 113296 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 /dev/loop3: 97.7 MiB, 102445056 bytes, 200088 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 /dev/loop4: 11.5 MiB, 12042240 bytes, 23520 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 /dev/loop5: 97.1 MiB, 101777408 bytes, 198784 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 /dev/sda: 40 GiB, 42949672960 bytes, 83886080 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 Disklabel type: dos Disk identifier: 0x514faf39 Device Boot Start End Sectors Size Id Type /dev/sda1 * 2048 41940991 41938944 20G 83 Linux /dev/sda2 41940992 83886079 41945088 20G 83 Linux
但我不知道如何继续让 Ubuntu 使用此分区。请帮忙
答案1
这应该很容易修复。关键是您需要启动到实时环境并在根分区未安装时对其进行操作。您不需要 sda2。请尝试以下操作:
- 备份您不能丢失的所有数据
- 假设您有一个 Ubuntu iso 文件,将其放在 VM CD 驱动器中,然后从 iso 启动 VM,就像您正在安装一样。
- 选择试用 Ubuntu。
- 从实时环境运行 GParted。
- 删除 sda2。现在您应该在 sda1 右侧有未分配的空间
- 扩展 sda1 以填充所有未分配的空间。sda1 现在应该是 40GB。
如果您以前没有使用过 GParted,那么 YouTube 上有很多视频可以展示如何使用 GParted。
祝你好运