Linux 查看及修改时区

查看时间及时区
查看当前时间

date
1
查看时区

cat /etc/timezone
1
修改时区
1.修改或设置Linux服务器时区

tzselect
1
RedHat Linux/CentOS

timeconfig
1
Debian

dpkg-reconfigure tzdata
1
2.设置环境变量

echo "export TZ='Asia/Shanghai'" >> /etc/profile
source /etc/profile
1
2
3.创建软链接

ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
1
使用timedatectl命令

timedatectl set-timezone Asia/Shanghai
1
硬件时间
查看硬件时间
hwclock --show
1

clock --show
1
设置硬件时间
hwclock --set --date="19/03/12 21:55"
1

clock --set --date="19/03/12 21:55"
1
同步系统及硬件时钟
hc代表硬件时间,sys代表系统时间,systohc表示以系统时间为基准,同步至硬件时间

hwclock --systohc
1

clock --systohc
参考链接:
2 Ways to check timezone in Linux

你可能感兴趣的:(linux)