Hi Joseph (2007.09.13_06:02:47_+0200) > I want to add several hard drives to the /home directory. I have lvm > setup on the drives and working. How do I copy the /home directory so > that it does not mess with the existing files and maintains appropriate > permissions?
There are several approaches. cp -a might work if theres's nothing complex. I normally use this: # cd /home # find . -xdev -print0 | cpio -0pdvum --sparse /newhome SR -- Stefano Rivera http://rivera.za.net/ H: +27 21 794 7937 C: +27 72 419 8559 -- edubuntu-users mailing list [email protected] Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/edubuntu-users
