Results 1 to 4 of 4
Hi
I would like to change change file system from ext2 to ext3 without losing any datas, guide me how to do.
Thanks in advance...
- 02-10-2012 #1Just Joined!
- Join Date
- Feb 2012
- Posts
- 3
How to change file system in linux
Hi
I would like to change change file system from ext2 to ext3 without losing any datas, guide me how to do.
Thanks in advance
- 02-10-2012 #2
You need a linux/kernel that supports ext3 of course.
As always for procedures, that affect a whole partition/disk: Backup your data first.
After that, you can create a journal with
and mount the partition as ext3.Code:tune2fs -j <YOUR_EXT2_PARTITION>
If it worked, then make it reboot proof in /etc/fstabYou must always face the curtain with a bow.
- 02-11-2012 #3
If you wish to partition the disks using a GUI application, gparted would be the best option.
- 02-12-2012 #4Linux Guru
- Join Date
- Apr 2009
- Location
- I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
- Posts
- 8,974
You can do that, if your system kernel supports ext3, since ext3 is just an extension of ext2. The command tune2fs with the -j option will add an ext3 journal to an existing ext2 file system, turning it into an ext3 file system. Check the tune2fs man page for details on how to do that.
Sometimes, real fast is almost as good as real time.
Just remember, Semper Gumbi - always be flexible!


Reply With Quote