views:

28

answers:

2

Please close this question. I got what I am looking for and some are arguing it doesn't belong here.

All you have to do is zip the files on the mount and drop it in your local HD. All permissions are intact!

Is it possible?

I have a network disk mounted on Ubuntu. How do I save the files (folders and files recursively) from the network mounted disk to my local disk preserving permissions?

Thank you...

A: 

Checkout this link on How permissions are handled when you copy and move files and folders. It has the exact answer you are after.

VoodooChild
I am looking for the Linux domain. Thanks though...
ThinkCode
+1  A: 

Use either rsync -a or cp -p, depending on your needs.

Paul R