|
[code:1]fudaming root # mkfs.ext3 -L /boot /dev/hda2
mke2fs 1.35 (28-Feb-2004)
Filesystem label=/boot
OS type: Linux
Block size=1024 (log=0)
Fragment size=1024 (log=0)
130560 inodes, 522112 blocks
26105 blocks (5.00%) reserved for the super user
First data block=1
64 block groups
8192 blocks per group, 8192 fragments per group
2040 inodes per group
Superblock backups stored on blocks:
8193, 24577, 40961, 57345, 73729, 204801, 221185, 401409
Writing inode tables: done
Creating journal (8192 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 25 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
fudaming root # mount /dev/hda2
mount: wrong fs type, bad option, bad superblock on /dev/hda2,
or too many mounted file systems
fudaming root # mount /dev/hda2 /boot
fudaming root #[/code:1]
分区除了根分区,还有几个windows的vfat分区以外,其他统统不能自动挂载,包括 /boot。很是奇怪,于是我冒险mkfs了一下,结果是一样的。可是我在FC3里面是正常的。
但是格式化之前fsck的结果是这样的
[code:1]fudaming root # fsck.ext3 /dev/hda2
e2fsck 1.35 (28-Feb-2004)
fsck.ext3: Filesystem has unsupported feature(s) (/boot)
e2fsck: Get a newer version of e2fsck![/code:1]
格式化之后就正常了。
[code:1]fudaming root # fsck.ext3 /dev/hda2
e2fsck 1.35 (28-Feb-2004)
/dev/hda2 is mounted.
WARNING!!! Running e2fsck on a mounted filesystem may cause
SEVERE filesystem damage.
Do you really want to continue (y/n)? no
check aborted.
fudaming root # umount /dev/hda2
fudaming root # fsck.ext3 /dev/hda2
e2fsck 1.35 (28-Feb-2004)
/boot: clean, 51/130560 files, 51162/522112 blocks
fudaming root #[/code:1]
有人能帮帮我吗,指个方向也行。 |
|