我在 Mac OS X 上的 VMWare Fusion 应用程序中使用 Ubuntu 16.04。
在 VMWare Fusion 应用程序中,硬盘空间设置为 30 GB,当我运行fdisk -l
命令时,我可以看到 Ubuntu 识别了 30 GB。
sudo fdisk -l
Disk /dev/sda: 30 GiB, 32212254720 bytes, 62914560 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: 0x428e85f3
Device Boot Start End Sectors Size Id Type
/dev/sda1 * 2048 39845887 39843840 19G 83 Linux
/dev/sda2 39847934 41940991 2093058 1022M 5 Extended
/dev/sda3 41940992 62914559 20973568 10G 83 Linux
/dev/sda5 39847936 41940991 2093056 1022M 82 Linux swap / Solaris
Partition table entries are not in disk order.
以下是 gparted 应用程序的输出,
以下是磁盘使用情况分析器应用程序的输出,
我想了解为什么新增的 10 GB 不属于 DUA。新增的 10 GB 不计入系统使用量吗?
我按照以下帖子添加磁盘空间,
我尝试的唯一不同的事情是安装程序。
/etc/fstab文件内容如下:
cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda1 during installation
UUID=c68dd12e-7f25-4a1d-be68-a136a19ea87d / ext4 errors=remount-ro 0 1
# swap was on /dev/sda5 during installation
UUID=fba4ca03-2aa4-42f6-b5ff-da669ea3579b none swap sw 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0
/swapfile none swap sw 0 0
/dev/sda3 / ext4 defaults 0 0
答案1
- 看来您已将增加的空间添加为新分区 sda3。
- 在 /etc/fstab 中,您尝试将 sda3 安装为 /,但您之前已在 fstab 中将 sda1 安装到 /。
从您的问题来看,我不清楚您想如何使用新的磁盘空间。但您必须将 sda3 挂载到有效的挂载点(空目录)或扩展现有的 /(根)文件系统。在这种情况下,您必须:
- 在实时媒体上启动您的系统。
- 启动 gparted
- 删除 sda3
- 将交换分区向右移至可用空间
- 向右扩展 sda1