• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

migrating linux filesystem (quicket response wins a cookie)

fivepesos

Senior member
i recently set about converting my system to ext3. i patched and recompiled the kernel, rebooted to it and now im trying to move my system unto a new partition.

i have hde2 (current ext2 partititon) and hde3 (a blank ext3 partition).

whats the best way to move my data and still maintain the correct permissions?

of course id have to edit fstab on the new partition.
 
Actually you can just convert the FS (tune2fs -j /dev/hde2). or if you want to copy one to the other (keep permissions) then type:

cp -r -a /hde2_mount_point /hde3_mount_point

(natrually replace the mount points above with the actual mount points).
 
Back
Top