查看系统时间 # date 查看硬件时间 # hwclock --show 更新系统年月日# timedatectl set-time 2017-06-13 更新系统时分秒 # timedatectl set-time 10:25:17 更新时区(亚洲-中国-上海) # timedatectl set-timezone Asia/Shanghai 将硬件时钟调整为与系统时钟一致 # timedatectl set-local-rtc 1 将日期写入CMOS # clock –w 1. 安装ntpdate工具 # yum -y install ntp ntpdate 2. 设置系统时间与网络时间同步 # ntpdate -d 182.92.12.11 3. 将系统时间写入硬件时间 # hwclock --systohc 4.强制系统时间写入CMOS中防止重启失效 hwclock -w 或clock -w 5.解决8小时时区 # timedatectl # ls /usr/share/zoneinfo/ # sudo rm /etc/localtime # sudo ln -s /usr/share/zoneinfo/Universal /etc/localtime (责任编辑:IT) |