My question is similar to this:

http://stackoverflow.com/questions/228534/linux-default-file-permission

but there is no scp/ftp client involved and that question looks abandoned. Simply put: I want to be able to, at some global level decree that all newly created files will never have world writable permissions (0775).

I tried putting a umask 02 in /etc/profile then in my bash_profile but it only works for scripts or new files that I create in a shell. It doesn't work for files that another binary creates. Is there anyway to have all new files that are created?

link|improve this question
It's possible you may be able to do what you want by modifying the mount - either giving it a umask in /etc/fstab (umask=xxxx in the options section, but this is not available for ext*) or by chmod-ing the mountpoint. – Jefromi Oct 1 '09 at 13:49
Good description here: superuser.com/questions/318833/… – erikxiv May 1 at 9:54
feedback

migrated from stackoverflow.com Oct 1 '09 at 16:34

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

2 Answers

What you want is the UMASK setting in the /etc/login.defs file.

link|improve this answer
feedback

umask is what you want...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown