在 Windows 7 笔记本电脑上安装 Ubuntu 12.04.3 后,运行 Ubuntu 磁盘实用程序显示以下分区信息;
/dev/sda1 NTFS, Bootable, Filesystem, Labled: System Reserved, 105MB, Not Mounted
/dev/sda2 NTFS, no flag, Filesystem, no label, 84GB, Not Mounted
/dev/sda3 Usage: Container for logical partitions. Partition Type: Extended (0x05). no flags. no label. Capacity: 416GB
/dev/sda5 Usage: Filesystem. Partition Type: Linux (0x83). no partition label. no flags. Capacity: 999MB. Type: Ext4(ver 1.0). Available: -. Label: -. Mount Point: Not Mounted
/dev/sda8 Usage: Filesystem. Partition Type: Linux (0x83). no partition label. no flags. Capacity: 30GB. Type: Ext4(ver 1.0). Available: -. Label: -. Mount Point: Mounted at /
/dev/sda6 Usage: Filesystem. Partition Type: Linux (0x83). no partition label. no flags. Capacity: 377GB. Type: Ext4(ver 1.0). Available: -. Label: -. Mount Point: Not Mounted
/dev/sda7 Usage: Swap Space. Partition Type: Linux (0x82). no partition label. no flags. Capacity: 8.4GB.
sda2 包含 Windows 7,但没有挂载点
sda6 应该是 Home 分区,sda5 应该是 Boot 分区,但是挂载点似乎已经丢失,现在除了 Swap 之外的所有内容都进入了根分区 sda8(Home 文件夹似乎也在 sda8 内)。
我该如何将 sda6 用作 Home 分区,将 sda5 用作 Boot
按要求输出 /etc/fstab
pb@LC1:~$ 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>
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sdb8 during installation
UUID=f80d2f67-db1e-42a7-a321-437c94354623 / ext4 errors=remount-ro 0 1
# swap was on /dev/sdb7 during installation
UUID=06fcb820-41d6-4767-92a7-99baf6849673 none swap sw 0 0
pb@LC1:~$
答案1
您的/etc/fstab
文件系统不包含除 之外的任何文件系统/
。因此,在启动过程中不会自动安装任何其他文件。您可以
重新配置系统以使用附加卷(需要(重新)安装、移动内容、编辑 fstab 等
update-grub
),或者格式化 Linux 分区并重新安装 Ubuntu,并告诉安装程序您的自定义分区设置(询问时选择选项“其他”)。
如果您在 1. 过程中中断了安装,您仍然可以继续 2.。