USB drive are not mounted automatically

My USB Drive is not mounted automatically but it has detected through lsusb.

I also used dconf-Editor but it is not working. Every time I have to mount manually through Disk Utility.


Solution 1:

A complete description for configuring auto-mount is given here:

https://help.ubuntu.com/community/Mount/USB

If this does not help, please insert your usb-stick and post the last lines of dmesg and syslog.

Solution 2:

Have you recently not unmounted the drive correctly, either power failure or a crash while writing to or reading from the drive? This can cause errors with the drive and while once mounted it functions normally the superblock may have errors causing it to not mount correctly.

As Requist asked, check dmesg immediately after inserting you flash drive, you may see one of the last lines as "Volume was not properly unmounted. Some data may be corrupt. Please run fsck.".

Check the device label in gparted then run

sudo fsck /dev/xxx (swapping xxx for your device)

You may get some details back about an invalid Superblock.

Fixing this is dependent on the drive filesystem, is it ext4 or Fat32 etc?

Here's a page on repairing an ext4 superblock

If your drive is fat32 or other msdos type, then testdisk may help but be careful with this tool, with great power...

sudo apt-get install testdisk
sudo testdisk

here is a post on using testdisk to repair a fat32 superblock issue. It links to this post, read both before starting.

Hope it helps.