修改时区
临时改时区
export TZ='Asia/Shanghai';
时区字符串可使用tzselect程序查看。
永久修改时区
CentOS
rm -f /etc/localtime
ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
Ubuntu
cat /etc/timezone
rm -f /etc/localtime
ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
修改时间
将系统时间写入硬件(BIOS)时间
date -s "2019-06-04 10:41:00"
hwclock –systohc
将硬件时间写入系统时间
hwclock --...
6年前 (2019-06-04) 894℃ 0评论
0喜欢