How to convert back Linux ext3 file system to ext2 file system
Q. How can I convert back Linux ext3 file system to ext2 under Linux?
A. First use umount command to detach the file system mentioned from the file system hierarchy.
For example, if your partition name is /dev/hda5, type the command:
# umount /dev/hda5
Now change the file system type to ext2 by typing the following command
# tune2fs -O ^has_journal /dev/hda5
Verify that there are no error:
# e2fsck -y /dev/hda5
Mount the file system to original mount point (for example /home or /mnt):
# mount -t ext2 /dev/hda5 /home
Go to mount point and remove .journal file
# rm -f .journal
Please note that you need to replace /dev/hda5 with your actual partition name.
See official Redhat guide for more information.
E-mail this to a friend
Printable version
Related Other Helpful FAQs:
- How do I find out more information about block devices?
- Red Hat Enterprise Linux how do I add a new hard disk for backup?
- Ubuntu Linux format USB pen drive
- Linux format external USB hard disk Partition
- Howto: Linux convert an image between different formats from command prompt
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!



Recent Comments
Today ~ 2 Comments
Yesterday ~ 10 Comments
Yesterday ~ 12 Comments
09/03/2008 05:29 pm (2 days ago) ~ 6 Comments
09/03/2008 01:14 pm (2 days ago) ~ 1 Comment