Bu umask
genellikle sistem genelinde config dosyası üzerinden ayarlanır /etc/login.defs
:
$ grep UMASK /etc/login.defs
UMASK 077
Bu değer geçersiz kılınan olabilir ama genellikle ya aracılığıyla değil edebilir /etc/bashrc
, /etc/profile
ve / veya bunların kullanıcılar tarafından $HOME/.bashrc
(onlar Bash kullandığınız varsayarak).
Eğer grep
bu anılan dosyalarda "Umask" için de RHEL kutuları bu fark edeceksiniz:
$ grep umask /etc/bashrc /etc/profile
/etc/bashrc: # By default, we want umask to get set. This sets it for non-login shell.
/etc/bashrc: umask 002
/etc/bashrc: umask 022
/etc/profile:# By default, we want umask to get set. This sets it for login shell
/etc/profile: umask 002
/etc/profile: umask 022
Daha derin kazmak:
/etc/bashrc
# By default, we want umask to get set. This sets it for non-login shell.
# Current threshold for system reserved uid/gids is 200
# You could check uidgid reservation validity in
# /usr/share/doc/setup-*/uidgid file
if [ $UID -gt 199 ] && [ "`id -gn`" = "`id -un`" ]; then
umask 002
else
umask 022
fi
/etc/profile
# By default, we want umask to get set. This sets it for login shell
# Current threshold for system reserved uid/gids is 200
# You could check uidgid reservation validity in
# /usr/share/doc/setup-*/uidgid file
if [ $UID -gt 199 ] && [ "`id -gn`" = "`id -un`" ]; then
umask 002
else
umask 022
fi
Yani en azından RHEL sistemlerinde umask
ya 002
UID'niz 199'dan büyükse ya 022
da (sistem hesapları).