Your Webhosting Questions
Answered by the Webhosting Experts
Tags
...
...

How Do I Revert from an ext3 to an ext2 File System?

Because ext3 is relatively new, some disk utilities do not yet support it. For example, you may need to shrink a partition with resize2fs, which does not yet support ext3. In this situation, it may be necessary to temporarily revert a file system to ext2.

Reverting from ext3 to ext2

To revert to ext2, just follow these 5 steps:

  1. To revert a partition, you must first unmount the partition by logging in as root and typing:

    umount /dev/mapper/VolGroup00-LogVol02

  2. Next, change the file system type to ext2 by typing the following command as root:

    /sbin/tune2fs -O ^has_journal /dev/mapper/VolGroup00-LogVol02

  3. Now, check the partition for errors by typing the following command as root:

    /sbin/e2fsck -y /dev/mapper/VolGroup00-LogVol02

  4. Then, mount the partition again as an ext2 file system by typing:

    mount -t ext2 /dev/mapper/VolGroup00-LogVol02 /mount/point

    *Note: In the above command, replace /mount/point with the mount point of the partition.

  5. Next, remove the .journal file at the root level of the partition by changing to the directory where it’s mounted and typing:

    rm -f .journal

And there you have it! You now have an ext2 partition. *Note: If you want to permanently change the partition to ext2, remember to update the /etc/fstab file.

 

Popular Links

Looking for more information on Troubleshooting? Search our Knowledge Base!

Interested in more articles about Operating Systems? Navigate to our Categories page using the bar on the left or check out these popular articles:

Popular tags within this category include: Linux, Windows, Apache, CentOS, Debian, Fedora, RedHat, and more.

Don’t see what you’re looking for? Use the search bar at the top to search our entire Knowledge Base.

 

The Hivelocity Difference

Seeking a better Dedicated Server solution? In the market for Private Cloud or Colocation services? Check out Hivelocity’s extensive list of products for great deals and offers.

With best-in-class customer service, affordable pricing, a wide-range of fully-customizable options, and a network like no other, Hivelocity is the hosting solution you’ve been waiting for.

Unsure which of our services is best for your particular needs? Call or live chat with one of our sales agents today and see the difference Hivelocity can make for you.

Need More Personalized Help?

If you have any further issues, questions, or would like some assistance checking on this or anything else, please reach out to us from your my.hivelocity.net account and provide your server credentials within the encrypted field for the best possible security and support.

If you are unable to reach your my.hivelocity.net account or if you are on the go, please reach out from your valid my.hivelocity.net account email to us here at: [email protected]. We are also available to you through our phone and live chat system 24/7/365.

Tags +
...