|
超級美少女 發表於 14-7-8 12:07 
那個時區好像,只是顯示在 linode manager 而以
當初,你剛開始建立 CentOS 時,系統應該會參考 Linode Manager 中所設定的時區 ...
但現在你的 CentOS 已經建立好了,所以,變更的方式就是將 /etc/localtime 檔案內容變成你所想要設定的時區檔案... 例如:
- root@hvc0:~# cp -p /usr/share/zoneinfo/Asia/Taipei /etc/localtime
- root@hvc0:~# date
- Tue Jul 8 12:16:49 CST 2014
- root@hvc0:~# cp -p /usr/share/zoneinfo/GMT+0 /etc/localtime
- root@hvc0:~# date
- Tue Jul 8 04:17:28 GMT 2014
複製代碼
|
|