请教高手深度系统与win系统双系统如何修复引导??
Tofloor
poster avatar
st8801365
deepin
2019-02-23 05:15
Author
请教高手深度系统与win系统双系统如何修复引导??
装双系统后,gho恢复win系统后,深度系统如何修复引导?
用深度Live系统修复引导显示失败,请教高手如何操作?
Reply Favorite View the author
All Replies
avatar
gypublic2007
deepin
2019-02-23 05:38
#1
如果是uefi+gpt引导就不存在你这个问题,因为引导参数直接写在了esp分区里面

mbr分区表的情况下,你修复的话,就得装grub2,可以用bootice工具建立grub2的启动菜单
然后进live cd,把linux系统下的/boot里面的grub.cfg文件复制到windows分区的对应路径下就可以启动了
Reply View the author
avatar
st8801365
deepin
2019-02-23 07:30
#2
谢谢高手答复,不知道可不可以解决问题,您说的是不是在PE系统上完成修复的呢?可以说再具体些吗?
Reply View the author
avatar
Amadeus
deepin
2019-02-23 19:53
#3
2019年了还用ghost装windows系统······还有pe是windows预安装环境,不能用于deepin。
你要双系统建议还是别用ghost了,去msdn.itellyou.cn下载windows镜像,制作启动盘,格盘安装windows,然后再制作deepin的安装盘,安装deepin。
Reply View the author
avatar
amkeith
deepin
2019-02-24 04:26
#4
前不久更新win10也出现无法引导,这个时候可以修复。
出现grub rescue的时候,输入ls。如下:

grub rescue> ls

列出磁盘分区

(hd0) (hd0,msdos9) (hd0,msdos8) (hd0,msdos7) (hd0,msdos6) (hd0,msdos5) (hd0,msdos2) (hd0,msdos1)(此处为举例说明)

然后需要找出linux分区,输入以下的命令,需要在ls命令列出的分区里一个一个试,例如:
grub rescue> ls (hd0,msdos1)/

如果是正确的分区,会有提示的。然后输入以下:

grub rescue>root=(hd0,msdos8)
grub rescue>prefix=/boot/grub          //grub路径设置
grub rescue>set root=(hd0,msdos8)
grub rescue>set prefix=(hd0,msdos8)/boot/grub
grub rescue>insmod normal              //启动normal启动
grub rescue>normal

然后就可以了。

学习于:https://blog.csdn.net/gatieme/article/details/59127020
Reply View the author