用于调试的 HTC Wildfire 插件在 UBUNTU 中不起作用

发布于 2025-01-08 02:14:25 字数 231 浏览 0 评论 0原文

我有以下设备:

  1. 我有我的 Ubuntu 64 位 PC
  2. 我有我的 Wildfire(不是 S,而是普通的 Wildfire)

在我的手机中, 我已打开:

  1. USB 调试模式
  2. 也在充电模式

但是,ECLIPSE 在其设备部分没有找到我的设备。所以,我想知道这些想法! :)

谢谢 !

I got this following devices :

  1. I got my Ubuntu 64 bits PC
  2. I got my Wildfire (not S, but normal Wildfire)

In my phone,
I have turned on:

  1. USB debugging mode
  2. Also in the charging mode

However, ECLIPSE didn't find my device in their DEVICE section. So, I am wondering for the ideas ! :)

Thank you !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七堇年 2025-01-15 02:14:25

你做过这个设置吗? (使用硬件设备中提到的第 4 步)

如果您在 Ubuntu Linux 上进行开发,则需要添加udev 规则文件,其中包含您要用于开发的每种类型设备的 USB 配置。在规则文件中,每个设备制造商都由唯一的供应商 ID 进行标识,如 ATTR{idVendor} 属性所指定。有关供应商 ID 的列表,请参阅下面的 USB 供应商 ID

要在 Ubuntu Linux 上设置设备检测:
以 root 身份登录并创建此文件:/etc/udev/rules.d/51-android.rules
使用此格式将每个供应商添加到文件中:

SUBSYSTEM=="usb", ATTR{idVendor}=="0bb4", MODE="0666", GROUP="plugdev" 

在此示例中,供应商 ID 是针对 HTC 的。 MODE 分配指定读/写权限,GROUP 定义哪个 Unix 组拥有设备节点。
注意:规则语法可能会因您的环境而略有不同。根据需要查阅您系统的 udev 文档。有关规则语法的概述,请参阅编写 udev 规则的指南。

现在执行:

chmod a+r /etc/udev/rules.d/51-android.rules

Have you done this setting? (Step 4 mentioned at Using Hardware Devices)

If you're developing on Ubuntu Linux, you need to add a udev rules file that contains a USB configuration for each type of device you want to use for development. In the rules file, each device manufacturer is identified by a unique vendor ID, as specified by the ATTR{idVendor} property. For a list of vendor IDs, see USB Vendor IDs, below.

To set up device detection on Ubuntu Linux:
Log in as root and create this file: /etc/udev/rules.d/51-android.rules.
Use this format to add each vendor to the file:

SUBSYSTEM=="usb", ATTR{idVendor}=="0bb4", MODE="0666", GROUP="plugdev" 

In this example, the vendor ID is for HTC. The MODE assignment specifies read/write permissions, and GROUP defines which Unix group owns the device node.
Note: The rule syntax may vary slightly depending on your environment. Consult the udev documentation for your system as needed. For an overview of rule syntax, see this guide to writing udev rules.

Now execute:

chmod a+r /etc/udev/rules.d/51-android.rules
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文