11

Under Ubuntu 10.04 one of the problems which appeared is that USB devices would no longer automatically mount when plugged in. Normally I would get a pop up message asking what application I wanted to open the newly plugged in device with, however now that doesn't happen.

This happens regardless of the way the device is formatted (NTFS or FAT32) and all other USB devices (printer, keyboard and mouse) work perfectly.

My current solution is the mount them manually using sudo mount dev/... /medai/... however to be honest I'm just getting tired of having to do this.

I'm happy to post any extra information you are likely to need. I know there will be lots of places I could look to find out what's going wrong but I have no idea where to start really.

Marco Ceppi
  • 48,827

9 Answers9

2

Solved, at least for me.

I think it is a hardware issue, because I tried a 12.04 live CD in my desktop and everything works fine. I tried at my laptop and it doesn't open the USB automatically.

Any way the solution that I found is to install usbmount by running the command below on the terminal:

sudo apt-get install usbmount

Then USB mounts fine and automatically.

More info in this page. I also installed autofs.

Hope this works for you.

pmoren
  • 21
1

Something is broken in an update I guess. Try running:

sudo mkdir /dbos 
sudo fdisk -l
# find your memory stick
sudo mount /dev/sdc /dbos
# now your memory stick is in /dbos
Yi Jiang
  • 1,206
Robin
  • 149
1

In gconf-editor, look under /apps/nautilus/preferences. There should be a setting called "media_automount". Ensure that it is checked. There is also an option called "media_automount_open" that you can set if you wish it to open the media in nautilus automatically in addition to mounting it.

Nerdfest
  • 4,658
0

USB mount only works with small drives, MY LG 500 GB didn't automount and not even with the ubuntu bug storage report... This happened with me twice... the first time I was a linux newbie and I had to format my entire disk again... and now that this happened... nothing actually works EXCEPT.. DISK UTILITY... JUST download it and go to terminal and sudo palimpsest It detects the partition, and lets u check for every kind of error there is and for the mounting issue all u gotta do is just click mount... U get a link for the mounted file and thats it... Hope this helps anyone...

0

Try in Nautilus → Edit → Preferences → Media

Peachy
  • 7,235
  • 10
  • 40
  • 47
sBlatt
  • 4,619
0

This happened to me in xubuntu. It used to mount automatically but now it does not. My workaround was I installed an extra package called usbmount.

sudo apt-get install usbmount

sagarchalise
  • 24,306
0

If you run (Alt+F2) "ubuntu-bug storage", your problem is the very first option. It may not be a bug, but a bug report would be the easiest way to rule that out.

Oh and please post a link to the bug report here if you do.

0

It is a known issue with 10.04 if you have a floppy drive. Here is a solution:

  1. Open a terminal (Ctrl+Alt+F2).
  2. Type: gksu gedit /etc/fstab
  3. Add a # before the line that contains fd0.
  4. Then in terminal type: rmmod floppy
Eliah Kagan
  • 119,640
akshatj
  • 13,386
0

It sounds like you've exhausted most normal fixes. A forced fix might come about if you go into your BIOS settings and verify that you have 'boot from removable/flash drives' set to ON.

If it is set to OFF and you toggle it ON, perhaps booting with a non-bootable flash drive in a port, the operating system may be forced to reassign how it manages flash devices. At worst it may spit out another error that could lead you to finding out what is wrong.

mfg
  • 163