Displaying 1 result from an estimated 1 matches for "fs_vfstype".
2001 Dec 10
1
ext3 mounted as ext2
...e this:
/dev/hda1 / ext2 defaults 1
1
/dev/hda2 /mnt ext2 defaults 1 1
on system startup root (/) gets mounted as ext3fs but /mnt gets just
mounted as ext2fs. I want /mnt mounted as an ext3fs, too!
What makes me wonder is the asymmetry. both fs_vfstype fields are set to
ext2 but / gets mounted as ext3 and /mnt gets mounted as ext2.
What would work is setting the fs_vfstype field to ext3 BUT then non
ext3-aware kernels don't mount that entry anymore. (rc.S mounts the
fstab files via "/sbin/mount -avt nonfs")
My question: how do I...