Ubuntu – Can not connect Android SGSII via USB after ICS upgrade

androidusb

I got OTA update for my Samsung Galaxy S2 – Android 4 (ICS). However, the adb devices does not show the device. Neither does lsusb. I am using ubuntu inside vmware Fusion on a Mac. If I disconnect the device from Ubuntu and use it in OS X, adb devices shows the device.

My udev rule contains the following entry:

SUBSYSTEM=="usb", SYSFS{idVendor}=="04e8", MODE="0666"

dmesg output does not include string 04e8.

I should note that I tried both USB modes (MTP and PTP).

Best Answer

I added these lines to Ubuntu.vmx file (I believe the last line makes a difference):

usb.quirks.device0 = "0x4e8:0x681d skip-reset" # Mass Storage
usb.quirks.device1 = "0x4e8:0x68a9 skip-reset" # Media
usb.quirks.device2 = "0x4e8:0x6877 skip-reset" # Kies
usb.quirks.device3 = "0x4e8:0x6866 skip-reset" # SGS2 ICS
Related Question