pixel机时间无法同步解决
发表于更新于
字数总计:276阅读时长:1分钟阅读量:
前段部分文章:解决Google-pixel机“网络连接受限”问题
介绍
默认 NTP(Network Time Protocol)服务器为中心为 Google 的服务器,在国内是无法正常使用的,需要科学才能正常访问谷歌服务器,导致系统认为你的网络不好,从而导致网络不稳定。
解决办法
- 在终端中,通过输入adb命令:
adb shell "settings put global ntp_server pool.ntp.org"
。 - 重启即可。
扩展
如果pool.ntp.org
服务器无法正常使用,可以切换其他的服务器尝试。
1 2 3 4 5 6 7 8 9 10 11
| time.apple.com.cn (中国区苹果时间服务器) ntp.org.cn (中国国家授时中心时间服务器) ntp1.aliyun.com (阿里云NTP时间服务器) ntp.tencent.com (腾讯云NTP时间服务器) ntp2.tencent.com (腾讯云NTP时间服务器) ntp1.bce.baidu.com (百度云NTP时间服务器) ntp4.bce.baidu.com (百度云NTP时间服务器) ntp1.google.com (Google NTP时间服务器) ntp2.google.com (Google NTP时间服务器) ntp3.google.com (Google NTP时间服务器) ntp4.google.com (Google NTP时间服务器)
|