开发者

Samsung Pop 5570 does not connect in Ubuntu 10.10. in development mode

Adb devices is not listing my Samsung Pop 5570 wen connected in with USB debugging on in ubuntu 10.10

adb devices ?????????? no permission开发者_StackOverflow社区s

i did add the 51-android.rules file in /etc/udev/rules.d folder but still adb devices shows that devices wit ?????? no permissions.

51-android.rules file has the following contents:

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

please let me know if i am missing something


I resolved the issue by appending #samsung in the 51-android.rules file and copying the "adb" command to /bin folder.

$ restart udev

$ cp adb /bin

$ sudo adb kill-server

$ sudo adb start-server

$ sudo adb devices

List of devices attached S5570e905be1c device


Edit: I suspect your subsystem name is the culprit (simply try "usb" instead). However, I am unable to comment as to whether or not that subsystem name is still valid in 10.10 as I do not know what changes have been made to udev.

First step would be to verify that your vendor id is correct with lsusb (that appears to be Samsung's vendor id, but it can't hurt to check).

I am also running 10.10, but I have an HTC device. Here is my rule file's content:

SUBSYSTEM=="usb", SYSFS{idVendor}=="0bb4", MODE="0666"

After editing the file, I unplugged my device. Just in case, I kill adb's daemon:

sudo adb kill-server

I then reconnected my device and executed "adb devices". adb started the daemon without sudo. My device was listed properly.


I resolved the above problem by prefixing the 51-android-rules file with #samsung, i mean,

'#samsung SUBSYSTEM=="usb_device", SYSFS{idVendor}=="04e8", MODE="0666"'.

I killed the adb server and restarted in SU mode and then ran

$sudo adb devices,

i was able to see my device listed.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜