Home
Articles
Tutorials
Profile
Login / Sign Up
Search
Articles
Tutorials
Entire Site
Home
Articles
Tutorials
Profile
Login / Sign Up
#
Comment goes here
You should log in and post some comments! The link is up there in the toolbar. Go nuts!
Convert ext2 to ext3 file system
The conversion procedure is very simple enough. Let us assume /dev/sda6 (ext2 now) mounted on /convert. You will be seeing fstb entries like,
/dev/sda6 /convert ext2 defaults 0 0
Unmount the partition
umount /dev/sda6
Enable Journal (converting to ext3) using tune2fs command,
tune2fs -j /dev/sda6
Edit /etc/fstab and for /dev/sda6 change the file system type to ext3. Finally, the entry should be like this,
/dev/sda6 /convert ext3 defaults 1 2
Mount the partition using mount command,
mount -a
If above command doesn’t work, reboot the system and check.
Article Details
Author:
Mr Linux
Publish Date:
02/12/2013
Last Updated:
02/12/2013
Categories:
Basics
,
Linux Tips
Latest Articles
Linux Automation Tool for Repetitive Tasks
Shorewall: Your Friendly Firewall (Part 1: Installation and Basic Configuration)
Introduction to Regular Expressions within a Shell
IPv6 With Linux
View Disk Usage Visually With agedu
Handy tools for Linux admins
Become a Linux.org writer!
Join the Linux.org Google+ community!
Introducing LinuxPowerHosting.com
Starting with Tornado in Python: Setting Up Your Server