I have an issue with mounting my Flash drive on Ubuntu 10.04 with write privileges. It's currently partitioned as Fat32 with Label KINGSTON but when I insert it into the Laptop it reads it as usb0, read-only privileges.
What I've had to do so that it is writable is to unmount it using Disk Utility and mount it again, and then it picks it up as KINGSTON with root privileges.
What I want is to automatically mount the flash drive with root privileges without going to Disk Utility to set this. Any help would be appreciated.
Open the terminal using:
Menu: Applications menu -> Accessories -> Terminal.
Keyboard Shortcut: Ctrl + Alt + T
And type the following:
The output should be similar to:
My flash drive is located at /dev/sdb1 (yours may vary).
Make the following ajustments:
For NTFS file system:
You should edit the
fstab
file. Type the following in terminal:At the bottom of the fstab file paste the following:
For FAT 16/32 file system run the following in terminal:
Note: You should create the mount point, in terminal type the following:
Related Reading:
Mount/USB - Community Ubuntu Documentation
Fstab - Community Ubuntu Documentation
This might sound like a bizarre answer, but I just ran into the same problem - it's worth a look.
Make sure you don't have the
usbmount
application installed - it seems to cause conflicts and mounts your USB drives to the "usb#" folders that you mentioned.More information is available in the related Ubuntu forums post.