search for: abdv29

Displaying 1 result from an estimated 1 matches for "abdv29".

2008 Oct 08
1
File permissions and Unix umask.
...hey are affected by a client's umask. To illustrate my question, I issued the following commands first on a local ext3 file system and then on a cifs file system: $ umask 0002 $ touch f1 $ echo xx > f2 $ umask 0022 $ touch f3 $ echo xx > f4 $ ls -l On Ext3, the output is: -rw-rw-r-- 1 abdv29 users 0 Oct 9 00:31 f1 -rw-rw-r-- 1 abdv29 users 3 Oct 9 00:31 f2 -rw-r--r-- 1 abdv29 users 0 Oct 9 00:31 f3 -rw-r--r-- 1 abdv29 users 3 Oct 9 00:31 f4 On a CIFS mount the output is: -rw-rw-r-- 1 abdv29 users 0 Oct 9 00:35 f1 -rw-rw-r-- 1 abdv29 users 3 Oct 9 00:35 f2 -rw-r--r-- 1 abdv29 us...