====== Linux 修改時區 ====== * Ubuntu 20.04 x86_64 * CentOS 6.9 x86_64 * 想改成台北時區 Asia Taipei ===== 處理方式 ===== cp /etc/localtime /root/old.timezone rm -f /etc/localtime ln -s /usr/share/zoneinfo/Asia/Taipei /etc/localtime 操作畫面 [root@pve-Jonathan1 ~]# date Wed Mar 7 19:20:03 EST 2018 [root@pve-Jonathan1 ~]# cp /etc/localtime /root/old.timezone [root@pve-Jonathan1 ~]# rm -f /etc/localtime [root@pve-Jonathan1 ~]# ln -s /usr/share/zoneinfo/Asia/Taipei /etc/localtime [root@pve-Jonathan1 ~]# date Thu Mar 8 08:22:58 CST 2018 ===== 參考網址 ===== * https://dotblogs.com.tw/grayyin/2017/12/07/150110 {{tag>centos ubuntu systemtime timezone}}