Click to See Complete Forum and Search --> : Mounting Windows drive as writable


Icarus
12-03-2001, 08:34 AM
I'm having some trouble getting my Windows Drive to mount as being writable for all users, I get it to mount for read with no problems but everything I've tried to give it read/write isn't working except for root. Here is the line in the fstab to mount at boot...
/dev/hde1 /windows vfat defaults,rw 1 1
I have tried adding 'user' instead of 'defaults' but still tells me 'permission denied' when i try to write. What am I missing?

otheos
12-03-2001, 09:21 AM
/dev/hde1 /windows vfat defaults,umask=000 1 1

the permissions are the oposite of chmod, so if you wanted 755 you say 022.

Silent Bob
12-03-2001, 09:46 AM
http://www.linuxnewbie.org/cgi-bin/ubbcgi/ultimatebb.cgi?ubb=get_topic&f=12&t=000596

Icarus
12-03-2001, 10:35 AM
Ahhh, umask...thanks, I knew I was missing something!

teeitup
12-03-2001, 01:09 PM
You probably should change the 1 1 to 0 0.
You don't want Linux to check your windows file system. and I doubt you use "dump" to backup your file systems

.

Icarus
12-03-2001, 02:31 PM
Originally posted by teeitup:
<STRONG>You probably should change the 1 1 to 0 0.
You don't want Linux to check your windows file system. and I doubt you use "dump" to backup your file systems.</STRONG>
Thanks for that tip...I was wondering why it started running checks and warning me that FAT32 was still ALPHA :)