2

我有索尼爱立信 LT26i 手机(印度)。我打开了开发模式。我仍然无法在日食中检测到手机。在正常模式下检测到此手机以浏览文件和所有内容。

在日食中检测到其他手机,如三星等。

4

3 回答 3

1

你不写你运行的操作系统。

在 Linux 中你可以

> lsusb

你会得到一个喜欢的列表:

总线 001 设备 009:ID 04e8:6860 三星电子有限公司

您编辑规则文件:

> sudo gedit /etc/udev/rules.d/99-android.rules

添加 SUBSYSTEM=="usb", ATTR{idVendor}=="04e8", ATTR{idProduct}=="6860", MODE="0666", OWNER=" <your login here>"

还需要做

> sudo service udev restart
> adb kill-server
> adb start-server

检查

> adb devices
于 2012-09-14T13:22:41.863 回答
0

我的 Sony Xperia Neo L 手机也遇到过同样的问题。正如上面的帖子中提到的,你可以在 linux 平台上用“不透明”的答案来解决这个问题。但是,如果您是 Windows 7 用户(和我一样),最好和最简单的方法是从索尼网站安装 Sony PC Companion 软件。

该软件已安装所需的驱动程序,之后我的 Eclipse 检测到了我的手机。

于 2012-11-03T14:50:45.330 回答
0

当我按原样尝试 opaque 的解决方案时,我无法在 Ubuntu 13.04 上识别我的 Xperia Pro。至于我能从这篇文章中理解什么(http://esausilva.com/2010/05/13/setting-up-adbusb-drivers-for-android-devices-in-linux-ubuntu/),我不是正确创建 android-rules 文件。

To solve this I checked for other rules files on the rules.d directory and found out that it should be 70-andoid.rules, in my case. After that it still didn't recognize the device, but, after changing the file's permissions and rebooting the system, as also said on the cited post, Ubuntu is now identifying it ok.

Hope it helps!

于 2014-02-06T00:45:02.500 回答