2008年5月28日 星期三

Linux 時間調校

系統時間不使用 UTC(GMT)…
nano /etc/default/rcS
---------------------------------------------------
UTC=no
---------------------------------------------------

重設時區…
rm /etc/localtime

cp -a /usr/share/zoneinfo/Asia/Taipei /etc/localtime

手動校正時間MMDDhhmmYYYY…
date 052808542008

時間寫入 bios…
hwclock -w

安裝 ntp 網路時間同步…
apt-get install ntpdate

與 ntp server 同步時間…
ntpdate time.stdtime.gov.tw

時間寫入 bios…
hwclock -w

系統自動校時…
nano /etc/crontab
---------------------------------------------------
10 5 * * * root /usr/sbin/ntpdate time.stdtime.gov.tw && /sbin/hwclock -w
---------------------------------------------------

沒有留言:

VirtualBox 空間減肥

sdelete64 -z c: VBoxManage  modifymedium  disk  "/Users/fellow/VirtualBox VMs/Win10/Win10.vdi"  --compact *.vdi 路徑可以在 VirtualBox 儲...