分页: 1 / 1

[已解决]求助双系统安装ubuntu,分区时看不到windows分区

发表于 : 2013-05-26 10:38
frontsteel
华硕 N56 笔记本电脑, 预装Windows8,怀疑是UEFI的问题,用Linux好多年了,没遇到过。使用ubuntu12.04 64位版本,问题描述如下:

(1) 不喜欢windows8,先安装windows7+ubuntu,但是光盘启动后都无法安装下去,知道是UEFI的问题,采用用Legacy+MBR的方式安装

(2) 进入BIOS, 启用Launch CSM(UEFI Compatibility Support Module),关闭Secure Boot Control

(3) windows7 光盘启动后,删除了原有所有的分区,自己分了C盘和扩展分区(包括D,E,F盘),以及一个空闲分区准备给ubuntu用,总共不超过4个主分区。顺利安装windows7,但是安装ubuntu出了问题

(4) 在光盘安装ubuntu中,分区配置选择手动,但是无法看到windows的NTFS分区,只允许对整个硬盘进行分区操作,不敢继续进行;

(5) 换用Debian 7.0 64位系统,问题依旧,就是无法看到windows 的NTFS分区,Windows7系统使用正常。

请有经验的老师指点一下,因为对UEFI不了解,网上好像也没有一个针对性的解决。

Re: 求助双系统安装ubuntu,分区时看不到windows分区

发表于 : 2013-05-26 10:47
frontsteel
补充问一下,是不是需要在Windows7中用diskpart 命令将 GPT 转成MBR分区?

因为安装Windows7时,我将原有的分区全部删除再自己分区的,安装成功后,就没有注意这个问题了。

请各位老师帮助。

Re: 求助双系统安装ubuntu,分区时看不到windows分区

发表于 : 2013-05-26 12:49
onshoestring

Re: 求助双系统安装ubuntu,分区时看不到windows分区

发表于 : 2013-05-26 15:08
frontsteel
谢谢onshoestring,也谢谢帖子http://forum.ubuntu.org.cn/viewtopic.php?f=77&t=190435 解决方案的原作者billbear。

问题的原因是:虽然安装windows7使用了MBR分区,但是仍然有GPT 分区表信息存在,sudo parted /dev/sda print 中会显示:
Warning: /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?
Yes/No? Yes

解决方法是,用live CD引导进入Ubuntu,利用如下的命令清除 GPT signature
sudo dd if=/dev/zero of=/dev/sda bs=1 count=8 seek=512

问题解决了,分区配置时可以看到NTFS分区了。