orts Posted November 16, 2008 Share Posted November 16, 2008 Hi all How do I move or copy a directory, with a lot of sub-directorys and a lot more files, without loosing the permissions on every file and directory? I had to set special permissions on it all, because I was affraid to do something foolish like change in the wrong file. Thanks in advance. Regards Orts Link to comment Share on other sites More sharing options...
ianw1974 Posted November 16, 2008 Share Posted November 16, 2008 If you move it, the permissions will go with it. The same with if you copy it also, from the command line though you'll have to use the command like this: cp -dpRx Documents /home/newuser/ for example would take the Documents folder and all it's contents to /home/newuser. Link to comment Share on other sites More sharing options...
paul Posted November 17, 2008 Share Posted November 17, 2008 101 ways to skin a cat cd /path/to/source tar cf - * | ( cd /path/to/target; tar xfp -) Link to comment Share on other sites More sharing options...
{BBI}Nexus{BBI} Posted November 17, 2008 Share Posted November 17, 2008 How about: Right-Click, Cut --> Right-Click, Paste ;) Link to comment Share on other sites More sharing options...
orts Posted November 17, 2008 Author Share Posted November 17, 2008 Thanks guy's Allways a pleasure to ask a question in here, with all those great answers Link to comment Share on other sites More sharing options...
ianw1974 Posted November 17, 2008 Share Posted November 17, 2008 101 ways to skin a cat Now I'm curious as to how you skin a cat :) Link to comment Share on other sites More sharing options...
Greg2 Posted November 17, 2008 Share Posted November 17, 2008 Now I'm curious as to how you skin a cat :) skin /path/to/cat Link to comment Share on other sites More sharing options...
ianw1974 Posted November 18, 2008 Share Posted November 18, 2008 Is that available in the Mandriva repos? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now