View previous topic :: View next topic |
Author |
Message |
cfgold n00b

Joined: 31 Mar 2005 Posts: 64
|
Posted: Thu Apr 07, 2005 8:10 pm Post subject: directory as file in vfat? [SOLVED] |
|
|
Hello,
I have a vfat partition to share files with the other OS. When I'm logged in as root, I have no troubles. However, when I'm logged in as a user, I can see the partition (called data) and open it. However, all the directories appear as single files. Since I'm always planning to login as the user, what can I change so that the vfat partition is always r,w, etc.?
Here is the snippet from my fstab:
Code: |
/dev/sda8 /data vfat noatime,user,rw 0 0
|
Any ideas?
Thanks!
Last edited by cfgold on Thu Apr 07, 2005 9:18 pm; edited 1 time in total |
|
Back to top |
|
 |
Nil_Spaar Apprentice

Joined: 10 Jul 2004 Posts: 179 Location: Berlin, Germany
|
Posted: Thu Apr 07, 2005 9:09 pm Post subject: |
|
|
What exactly do you mean with "all the directories appear as single files"? I guess you mean you can't cd into them and most probably the cause is that the permissions aren't set right. It would help if you posted the output of "ls -l" to clarify things. And it would also be usefull to know if you mounted it as root or as user.
Here is how my fstab line looks:
Code: |
/dev/hda5 /windows/d vfat auto,uid=nobody,gid=408,umask=717,dmask=707,codepage=850
|
Since the FAT filesystem has no file owners/groups or file permissions linux has to apply some values globally to the whole FAT partition.
uid= and gid= specify to which owner and group the files should belong. (408 is my group "windows" which contains all users who should have access to the windows partitions)
umask=value Set the umask (the bitmask of the permissions that are not present).
dmask=value Set the umask applied to directories only.
fmask=value Set the umask applied to regular files only.
(codepage=850 is only necessary because I use a german charset for the filenames)
The result is, that all normal files have only group:read+write and all directories have only group:read+write+execute set. So everybody in the windows group has full access and everybody else has no access at all. |
|
Back to top |
|
 |
cfgold n00b

Joined: 31 Mar 2005 Posts: 64
|
Posted: Thu Apr 07, 2005 9:17 pm Post subject: |
|
|
Hi Nil_Spaar,
Thank you for the reply. Incidentally, a collegue was able to help. It seems that umask=0 alone does the trick:
Code: |
/dev/sda8 /data vfat noatime,rw,umask=0,users 0 0
|
I'll study your solution more, as it looks more interesting.
Thanks again!
CFG |
|
Back to top |
|
 |
Nil_Spaar Apprentice

Joined: 10 Jul 2004 Posts: 179 Location: Berlin, Germany
|
Posted: Thu Apr 07, 2005 9:35 pm Post subject: |
|
|
Of course umask=0 gives you access.
With umask you define which permission bits get not set, so umask=0 means no permission bits are not set, or in other words all permissions bits are set so anybody has read,write and execute rights. If that's enough for you, you should be fine with that.
My solution allows you to better control who has access and who hasn't. And what was most important to me: It gives directorys the execute bit (so you can cd into them) and doesn't give it to normal files. Usually you don't want/can execute files that are on a vfat drive and when typing "ll" in the shell, excutable files are displayed in green and normal files in black and it did annoy me terribly when everyting was green on the windows drives  |
|
Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|