You are not logged in.
In KDE and CLI, no matter what I do, a "VFAT" partition I want to mount always sets rw permissions for only root. Chmod and Chown do not work either. What else do I have to add to FSTAB to get the partition available for editing.
Here's the fstab line (from memory):
/dev/hdb5 /mnt/XDATA/ vfat defaults 0 0
I also tried it like this:
/dev/hdb5 /mnt/XDATA/ vfat rw,user,exec 0 0
but the problem still persisted. Is there something else in Fstab I have to add?
what am i? i'm good and i go thru the toaster
Offline
Try ....users.....
Would butter be the answer?
Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit! X-ray confirms Iam spineless!
Offline
umask=000
Offline
so the new fstab entry would look like:
/dev/hdb5 /mnt/XDATA/ vfat rw,users,exec,umask=000
this?
what am i? i'm good and i go thru the toaster
Offline
so the new fstab entry would look like:
/dev/hdb5 /mnt/XDATA/ vfat rw,users,exec,umask=000
this?
Yes. Or, if you want to let a user with UID 1000 and GID 100 to have write access and not the other users (Cerebral's method gives everyone read/write/execute access to the partition):
/dev/hdb5 /mnt/XDATA/ vfat uid=1000,gid=100 0 0
Offline