Nexus 10 - not visible to adb on Windows 7 or Linux

前端 未结 11 1356
清酒与你
清酒与你 2021-01-31 16:26

adb doesn\'t recognize my Nexus 10 on Windows 7. Here\'s what I\'ve done:

  1. Installed the SDK and USB driver from Google. Windows 7 sees the tablet as an \'Android A
11条回答
  •  误落风尘
    2021-01-31 16:53

    I started with the same problem as you, but managed to get my adb connection working on a Fedora 16 system as follows:

    1. Inserted 0x18d1 into adb_usb.ini (I do not bother with the device ID)

    2. Inserted the following extra line into 99-android.rules. It's not the quite the same as yours but I leave you to experiment.

      SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", MODE="0666", GROUP="plugdev", OWNER="johnp"
      
    3. Pressed the settings->about->version number 7 times.

    4. Rebooted tablet and noticed that a new section is created in settings called "developer options".

    5. Enabled USB debugging in settings->about->developer options.

    6. On Fedora performed adb kill-server.

    7. On Fedora performed adb start-server.

    8. On Fedora performed adb devices.

    I now see a new USB device in the list. When I go to my development environment (Eclipse) I see the device there as well.

提交回复
热议问题