Report this

What is the reason for this report?

When I create new folder, it has chmod 755. I want 777

Posted on October 27, 2015

How can I set default chmod for new files or folders to 777? I don’t want to run chmod -R 777 everytime the file is created. Any ideas? Thanks



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

In some cases you might also have to -R

setfacl -R -d -m g::rwx /<directory>
setfacl -R -d -m o::rwx /<directory>

Hi,

In order to set a folder to grant default permissions to subfolders, you will need to do the following:

chmod g+s <directory>

This sets the group ID for the directory. Then, you can set your group to rwx by default with this command:

setfacl -d -m g::rwx /<directory>

Finally, to set all other users with the same permissions of rwx (which is a less secure setting):

setfacl -d -m o::rwx /<directory>

After running those commands, check permissions with

ls -al /<directory>

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.