[size=10pt]I have a mount permission issue which started after my recent upgrade from Lucid (10.04) to Maverick (10.10), without changing any relevant settings. While the auto-mounting works, my VFAT USB stick solid state drive is mounted with 0755 [USER].root permissions, meaning only root and one user (first one logged on?) can write to the USB drive. Prior to the upgrade it worked as expected, though I never bothered to check the mount permissions.
lsusb reports it as:
usb-devices reports it as:
After is is mounted, /etc/mtab has the following entry for the drive (and mount reports the same information):
After some protracted efforts at solving this problem myself, the best solution I could come up with to modify the mount permissions set by Kubuntu's auto-mount system was to create the file '/usr/share/hal/fdi/policy/20thirdparty/20-vfat-config-write-policy.fdi' with the following content:
Obviously, that was of no avail .... Suggestions?
lsusb reports it as:
Code:
Bus 001 Device 006: ID 1687:6211 Kingmax Digital Inc.
Code:
T: Bus=01 Lev=01 Prnt=01 Port=00 Cnt=01 Dev#= 6 Spd=480 MxCh= 0 D: Ver= 2.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1 P: Vendor=1687 ProdID=6211 Rev=02.00 S: Manufacturer=Kingmax S: Product=USB2.0 FlashDisk S: SerialNumber=xxxxxxxxxxxxxxxxxxxxx C: #Ifs= 1 Cfg#= 1 Atr=80 MxPwr=200mA I: If#= 0 Alt= 0 #EPs= 2 Cls=08(stor.) Sub=06 Prot=50 Driver=usb-storage
Code:
/dev/sdc1 /media/disk vfat rw,nosuid,nodev,uhelper=hal,uid=1000,utf8,shortname= mixed,flush 0 0
Code:
<?xml version="1.0" encoding="UTF-8"?> <!-- -*- SGML -*- --> <deviceinfo version="0.2"> <!-- file created by CalDre --> <!-- mount vfat with umask 000 to enable write support for all users --> <device> <match key="volume.fstype" string="vfat"> <merge key="volume.policy.mount_option.umask" type="string">000</merge> <merge key="volume.mount_option.umask" type="string">000</merge> </match> </device> </deviceinfo>
Comment