Converting ext2 to ext3 filesystem
For those of you who would like to move to the ext3 journaled fs, the procedure is fairly simple. First the support needs to be built into the kernel. Although there are patches that can add ext3 support to other kernels, As of kernel 2.4.16, the support is built in. Recompile your kernel (2.4.16 and up) with "EXT3 journaling file system support(ENPERIMENTAL)" in "File Systems". Once compiled and installed, reboot.
Once rebooted, assuming all went well, log in as root. The command to add journaling to a specific partition, do:
tune2fs -j /dev/hdxy
where x = disk and y = partition. If your not sure what that is, just type the command 'mount' to see what is mounted.
Once you've been successful with this step, edit /etc/fstab and change then entry for the partition just changed from ext2 -> ext3.
Simple enough. Have fun. -mk
------------------
If it ain't broke,
Fix it till it is.