On my dual-boot laptop I have a directory that I want accessible to both Windows XP and Linux, so I have it on the Windows partition. I put the following line in my /etc/fstab:
/dev/dha1 /mnt/hda1 ntfs ro,users 0 0
so that I can mount and unmount the partition as a regular user and can't accidentally try to write to it, and the mount point has the following permissions:
drwxr-xr-x 2 root root 4096
When I mount the volume the permissions change thus:
dr--r--r-- 1 root root 8192
But when I try to read the volume as a regular user I get "Permission denied."
I thought I'd found the answer by adding a umask option to the fstab, but it didn't change anything (tried 0000 through 0777).
Can anyone tell me how to access the partition as a regular user? Also, if you can explain the umask values that'd be swell. The man page didn't say much about it.
/dev/dha1 /mnt/hda1 ntfs ro,users 0 0
so that I can mount and unmount the partition as a regular user and can't accidentally try to write to it, and the mount point has the following permissions:
drwxr-xr-x 2 root root 4096
When I mount the volume the permissions change thus:
dr--r--r-- 1 root root 8192
But when I try to read the volume as a regular user I get "Permission denied."
I thought I'd found the answer by adding a umask option to the fstab, but it didn't change anything (tried 0000 through 0777).
Can anyone tell me how to access the partition as a regular user? Also, if you can explain the umask values that'd be swell. The man page didn't say much about it.
