|
|
在老机器上实现了LFS后,我在自己的新机器中却遇到了困难
错误如下
VFS: Unable to mount root fs on unknown-block(8,8)
grub设置
- # Begin /boot/grub/menu.lst
- # By default boot the first menu entry.
- default 0
- # Allow 30 seconds before booting the default.
- timeout 30
- # Use prettier colors.
- color green/black light-green/black
- # The first entry is for LFS.
- title LFS SVN-20051231
- root (hd0,7)
- kernel /boot/lfskernel-2.6.12.5 root=/dev/sda8
复制代码
fstab:
- # Begin /etc/fstab
- # file system mount-point type options dump fsck
- # order
- /dev/sda8 / ext2 defaults 1 1
- /dev/sda9 swap swap pri=1 0 0
- proc /proc proc defaults 0 0
- sysfs /sys sysfs defaults 0 0
- devpts /dev/pts devpts gid=4,mode=620 0 0
- shm /dev/shm tmpfs defaults 0 0
- # End /etc/fstab
复制代码
内核编译中已经把ext2,sata等编译进去了........并且试了应用了Slackware的.config来编译内核.结果还是一样的错误.
谁能给我一个建议? |
|