It sounds like that would be a useful course of action.
> Another oddity is that changing my / partition to ext2 in /etc/fstab and
> booting normally (i.e., without init=) doesn't make any difference. If these
> changes are ext3/jbd only, why is my ext3 volume mounted as ext2 still not
> mounting rw?
Changing fstab will not cause / to be mounted by ext2: the kernel makes the
decision for /. You may be able to use "rootfstype=" (I don't think I've
ever tried it).
The proper way to convert to ext2 is:
- boot with init=/bin/sh
- /sbin/tune2fs -O ^has_journal /dev/hda1
- /sbin/e2fsck -fy /dev/hda1
- reboot, edit /etc/fstab for the non-root filesystems.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/