查看时间、时区(CST:China Standard Time UT+8:00)
date
手动修改时间
#将系统时间改为2020年1月1日0点
date -s "2020-01-01 00:00:00"
同步时间(需安装ntpdate)
#同步阿里云时间
ntpdate ntp.aliyun.com
修改时区
#第一种通过timedatectl命令
timedatectl set-timezone Asia/Shanghai
#第二种更新/etc/localtime文件
rm -rf /etc/localtime
ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
查看硬件(bios)时间
hwclock
系统时间和硬件时间进行同步
#可通过hwclock --help自行查看
#用系统时间同步硬件时间
hwclock -w 或者 hwclock --systohc
#用硬件时间同步系统时间
hwclock -s 或者 hwclock --hctosys
发表评论