- 论坛徽章:
- 0
|
问题一:
启动的最后几行提示:
Mount:mounting /dev/hda1 on / failed
Mount:mounting none on /proc failed
Mount:mounting /dev/hda1 on / failed
然后按Enter可以进入shell
我执行df命令,显示如下:
#df
Filesystem 1k-blocks used available use% mounted on
/dev/root.old 7931 3722 3800 49% /
感觉好像/etc/fstab文件无法正常执行,以下是我的fstab文件内容:
#/dev/fd0 / ext2 defaults 0 0
/dev/hda1 / ext2 defaults 1 1
none /proc proc defaults 0 0
/dev/cdrom /mnt/cdrom udf,iso9660 noauto,owner,kudzu,ro 0 0
问题二:
linux系统好象是运行于内存中,不是CF卡上,因为无法保存任何对根文件系统的修改或写操作.
以下是我的menu.lst文件:
# 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,0)
# kernel /vmlinuz-version ro root=/dev/sda3
# initrd /initrd-version.img
#boot=/dev/sda
default=0
timeout=5
#splashimage=(hd0,0)/grub/splash.xpm.gz
#hiddenmenu
#title Fedora Core (2.6.11-1.1369_FC4)
# root (hd0,0)
# kernel /vmlinuz-2.6.11-1.1369_FC4 ro root=LABEL=/ rhgb quiet
# initrd /initrd-2.6.11-1.1369_FC4.img
title DIY Linux ^*^
root (hd0,0)
kernel /boot/grub/vmlinuz-2.6.20.14 ro root=/dev/hda1
initrd /boot/grub/initrd.img |
|