>From Piero on Wednesday, 2003-06-18 at 12:39:06 -0700:
> I mounted my hard disk's windows partition (fat32) with "gid=winusers" 
> (the group to which I belong) and umask=113 as options. Correctly the 
> directory /windows ant its subdirectories had uid 0 (default), gid 
> winusers, and permissions "rw-rw-r--".
> Nevertheless, when I tried to do "ls -l /windows" or "cd /windows" under 
> my own logname, I got the message "permission denied". I could do such 
> operations (at least "ls -l") logging as root.
-------------------------------

[EMAIL PROTECTED]:~$ mkdir tmp
[EMAIL PROTECTED]:~$ touch tmp/test1
[EMAIL PROTECTED]:~$ ls tmp
test1
[EMAIL PROTECTED]:~$ ls -ld tmp
drwxr-xr-x    2 conrad   conrad         72 Jun 18 16:21 tmp
[EMAIL PROTECTED]:~$ chmod 664 tmp
[EMAIL PROTECTED]:~$ ls -ld tmp
drw-rw-r--    2 conrad   conrad         72 Jun 18 16:21 tmp
[EMAIL PROTECTED]:~$ touch tmp/test2
touch: creating `tmp/test2': Permission denied
[EMAIL PROTECTED]:~$ ls -l tmp
ls: tmp/test1: Permission denied
total 0
[EMAIL PROTECTED]:~$ chmod 755 tmp
[EMAIL PROTECTED]:~$ ls -l tmp
total 0
-rw-r--r--    1 conrad   conrad          0 Jun 18 16:21 test1

-------------------------------
> Is it normal?

I think the above example explains your problem.

Conrad


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to