LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1535|回复: 3

(已解决)64位ubuntu10.10系统在安装fedora14(64位)后无法引导!!求助高手!谢谢!故障现象为:gru

[复制链接]
发表于 2011-1-20 11:53:33 | 显示全部楼层 |阅读模式
64位ubuntu10.10系统在安装fedora14(64位)后无法引导!!求助高手!谢谢!故障现象为:grub启动菜单上没有ubuntu的启动选项i
1t硬盘,最先划出100g安装ubuntu10.10系统,盘符应该是 sda1,下面是df -h的输出内容:
文件系统 容量 已用 可用 已用%% 挂载点
/dev/mapper/VolGroup-lv_root
50G 7.6G 40G 17% /
tmpfs 3.9G 284K 3.9G 1% /dev/shm
/dev/sda1 92G 16G 72G 18% /mnt
/dev/sda3 485M 49M 411M 11% /boot
/dev/mapper/VolGroup-lv_home
759G 11G 710G 2% /home
/dev/sdb1 4.0G 3.8G 134M 97% /media/C65CFCEF5CFCDB5F
我现在把sda1挂载到fedora14的mnt下。
我的解决思路是修该fedora14的grub.conf,内容如下,但,没有成功:
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE: You have a /boot partition. This means that
# all kernel and initrd paths are relative to /boot/, eg.
# root (hd0,2)
# kernel /vmlinuz-version ro root=/dev/mapper/VolGroup-lv_root
# initrd /initrd-[generic-]version.img
#boot=/dev/sda
default=0
timeout=5
splashimage=(hd0,2)/grub/splash.xpm.gz
hiddenmenu
title Fedora (2.6.35.10-74.fc14.x86_64)
root (hd0,2)
kernel /vmlinuz-2.6.35.10-74.fc14.x86_64 ro root=/dev/mapper/VolGroup-lv_root rd_LVM_LV=VolGroup/lv_root rd_LVM_LV=VolGroup/lv_swap rd_NO_LUKS rd_NO_MD rd_NO_DM LANG=zh_CN.UTF-8 KEYTABLE=us rhgb quiet
initrd /initramfs-2.6.35.10-74.fc14.x86_64.img
title Fedora (2.6.35.6-45.fc14.x86_64)
root (hd0,2)
kernel /vmlinuz-2.6.35.6-45.fc14.x86_64 ro root=/dev/mapper/VolGroup-lv_root rd_LVM_LV=VolGroup/lv_root rd_LVM_LV=VolGroup/lv_swap rd_NO_LUKS rd_NO_MD rd_NO_DM LANG=zh_CN.UTF-8 KEYTABLE=us rhgb quiet
initrd /initramfs-2.6.35.6-45.fc14.x86_64.img
title ubuntu
find --set-root /mnt/boot/grub/core.img
kernel /mnt/boot/grub/core.img
boot
错误提示为:找不到文件!
请高手帮我看一下 ,问题出在哪里?谢谢!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
发表于 2011-1-20 13:21:47 | 显示全部楼层
看样子你是把 /dev/sda1 挂到了 /mnt 上。
有没有 /mnt/boot/grub/grub.cfg 这个文件?不妨贴出来。
回复 支持 反对

使用道具 举报

 楼主| 发表于 2011-1-20 14:07:11 | 显示全部楼层
Post by yuihji;2126194
看样子你是把 /dev/sda1 挂到了 /mnt 上。
有没有 /mnt/boot/grub/grub.cfg 这个文件?不妨贴出来。


set root='(hd0,msdos1)'
        search --no-floppy --fs-uuid --set bf20e9fe-8ad8-4aa1-a260-eb6533d358de
        linux        /boot/vmlinuz-2.6.35-22-generic root=UUID=bf20e9fe-8ad8-4aa1-a260-eb6533d358de ro   quiet splash
        initrd        /boot/initrd.img-2.6.35-22-generic
}
menuentry 'Ubuntu, with Linux 2.6.35-22-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
        recordfail
        insmod part_msdos
        insmod ext2
        set root='(hd0,msdos1)'
        search --no-floppy --fs-uuid --set bf20e9fe-8ad8-4aa1-a260-eb6533d358de
        echo        'Loading Linux 2.6.35-22-generic ...'
        linux        /boot/vmlinuz-2.6.35-22-generic root=UUID=bf20e9fe-8ad8-4aa1-a260-eb6533d358de ro single
        echo        'Loading initial ramdisk ...'
        initrd        /boot/initrd.img-2.6.35-22-generic
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
        insmod part_msdos
        insmod ext2
        set root='(hd0,msdos1)'
        search --no-floppy --fs-uuid --set bf20e9fe-8ad8-4aa1-a260-eb6533d358de
        linux16        /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
        insmod part_msdos
        insmod ext2
        set root='(hd0,msdos1)'
        search --no-floppy --fs-uuid --set bf20e9fe-8ad8-4aa1-a260-eb6533d358de
        linux16        /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
if [ "x${timeout}" != "x-1" ]; then
  if keystatus; then
    if keystatus --shift; then
      set timeout=-1
    else
      set timeout=0
    fi
  else
    if sleep --interruptible 3 ; then
      set timeout=0
    fi
  fi
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
回复 支持 反对

使用道具 举报

 楼主| 发表于 2011-1-20 15:21:44 | 显示全部楼层
解决方法如下:
修改fedora14的grub.conf文件,添加如下内容:
title ubuntu10.10
root (hd0,0)
kernel /boot/vmlinuz-2.6.35-24-generic root=UUID=bf20e9fe-8ad8-4aa1-a260-eb6533d358de ro quiet splash
initrd /boot/initrd.img-2.6.35-24-generic
这些内容是参照ubuntu10.10系统的/boot/grub/grub.cfg的内容而添加上去的!!!!!!!!!
最高兴的是我自己把它解决了!
但,还是要感谢回复我的朋友们!再一次感谢你们!!!!!!!!!!!!!


        举报此文章
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表