首页 > 其他分享 >android系统adb对时//京鸿通信/www.kyohoon.com/15507589165

android系统adb对时//京鸿通信/www.kyohoon.com/15507589165

时间:2023-04-21 11:44:42浏览次数:31  
标签:www shell xxx 15507589165 adb 设置 服务器 com 对时

目录
1、远程连接设备
2、设置地区
3、设置对时服务器
4、重启设备
5、查看对时服务器是否设置成功
1、远程连接设备
adb connect xxx.xxx.xxx.xxx

2、设置地区
adb shell setprop persist.sys.timezone Asia/Shanghai

3、设置对时服务器
adb shell settings put global ntp_server 172.16.4.254

4、重启设备
adb shell reboot

5、查看对时服务器是否设置成功
adb shell
date
settings get global ntp_server

 

标签:www,shell,xxx,15507589165,adb,设置,服务器,com,对时
From: https://www.cnblogs.com/fdd-lte/p/17339844.html

相关文章

  • ASP.NET Core MVC 从入门到精通之wwwroot和客户端库
    随着技术的发展,ASP.NETCoreMVC也推出了好长时间,经过不断的版本更新迭代,已经越来越完善,本系列文章主要讲解ASP.NETCoreMVC开发B/S系统过程中所涉及到的相关内容,适用于初学者,在校毕业生,或其他想从事ASP.NETCoreMVC系统开发的人员。 经过前几篇文章的讲解,初步了解ASP.NETCor......
  • Common Subsequence
    CommonSubsequenceTimeLimit:1000MS MemoryLimit:10000KTotalSubmissions:43130 Accepted:17470DescriptionAsubsequenceofagivensequenceisthegivensequencewithsomeelements(possiblenone)leftout.GivenasequenceX=<x1,x2,.........
  • Null component Catalina
    NullcomponentCatalina:type=JspMonitor,name=jsp在eclipse中启动tomcat,提示以下错误: 严重:NullcomponentCatalina:type=JspMonitor,name=jsp,WebModule=//localhost/sshnews,J2EEApplication=none,J2EEServer=none java.lang.reflect.InvocationTargetException ......
  • fun small tech com
    funsmalltechcom......
  • docker-compose 安装使用教程
    1、下载二进制文件:curl-Lhttps://github.com/docker/compose/releases/download/v2.17.1/docker-compose-linux-x86_64  -o/usr/local/bin/docker-compose2、授权执行权限:    chmod+x/usr/local/bin/docker-compose3、查看版本:  docker-compose--version......
  • Git Tip: git push ‘No refs in common and none specified’
    评:@seehttp://www.thebuzzmedia.com/git-tip-git-push-no-refs-in-common-and-none-specified/Gitisasource-controltoolusedbysoftwaredevelopers.IrecentlyswitchedfromSubversiontoGitandwhilethingshavebeenmostlysmooth,therehavebeena......
  • context:component-scan扫描使用上的容易忽略的use-default-filters
    评:问题如下方式可以成功扫描到@Controller注解的Bean,不会扫描@Service/@Repository的Bean。正确Java代码收藏代码<context:component-scanbase-package="org.bdp.system.test.controller"><context:include-filtertype="annotation"expression="org.spri......
  • 修改maven3项目的默认的编译级别(compile level)
    评:听闻maven的鼎鼎大名打算在最近的一个项目中试下爽,结果遇到了这个问题,虽对项目影响不大,但做技术刨根问题是必须的了,少废话。1.cmd命令建立web项目:mvnarchetype:generate-DgroupId=biz.yunduo-DartifactId=dts-DpackageName=dts-DarchetypeArtifactId=maven-archetype-we......
  • JDK升级到1.7后 com.sun.image.codec.jpeg不存在
    源:http://stackoverflow.com/questions/8015291/how-to-replace-com-sun-image-codec-jpeg-jpegimageencoder-in-this-code评:JDK升级到1.7后编译的时候会出现com.sun.image.codec.jpegjar不存在需要修改程序代码将原来的[java]viewplaincopyprint?在CODE上查看代码片派......
  • Husky + Commitlint实现commit message校验
    配置git提交的校验钩子husky:git提交时触发hookscommitlint:对提交的内容做规范校验husky,主要对pre-commit和commit-msg钩子做校验#安装huskynpminstallhusky-D#初始化husky配置,在根目录新增.husky配置文件。初始化配置pre-commitnpxhusky-init#另外新增一个......