[question about a third IDE drive deleted; anyone wishing to donate
one to me, I'll be glad to find an answer :) ]
Here's part of my /etc/fstab:Quote:>One other question, is there any way to change the permission on
>the dos file partition so that everybody can read and write to them?
>I have, for example, /hda3 mounted as /dosc. I cannot
>"chmod 777 /dosc" so that all users can read and write to it. Any
>suggestion?
...
/dev/hda1 /dos/c msdos defaults,umask=000
/dev/hda4 /dos/d msdos defaults,umask=000
...
The "umask=000" does the trick.
Also, the -o command line option to mount will do the same thing:
mount -t msdos /dev/hda8 /dos/g -o umask=000
Ken