- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Migrating from ext2 fs to ext3 fs?
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2002 01:30 PM
02-19-2002 01:30 PM
what command do you use if you want to migrate from ext2 to ext3 filesystem (Yes my kernel supports ext3 fs)? Thanks in advance for your help.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2002 11:36 PM
02-19-2002 11:36 PM
Re: Migrating from ext2 fs to ext3 fs?
before you start to work, please confirm following pkg version.
e2fsprog 1.20 or later
tune2fs -j /dev/sda6
You can use this command either mounted or not mounted the /dev/sda6.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2002 12:39 AM
02-20-2002 12:39 AM
Re: Migrating from ext2 fs to ext3 fs?
before doing the upgrade, please think over that some commercial backup products don't support ext3 backups, like Ominback.
Allways stay on the bright side of life!
Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2002 06:33 AM
02-20-2002 06:33 AM
Re: Migrating from ext2 fs to ext3 fs?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2002 07:01 PM
02-20-2002 07:01 PM
Re: Migrating from ext2 fs to ext3 fs?
Quoting from the man page:
AVAILABILITY
tune2fs is part of the e2fsprogs package and is available
from http://e2fsprogs.sourceforge.net.
i suspect that if you have the files:
/sbin/e2fsck
/sbin/tune2fs
then you probably have the requisite version:
/sbin/e2fsck -V
e2fsck 1.23, 15-Aug-2001 for EXT2 FS 0.5b, 95/08/09
Using EXT2FS Library version 1.23, 15-Aug-2001
from my installation (RH 7.2).
man tune2fs for more details on the command's usage.
happy journaling!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2002 08:14 AM
02-21-2002 08:14 AM
Re: Migrating from ext2 fs to ext3 fs?
/dev/hda5 /
dev/hda1 /boot
I've already converted /dev/hda5 to ext3. Here's the output of tune2fs on /dev/hda5: "
tune2fs -j /dev/hda5
tune2fs 1.23, 15-Aug-2001 for EXT2 FS 0.5b, 95/08/09
Creating journal inode: done
This filesystem will be automatically checked every 20 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override."
Do I need to change anything in /etc/fstab in regards to /dev/hda5? Since, this is my root filesystem, Do I need to create an initial ramdisk? Thanks for your input.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2002 09:34 AM
02-21-2002 09:34 AM
Re: Migrating from ext2 fs to ext3 fs?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2002 12:05 PM
02-21-2002 12:05 PM
SolutionCheck that tune2fs properly updated /etc/fstab to indicate that the partition is now ext3:
cat /etc/fstab
~~~
LABEL=/ / ext3 defaults 1 1
LABEL=/boot /boot ext3 defaults 1 2
........
RedHat uses this funky LABEL stuff which I find annoying, but...
mount
~ ~ ~
/dev/hda2 on / type ext3 (rw)
/dev/hda1 on /boot type ext3 (rw)
...
shows the real deal.
I didn't have to create a new initrd for my system, but there have been several discussions on the topic on this board.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2002 12:10 PM
02-21-2002 12:10 PM
Re: Migrating from ext2 fs to ext3 fs?
df -Tk would also show the Type of filestystem being mounted.
Mark, do you have hour /boot and / (root) filesystem on ext3? If so, were you able to boot w/o initial ramdisk?
If somecould clarify why and when initial ramdisk is needed when you're on ext3 filesystem? Thanks.