If I mount a ntfs-partition with the following fstab-line at boot time, it works:
/dev/sda2 /windows/xp ntfs-3g defaults,locale=de_DE.UTF-8 0 0
a call to mount now gives the following:
/dev/sda2 on /windows/xp type fuseblk (rw,allow_other,blksize=4096)
That's no help for vfat user, at least not with the default filesystem-driver.
I don't know if a fuse-driver for vfat exists.
thanks for the answer, after editing the fstab file it works fine
the old fstab line, which did not work:
UUID=5A50F6AB50F68CCF /media/data ntfs defaults,umask=007,gid=46 0 0
and the new one: I (uid=1000) am the owner
UUID=5A50F6AB50F68CCF /media/data ntfs defaults,uid=1000,gid=46,umask=007 0 0
or this: everbody gets full access
UUID=5A50F6AB50F68CCF /media/data ntfs defaults,umask=000 0 0