Common umask settings umask 002 / umask u=rwx,g=rwx,o=rx Allow read/execute for everyone, only allow write by user and group umask 022 / umask u=rwx,g=rx,o=rx Allow read/execute for everyone, only allow write by user umask 027 / umask u=rwx,g=rx,o= Allow read/execute for user and group, only allow write by user umask 077 / umask u=rwx,g=,o= Allow read/write/execute for user, deny everyone else. umask 777 / umask u=,g=,o= You are root, or You are more paranoid than I, or You don't even trust yourself.