Ubuntu 未检测到以前的操作系统分区

Ubuntu 未检测到以前的操作系统分区

我有一块 2TB 的硬盘,其中 200GB 空间安装了 Windows 8,另外留了 800GB 空间给 Windows 8,格式化为 NTFS。

我的想法是在剩下的 1 TB 中安装 Ubuntu 13.04。

问题是 Ubuntu 安装程序向我显示了 2 TB 的可用空间 - 它没有检测到硬盘已经分区。

我应该怎么做才能实现我的目标并拥有 Ubuntu 13.04 和 Windows 8?

编辑:

我已按照以下建议操作,并以“试用 Ubuntu”模式打开 gparted。它给出了以下带有“是/否”选项的问题:

/dev/sda contains GPT signatures indicating that it has a GPT table.
However, it does not have a valid fake msdos partition table, as it
should. Perhaps it was corrupted - possible by a program that doesn't
understand GPT partition tables. Or perhaps, you deleted the GPT
table, and are now using un msdos partition table. Is this a GPT
partion table?

答案1

Ubuntu 安装程序和 GParted 都使用 parted 项目中的 libparted 库进行分区。

为了让 Ubuntu 安装程序和 GParted 正确看到分区表,必须修复分区表。

这意味着您需要决定使用 GPT 还是 MSDOS 分区表。

要查看 MSDOS 分区表条目,请使用:

sudo fdisk /dev/sda

其中 /dev/sda 是您的 2 TB 磁盘的设备名称。

要查看 GUID 分区表条目,请使用:

sudo gdisk -l /dev/sda

其中 /dev/sda 是您的 2 TB 磁盘的设备名称。

相关内容