安装 13.04 时 Ubuntu 无法看到 Windows 7 分区

安装 13.04 时 Ubuntu 无法看到 Windows 7 分区

ubuntu@ubuntu:~$ sudo fdisk -lu

WARNING: GPT (GUID Partition Table) detected on '/dev/sda'! The util fdisk doesn't support GPT. Use GNU Parted.


Disk /dev/sda: 1000.2 GB, 1000204886016 bytes
255 heads, 63 sectors/track, 121601 cylinders, total 1953525168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0xd033d792

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048      206847      102400    7  HPFS/NTFS/exFAT
/dev/sda2          206848   986601471   493197312    7  HPFS/NTFS/exFAT
/dev/sda3       986601472  1953519615   483459072    7  HPFS/NTFS/exFAT

分区

/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 -- possibly by a program that doesn't understand GPT partition tables.  
Or perhaps you deleted the GPT table, and are now using an msdos partition table.  
Is this a GPT partition table?

因此,当我尝试安装 ubuntu 时,我得到了整整 TB 的未分配磁盘。但是,当我运行“尝试 ubuntu”时,我可以看到 ubuntu 上安装的 2 个分区,我在 /dev/sda3 上创建了 ntfs 分区,试图修复 GUID 表,但没有成功。

有什么方法可以解决这个问题,以便我可以在 /dev/sda3 上安装 ubuntu?

答案1

要解决您的问题,请按照下列步骤操作:

  1. 启动紧急磁盘并打开文本模式 shell。
  2. 输入“gdisk /dev/sda”(如有必要,请将“/dev/sda”更改为适合访问硬盘的任何内容)。程序可能会抱怨它发现了 MBR 和 GPT 数据,并会询问使用哪个。您告诉它使用哪个并不重要。
  3. 在“命令”提示符下,输入“x”进入专家菜单。
  4. 在“专家命令”提示符下,输入“z”来“zap”(销毁)GPT 数据。
  5. 输入“y”来确认销毁 GPT。
  6. 输入“n”来响应有关清空 MBR 的询问。警告:如果您在这里回答“y”,您将破坏您的 Windows 分区!

相关内容