I have an external USB HD and one PCMCIA HD, both formated vfat. These are the fstab entries:
I just changed the 60G and 5G drives from defaults, relatime 0 2 to auto,users,rw,relatime 0 2 (for a test) and this is the owner:group info for each (abbreviated):
I'm not permitted to write to these two HDs. I can open the drives. I can navigate the contents and open files. I just don't have any permission to write to the drives or save any changes to edited files.
Believing it's an ownership thing, I tried to change the ownership:
and I get this:
I'm at a loss as to why I can't change the ownership? What am I missing?
# /dev/sde1 60G USB HD
UUID=100B-2074 /media/USB_60G vfat auto,users,rw,relatime 0 2
# /dev/sdb1 5G pcmci HD
UUID=1BD7-0D75 /media/PCMCIA_5G vfat auto,users,rw,relatime 0 2
UUID=100B-2074 /media/USB_60G vfat auto,users,rw,relatime 0 2
# /dev/sdb1 5G pcmci HD
UUID=1BD7-0D75 /media/PCMCIA_5G vfat auto,users,rw,relatime 0 2
paul@laptop:/media/USB_60G$ ls -l
total 1024
drwxr-xr-x 2 root root 32768 2006-09-03 14:21 2006 Rally
-rwxr-xr-x 1 root root 10166 2008-10-14 17:12 2008 Chrysler Sebring.ods
-rwxr-xr-x 1 root root 2559 2008-10-17 11:43 After Kernel upgrade.txt
-rwxr-xr-x 1 root root 471 2007-11-09 21:09 BIOS Check
total 1024
drwxr-xr-x 2 root root 32768 2006-09-03 14:21 2006 Rally
-rwxr-xr-x 1 root root 10166 2008-10-14 17:12 2008 Chrysler Sebring.ods
-rwxr-xr-x 1 root root 2559 2008-10-17 11:43 After Kernel upgrade.txt
-rwxr-xr-x 1 root root 471 2007-11-09 21:09 BIOS Check
paul@laptop:/media/PCMCIA_5G$ ls -all
total 8
drwxr-xr-x 2 root root 4096 1969-12-31 14:00 .
drwxr-xr-x 11 root root 4096 2008-11-23 17:04 ..
total 8
drwxr-xr-x 2 root root 4096 1969-12-31 14:00 .
drwxr-xr-x 11 root root 4096 2008-11-23 17:04 ..
Believing it's an ownership thing, I tried to change the ownership:
Code:
sudo chown -R paul:paul /media/[designated drive]/
chown: changing ownership of `/media/USB_60G/My Music/The Moody Blues/Time Traveller Disc 2/15 Melancholy Man.mp3': Operation not permitted
Comment