nexus 7 测试、root问题

1. XP提示MTP驱动的解决

Nexus Root Toolkit 1.5.4 最新版- 4.1.2专用 

我用的这个工具解决的root,比较不错。

2. XP提示MTP驱动的解决

照网上说因电脑已经安装了Windows Media Player 11,识别N7无问题,但是Nexus7 一直提示MTP无法识别,所以采用以下方法,亲测有效。

  1.进入设备管理器
  右击带黄色问号的MTP-属性-详细信息-选择 设备范例 ID 或 硬件 ID
  显示为如下信息:USB\VID_XXXX&PID_XXXX
  比如:USB\VID_18D1&PID_4E42记下

  2.找到c:\windows\inf\wpdmtp.inf打开
  显示:

[Generic.NTx86]
%GenericMTP.DeviceDesc%=MTP, USB\MS_COMP_MTP

[Generic.NTamd64]
%GenericMTP.DeviceDesc%=MTP, USB\MS_COMP_MTP

额外添加 %GenericMTP.DeviceDesc%=MTP, USB\VID_xxxx&PID_xxxx&MI_00 即可。

[Generic.NTx86]
%GenericMTP.DeviceDesc%=MTP, USB\MS_COMP_MTP
%GenericMTP.DeviceDesc%=MTP, USB\VID_xxxx&PID_xxxx&MI_00

[Generic.NTamd64]
%GenericMTP.DeviceDesc%=MTP, USB\MS_COMP_MTP
%GenericMTP.DeviceDesc%=MTP, USB\VID_xxxx&PID_xxxx&MI_00
  注意,用刚记下的 VID_18D1&PID_4E42替换上面的 VID_xxxx&PID_xxxx

  3.在设备管理器中点带黄色问号的MTP驱动,右键-更新驱动,成功检测出Nexus7 ,大功告成。

2. 提示adb server is out of date.  killing...

C:\Android\adt-bundle-windows-x86-20130219\sdk\platform-tools>adb start-server
adb server is out of date.  killing...
ADB server didn't ACK
* failed to start daemon *
   解决:在任务管理器,Kill掉adb.exe和tadb.exe
参考:http://blog.csdn.net/id19870510/article/details/8489486


C:\Android\adt-bundle-windows-x86-20130219\sdk\platform-tools>
C:\Android\adt-bundle-windows-x86-20130219\sdk\platform-tools>adb nodaemon serve
r
cannot bind 'tcp:5037'


C:\Android\adt-bundle-windows-x86-20130219\sdk\platform-tools>netstat -ano | fin
dstr "5037"
  TCP    127.0.0.1:5037         0.0.0.0:0              LISTENING       6472
  TCP    127.0.0.1:5037         127.0.0.1:58280        ESTABLISHED     6472
  TCP    127.0.0.1:58280        127.0.0.1:5037         ESTABLISHED     9216

C:\Android\adt-bundle-windows-x86-20130219\sdk\platform-tools>adb start-server
* daemon not running. starting it now on port 5037 *
* daemon started successfully *


C:\Android\adt-bundle-windows-x86-20130219\sdk\platform-tools>adb devices
List of devices attached
015d3fb628180c09        offline




C:\Android\adt-bundle-windows-x86-20130219\sdk\platform-tools>adb devices
List of devices attached
015d3fb628180c09        device


你可能感兴趣的:(nexus 7 测试、root问题)