Re: About default init umask , and kernel umask, cron umask

2012-12-05 Thread Mike Mestnik
Also keep in mind on modern systems init is started from the initrd and not by the kernel, so a good umask may be set there for init. http://linux.die.net/man/8/pivot_root On 12/05/12 10:28, Min Wang wrote: > HI > > Could any one tell what is the default umask for kernel, init, cron? is > it con

Re: About default init umask , and kernel umask, cron umask

2012-12-05 Thread Mike Mestnik
On many Unix systems, the default umask is 022. This would be set explicitly by init or not at all (000). If your writing an init replacement, make sure to set umask then later you can read a config file and set the umask to the user configured value. See: http://www.juniper.net/security/auto/vu

About default init umask , and kernel umask, cron umask

2012-12-05 Thread Min Wang
HI Could any one tell what is the default umask for kernel, init, cron? is it configurable? google around , I could not find a clear answer. assuming: kernel --- > init --- > spawned tasks so the kernel will set default umask , then the pass it to init? what the default umask? where is the