ubuntu20.04时区设置为上海

2022/4/28 7:12:47

本文主要是介绍ubuntu20.04时区设置为上海,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

将系统时间设置为时区为上海,24小时制方便查看日志,cron保证集群时间同步。

apt install chrony -y

systemctl status chrony

systemctl enable --now chrony

find / -name Shanghai

ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 

echo "LC_TIME=en_DK.UTF-8" >> /etc/default/locale

apt install ntpdate -y

ntpdate time1.aliyun.com

echo "*/5 * * * * ntpdate time1.aliyun.com &> /dev/null && hwclock -w" >> /var/spool/cron/crontabs/root

reboot

个人网站:https://cxupup.com



这篇关于ubuntu20.04时区设置为上海的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程