zoukankan      html  css  js  c++  java
  • 一月份实现Adb小程序

    As Brian said:

    According to a post on xda-developers, you can enable ADB over WiFi from the device with the commands

    setprop service.adb.tcp.port 5555

    stop adbd

    start adbd

    And you can disable it and return ADB to listening on USB with

    setprop service.adb.tcp.port -1

    stop adbd

    start adbd

    If you have USB access already, it is even easier to switch to using WiFi. From a command line on the computer that has the device connected via USB, issue the commands

    adb tcpip 5555

    adb connect 192.168.0.101:5555

    To tell the ADB daemon return to listening over USB

    adb usb

    There are also several apps on the Android Market that automate this process.

    It works.You just need to access the android shell and type those commands...

    One other (easier) solution is on the Market: adbWireless, it will automatically set your phone.

    Root is required! for both...

  • 相关阅读:
    Ratchet(WebSockets for PHP)的官方TUTORIALS 的实践
    TCP_Wrappers访问控制
    PAM认证机制
    AIDE入侵检测系统
    使用gpg来加密数据
    openssl数据加密
    搭建私有CA
    进程概念
    进程管理命令
    Linux的信号管理
  • 原文地址:https://www.cnblogs.com/pandans/p/4179579.html
Copyright © 2011-2022 走看看