I am trying to access the files on an ipod rockbox on an ubuntu 14.04 system; but can only seem to do so as root as the mount command does not seem to pay any attention to the mounting options I give it.
I mount with:
sudo mount -t vfat /dev/sdc2 /media/wjason/Zen-Black/ -o rw,uid=1001,gid=1001,umask=000,dmask=000
My understanding is that this should mount a FAT system read/write with all files owned by user wjason (uid 1001) and group wjason (gid 1001) and such that file and directory permissions for owner, group, and others are read, write, and execute
and yet, ls -l shows these permissions:
drwxr-xr-x 2 root root 4096 Nov 28 2010 Calendars
...
and for files on the device:
-rwxr-xr-x 1 root root 10704477 Sep 18 07:54 Bill Yosses _ Christine Kalafus.mp3
Since the owner/group are still root and group and others do not have write permissions, I can only sync files to the rockbox as root.