|
|
今天安装gentoo,辛辛苦苦的走到了设置grub这一步,但是在将grub装进mbr的时候却出现了如下的问题
grub> root (hd0,0)
filesystem type unknown,partition type 0*7
grub> setup(hd0)
error17 cannot mount selected partition
小弟是在ubuntu的基础上安装gentoo的,原系统已经有windowsxp在hda1上,个人推测可能是在/etc/fstab的设置过程中出现了问题,因为不太确定自己是否在fstab的适当位置上添加上了说明,我是在fstab的开头加入说明的,现将在fstab上在前面修改的地方摘图如下,望各位兄弟指教(hda9是gentoo,hda10是swap)
# /etc/fstab: static file system information.
# $Header: /home/cvsroot/gentoo-src/rc-scripts/etc/fstab,v 1.14 2003/10/13 20:03:38 azarah$#
# noatime turns off atimes for increased performance (atimes normally aren't
# needed; notail increases performance of ReiserFS (at the expense of storage
# efficiency). It's safe to drop the noatime options if you want and to
# switch between notail and tail freely.
# <fs> <mountpoint> <type> <opts> <dump/pass>
# NOTE: If your BOOT partition is ReiserFS, add the notail option to opts.
/dev/hda9 / reiserfs noatime 0 0
/dev/hda10 none swap sw 0 0
/dev/cdroms/cdrom0 /mnt/cdrom iso9660 noauto,ro 0 0
none /proc proc defaults 0 0
none /dev/shm tmpfs defaults
0 0
#/dev/fd0 /mnt/floppy auto noauto 0 0
# NOTE: The next line is critical for boot!
none /proc proc defaults 0 0 |
|