By the way in case anyone out there finds this thread looking for the same solution:
The exact 'cp' command referenced to above is as follows (this needs to done like this in order to preserve all file permissions, attributes, etc.):
(the -v (verbose mode, to show you what's going on) is optional)
(the asterisk at the end is to copy the contents and not the directory)
# cp -v -r --preserve=all /path_to_source_directory/* /path_to_destination_directory
For changing to superuser, (if the root password is not set, it can be set by running this command: 'sudo passwd'):
$ su
For unmounting (the -l is to force the unmount):
# umount -l /name_of_mount
Last edited by heberg21; 01-17-2010 at 10:43 PM.
|