When I copy some directory (dir) recursively with sudo in bash it copies just the first level of the dir hierarchy, but when used without sudo it copies the dir with all its subdirs, though commands in command-line have the difference only in the presence of sudo.

Why does this happen?

For example:

k@l:/$ tree
.
|
|__a
|  |
|  |__b
|     | 
|     |__1.htm   
|
|__c
k@l:/$ sudo cp -r /a/b /c/d
k@l:/$ cd /c
k@l:/c$ ls
d
k@l:/c$ cd d
bash: cd: /c/d: Permission denied
k@l:/c$ tree
.
|__d [error opening dir]

1 directory, 0 files
link|improve this question
There are error messages on your listing. You perhaps want to learn their meaning first. – n.m. Jul 26 '11 at 5:11
feedback

migrated from stackoverflow.com Jul 26 '11 at 8:40

This question came from our site for professional and enthusiast programmers.

1 Answer

up vote 2 down vote accepted

Maybe /c/d had permissions 700 with a different owner. Try sudo chmod -R 755 /c/d.

link|improve this answer
2  
+1: Or you could try 'sudo chown -R me /c/d'. – Jonathan Leffler Jul 26 '11 at 6:50
Yup, that'd work too. – skjaidev Jul 26 '11 at 7:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.