im trying to mount an ext2 partition, so that a user can r/w to it.
mouting goes fine, but the user can't access to the mounted partition.
the mountpoint '/home/lemrey/data' has the following attributes.
/dev/ad10s1 is the partition im mounting, like this (as root)
lemrey is in group 'operator'.
as soon as the partition is mounted, while i can browse it fine as root,
the user has some problem 'cd: /home/lemrey/data: Permission denied'
i also noticed the mountpoint's attributes are changed:
im running 8.0-RELEASE on amd64
any ideas?? :q
mouting goes fine, but the user can't access to the mounted partition.
Code:
lemrey ~ $ ls -all /dev/ad1*
crw-rw-r-- 1 root operator 0, 102 May 17 19:23 /dev/ad10
crw-rw-r-- 1 root operator 0, 109 May 17 19:23 /dev/ad10s1
the mountpoint '/home/lemrey/data' has the following attributes.
Code:
drw-rw-r-- 2 lemrey operator 512 May 17 21:34 data
# mount -t ext2fs /dev/ad10s1 /home/lemrey/data
lemrey is in group 'operator'.
as soon as the partition is mounted, while i can browse it fine as root,
the user has some problem 'cd: /home/lemrey/data: Permission denied'
i also noticed the mountpoint's attributes are changed:
Code:
drw-rw-r-- 8 lemrey lemrey 4096 Mar 8 15:23 data
im running 8.0-RELEASE on amd64
any ideas?? :q