一介闲人
一介闲人
查看时间
timedatectl
或
date
或
hwclock --show
查看可用的时区
timedatectl list-timezones
联网的情况下可以利用ntp进行时间校正
依赖环境ntp和ntpdate
yum install -y ntp ntpdate
校正事件
ntpdate cn.pool.ntp.org
修改系统时间
timedatectl set-time '2024-07-04 00:00:00'
或
date -s "2024-07-04 00:00:00"
修改系统时区
timedatectl set-timezone Asia/Shanghai
在执行timedatectl set-time时报错:Failed to set time: Automatic time synchronization is enabled,导致无法修改系统时间。
timedatectl set-ntp no
timedatectl set-time '2024-07-04 00:00:00'
clock -w
评论