Is there a tool to convert a reiserfs partition to ext3?
|
feedback
|
|
Since it's recommended anyway to have backups before filesystem conversions, you'd better copy everything (do not forget file permissions) somewhere, create an ext3 filesystem on that partition, then copy everything back. | |||
|
feedback
|
|
Converting between filesystems is generally not possible. If you have space constraints your best bet is to
| |||
|
feedback
|
|
I very much doubt you will find a tool that will perform such a complex operation in-place. You will need to create the new filssystem on another drive and sync the content over with something like The other option would be just to restore from backups onto the new filesystem. | |||
|
feedback
|
|
This blog post explains the necessary steps: Convert Filesystem from reiserFS to ext3 and the command sequence you'll have to execute:
| |||
|
feedback
|
|
Have a look at http://tzukanov.narod.ru/convertfs/ Using this tool you can convert any filesystem to any other filesystem in-place as long as the source filesystem supports sparse files. It works flawlessly but I found it to be much slower than copying the whole fs to another place, re-create the filesystem of the wanted type and then copy everything back. | |||
|
feedback
|