Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I want a way to set chmod 755 to /opt/lampp/htdocs and all of its content including subfolders and files, and If I create a new folder or file the chmod of that should be also 755.

chmod 75 /opt/lampp/htdocs works but only for this folder :|

share|improve this question

9 Answers

up vote 115 down vote accepted

Check the -R option

chmod -R <permissionsettings> <dirname>

In future you can save a lot of time by checking the man page first:

man <command name>

So in this case:

man chmod

share|improve this answer
10  
what's that man? – Adam Sep 18 '10 at 2:50
5  
it stands for manual page and is a linux command that shows the man page for a command (most linux commands have a man page). try man ls or man man. – Steve Robillard Sep 18 '10 at 2:53
3  
This did not work for me in the Terminal in Mac OS X. There I did "chmod -R <permissionsettings> <dirname>*" and it worked. – einar Jan 25 '12 at 9:51
Please do also see answer below by @WombleGoneBad . You will want to set permissions differently for files vs folders. – Sudhir Nov 9 '12 at 6:06
1  
@JonMitten it was a marker for a note that wasn't needed so I removed it. – Steve Robillard Jan 10 at 6:57
show 2 more comments

The answer above is correct, in that chmod -R 755 will set this as permissions to all files and folders in the tree. BUT WHY ON EARTH WOULD YOU WANT TO? it might make sense for the directories, but why set the execute bit on all the files?

i suspect what you really want to do is set the directories to 755 and either leave the files alone or set them to 644 for this you can use the find command e.g.

to change all the directories to 755:

    find /opt/lampp/htdocs -type d -exec chmod 755 {} \;

to change all the files to 644:

    find /opt/lampp/htdocs -type f -exec chmod 644 {} \;
share|improve this answer
2  
this should definitely be kept in mind – vvondra Sep 5 '12 at 14:37
3  
This is the correct answer. – ChocoDeveloper Feb 4 at 11:02
Anyone care to explain what the {} \; on the end the line means? – Nilzor Mar 15 at 10:14
4  
@Nilzor chmod 644 {} \; specifies the command that will be executed by find for each file. {} is replaced by the file path, and the semicolon denotes the end of the command (escaped, otherwise it would be interpreted by the shell instead of find). – tobbez Mar 29 at 15:46

To set to all subfolders (recursively) use -R

chmod 755 /folder -R

And use umask to set the default to new folders/files cd /folder umask 755

share|improve this answer
2  
DO NOT set your umask at 755! You won't be able to list, read or use any files or directories you create! – sleepynate Sep 18 '10 at 2:42
@sleepynate - you're 100% right! – Topera Sep 18 '10 at 2:44
1  
Did you mean umask 022? – Xkeeper Apr 30 '12 at 23:17

If you want to set permissions on all files to a+r, and all directories to a+x, and do that recursively through the complete subdirectory tree, use:

chmod -R a+rX *

The X (that is capital X, not small x!) is ignored for files (unless they are executable for someone already) but is used for directories.

share|improve this answer
Great answer. Just note that * will not match hidden files (names beginning with a dot). It may make more sense, then, to use . (for the current directory). – Aaron Adams Apr 3 at 22:53

sudo chmod 755 -R /whatever/your/directory/is

be care with that, it can really hurt you if you change the permissions of the wrong files/folders

share|improve this answer
sudo chmod 755 -R /opt/lampp/htdocs

-R make every sub folder ,including current folder

share|improve this answer

You might want to consider this answer given by nik on superuser and use "one chmod" for all files/folders like this:

chmod 755 $(find /path/to/base/dir -type d)
chmod 644 $(find /path/to/base/dir -type f)
share|improve this answer

chmod 755 -R /opt/lampp/htdocs will recursively set the permissions. There's no way to set the permissions for files automatically in only this directory that are created after you set the permissions, but you could change your system-wide default file permissions with by setting umask 022.

share|improve this answer

for mac osx Lion it is

chmod -R 755 /directory

and yes as all other say be careful on doing this.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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