Hi,
I have the 2.6.30.4 kernel running from Uelsk8s test in repos.
Can I convert my ext3 partitions to ext4?
If so, any suggestions on the best way to do it? I got the following from the ext4 wiki.
To enable the ext4 features on an existing ext3 filesystem, use the command:
# tune2fs -O extents,uninit_bg,dir_index /dev/DEV
WARNING: Once you run this command, the filesystem will no longer be mountable using the ext3 filesystem!
after running this command (specifically, after setting the uninit_bg parameter), you MUST run fsck to fix up some on-disk structures that tune2fs has modified:
# e2fsck -fpDC0 /dev/DEV
Thanks in advance.