当前位置:   article > 正文

Linux系统常用时间设置

linux怎么设置系统时间

a8a820f79503567e14eb90768cd13adb.png

一、查看系统时间

使用 date 命令即可查看当前的系统时间:

date

二、手动设置时间

1、执行如下命令可以设置一个新的系统时间:

date -s "20231118 06:30:50"

或者使用如下命令分开设置

  1. sudo date +%Y%m%d -s "20230719" //设置日期为2023719
  2. sudo date +%T -s "10:15:00" //设置时间为10:15:00

第一行命令将日期设置为指定的日期,第二行命令将时间设置为指定的时间。请根据需要更改这些值。

2、设置完后还要执行如下命令将结果同步到硬件时钟:

hwclock --systohc

三、自动同步时间

1、首先安装 ntpdate 命令:

yum install -y ntpdate

2、与网络时间服务器同步:

ntpdate ntp1.aliyun.com

其他常用的时间服务器:

  1. cn.pool.ntp.org
  2. Windows系统自带:time.windows.comtime.nist.gov
  3. MacOS X系统自带:time.apple.comtime.asia.apple.com
  4. cn.ntp.org.cn
  5. 阿里云NTP服务器:ntp1.aliyun.com、ntp2.aliyun.com、ntp3.aliyun.com、ntp4.aliyun.com、ntp5.aliyun.com、ntp6.aliyun.com、ntp7.aliyun.com
  6. 腾讯云NTP服务器:ntpupdate.tencentyun.com
  7. 国家授时中心服务器:210.72.145.44
  8. 清华大学NTP服务器:s1b.time.edu.cn、s1e.time.edu.cn、s2a.time.edu.cn、s2b.time.edu.cn

3、同步结果到硬件时钟,避免下次重启被还原

hwclock --systohc

7f1eb721dd63570467e58e2358fc4f02.jpeg

在Linux上查看和设置系统时间是一项基本的任务。接下来讲一下如何自动同步时间。

如果希望系统能够自动同步时间,可以使用网络时间协议(NTP)。

在CentOS上可以使用yum安装,在Ubuntu上,可以使用apt-get安装,以下为ubuntu命令安装:

  1. sudo apt-get update
  2. sudo apt-get install ntp

安装完成后,NTP客户端将自动从互联网上的时间服务器同步时间。您也可以手动启动NTP客户端来强制同步时间:

sudo service ntp start

或者,为了让NTP客户端在系统启动时自动启动,您需要编辑/etc/default/ntp文件,并将start_ntp的行改为start_ntp=1。然后保存并关闭文件。最后,运行以下命令以使更改生效:

sudo service ntp restart

cee45851c20d084be79130b2eb5cc358.gif

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/182107?site
推荐阅读
相关标签
  

闽ICP备14008679号