Android 手动设置NTP服务器
ADB登陆后:
root@p200:/ # adb shell settings put global ntp_server ntp1.aliyun.com root@p200:/ # adb shell settings get global ntp_server cn.ntp.org.cn
红色NTP服务器可以修改成自己需要的。
国内NTP服务器 dns1.synet.edu.cn news.neu.edu.cn dns.sjtu.edu.cn dns2.synet.edu.cn ntp.glnet.edu.cn ntp-sz.chl.la ntp.gwadar.cn cn.pool.ntp.org cn.ntp.org.cn 阿里云NTP服务器 ntp1.aliyun.com ntp2.aliyun.com ntp3.aliyun.com ntp4.aliyun.com ntp5.aliyun.com ntp6.aliyun.com ntp7.aliyun.com
启动模拟器调试,执行ADB指令时,报错。 C:\Users\gaojs>adb shell error: more than one device and emulator C:\Users\gaojs>adb install e:\good.apk error: more than one device and emulator 碰到这种情况,首先要查一下,是不是真的有多个设备或模拟器。 C:\Users\gaojs>adb devices List of devices attached emulator-5554 device 4dfadcb86b00cf05 device 发现还真是多个设备,那就需要为ADB命令指定设备的序列号了。 C:\Users\gaojs>adb -s emulator-5554 shell 也就是如上所示,给命令加上-s的参数就可以了! 如果实际上只有一个设备或模拟器,并且查到有offline的状态; 那就说明是ADB本身的BUG所导致的,就需要用如下的方法处理下了: C:\Users\gaojs>adb kill-server C:\Users\gaojs>taskkill /f /im adb.exe 第一条命令是杀ADB的服务,第二条命令是杀ADB的进程! 如果第一条没有用,才考虑用第二条命令再试试看的!
- 上一篇: LEDE IPv6 中继设置
- 下一篇: RouterOS 基础设置
评论已关闭