If I change my home from ext3 to ext4 when installing will my data be lost?
|
Yes. And you should be able to see that because the format box will automatically be checked. If you want to enable the two main features of ext4 that can be added without reformatting, run sudo tune2fs -O extents,uninit_bg /dev/sda1 and then sudo e2fsck -f /dev/sda1. |
|||
|
|
|
Where do you want to change it? As far as I can imagine, if you install new version of ubuntu, any selection about a new file system means destroying the previous. Since you mentioned "my home" (I am not sure you mean that /home is mounted as a separated filesystem), if I were you, I would simply skip using that fs, and later, you only need to edit |
|||
|
|
|
if you want your old ext3 partition to become ext4 you can easily convert it after you are done upgrading:
where /dev/sdb1 your 'home' partition, which has to be unmouned |
|||
|
|
Not much to add as the how to has been said already. However consider this: Before changing the filesystem on a preexisting partition it is strongly recommended to backup your data.In the likely case that you already made your backup you may run the tools mentioned by psusi, or else you may find it less time consuming to simply restore your data in a brand new /home. |
|||
|
|