我可以不格式化就将ext3分区转换为ext4吗?


9

我的主目录位于仍然使用ext3的单独分区上。有没有办法以非破坏性的方式将此分区转换为ext4?

Answers:


12

是的你可以。在kernel.org的ext4-wiki中对此进行了很好的解释。基本上,一切都归结为

tune2fs -O extents,uninit_bg,dir_index /dev/DEV
e2fsck -fDC0 /dev/DEV

/ dev / DEV替换为相关分区。尽管这应该是非破坏性的,但我仍然强烈建议在执行操作之前备份您的数据。


4
还值得注意的是,这不会自动将现有文件转换为使用范围。
克里斯托弗·普罗沃斯特

1
我无法充分表达在进行这样的转换之前备份数据的重要性。
killermist 2012年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.