或许大家都有同一个硬盘安装了ubuntu系统之后,原来的win7系统引导被覆盖的经历。我们闲话少讲,下面直接看操作:
(1)首先使用 vi 打开 /boot/grub/grub.cfg,增加
<span style="font-size:14px;">### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows 7 (loader) (on /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-chain-803E66523E6640F0' {
insmod part_msdos
insmod ntfs
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 803E66523E6640F0
else
search --no-floppy --fs-uuid --set=root 803E66523E6640F0
fi
parttool ${root} hidden-
chainloader +1
}
set timeout_style=menu
if [ "${timeout}" = 0 ]; then
set timeout=10
fi
### END /etc/grub.d/30_os-prober ###</span>
(2) 803E66523E6640F0 这个有三处需要替换成本机电脑的硬盘挂载号,刚安装出来的ubuntu14.04会自动挂载windows的硬盘,只需要使用鼠标点击对应windows的系统安装盘(如C盘),然后使用命令 df 一下,就可以看到挂载在 /media/****** 的这串数字了,然后替换这三处串号;
(3)同理,/dev/sda1 和 'hd0,msdos1' 也要进行相应的修改;
(4)最后还有一点,ubuntu14.04和尤麒麟15.04安装好之后,默认开机是不显示引导菜单的,我们做一下修改
set timeout_style=hidden
这个位置的修改都要注释掉
# set timeout_style=hidden
这样开机就可以出引导菜单了;
祝你引导成功。
Ubuntu 14.04引导修复:http://www.linuxdiyf.com/linux/11942.html
BIOS引导win7,Ubuntu Kylin14.04双系统:http://www.linuxdiyf.com/linux/11640.html
grub2引导ubuntu 14.04 ISO、WindPE ISO、win7安装盘的正确方法:http://www.linuxdiyf.com/linux/9635.html
关于Win7&Ubuntu&XP三系统引导恢复:http://www.linuxdiyf.com/linux/11020.html
妙用修复引导工具恢复ubuntu和windows双系统启动:http://www.linuxdiyf.com/linux/12042.html