One thing you could try is to add a line like this in your /etc/fstab:
Code:
/dev/sda1 /mnt/muvo vfat noauto,users,rw,fmask=133,dmask=033 0 0
noauto means it is not automatically mounted on startup
users means that anybody can mount the drive and files on it automatically belong to that user
rw means mount read/write
fmask=133 means regular files will not have execute permission
dmask=033 means directories will have execute (traverse) permission
Then, as an ordinary user, type mount /mnt/muvo