|
chmod persistance? (and fstab help)
So, I finially figured out how to get write permissions on my 2nd harddrive... I had to chmod the mount point (eg. chmod go+rwx /usr/pictures ), and that works.
However, after a restart, those chmod properties are undone and reverted back to their previous form, so I have to chmod them every time I want to write to the drive. Is there something I'm missing here? It doesn't sound like this is supposed to happen. Pasted below is my fstab if you need it for reference.
And how does noauto work? If the root mounts the filesystem, does only root have write access to that drive? So the only way the user gets write access if he has permission to mount the drive and he does it manually? Is there anything that I should add to my fstab that would be beneficial?
Thanks for any help!
/dev/hde1 / ext3 noatime 1 1
none /dev/pts devpts mode=0620 0 0
/dev/hde6 /home ext3 noatime 1 2
none /mnt/cdrom supermount dev=/dev/hda,fs=udf:iso9660,ro,--,iocharset=iso8859-1 0 0
none /mnt/cdrom2 supermount dev=/dev/scd0,fs=udf:iso9660,ro,--,iocharset=iso8859-1 0 0
none /mnt/floppy supermount dev=/dev/fd0,fs=ext2:vfat,--,codepage=850,sync,umask=0,iocharset=iso8859-1 0 0
none /proc proc defaults 0 0
/dev/hdg7 /usr/backup ext3 user,exec,dev,suid 1 2
/dev/hdg5 /usr/media ext3 user,exec,dev,suid 1 2
/dev/hdg1 /usr/pictures ext3 user,exec,dev,suid 1 2
/dev/hdg6 /usr/storage ext3 user,exec,dev,suid 1 2
/dev/hde5 swap swap defaults 0 0
|