Erucolindo
August 13th, 2005, 09:23 AM
I had a hard time finding out about this subject so i decided to share what i have learned. This worked perfect for me but you're probibly safer of making a backup and create a new partition.
First, make sure the partition you are about to convert isn't mounted, that can cause data-loss!
Now, open up a terminal and type:
sudo tune2fs -O ^has_journal /dev/hdxx
This turns off the journalizing flag on the partition.
Next thing to do is run e2fsck:
sudo e2fsck /dev/hdxx
Since the filesystem no longer has a journal the check assumes the filesystem is ext2 and cleans it up and, voila, you got yourself a ext2 partition :)
Note: the e2fsck took a loooong time for me.
PS. I can't take credit for this, it was someting i found on the web (can't remember were though.
First, make sure the partition you are about to convert isn't mounted, that can cause data-loss!
Now, open up a terminal and type:
sudo tune2fs -O ^has_journal /dev/hdxx
This turns off the journalizing flag on the partition.
Next thing to do is run e2fsck:
sudo e2fsck /dev/hdxx
Since the filesystem no longer has a journal the check assumes the filesystem is ext2 and cleans it up and, voila, you got yourself a ext2 partition :)
Note: the e2fsck took a loooong time for me.
PS. I can't take credit for this, it was someting i found on the web (can't remember were though.