CentOS系统中与时间相关的几个命令
发布网友
发布时间:2022-04-22 05:54
我来回答
共1个回答
热心网友
时间:2022-04-13 07:01
1 查看与设置当前BIOS时间
[root@centos192 smstong]# hwclock -r # 读取硬件时钟
2015年06月03日 星期三 12时30分46秒 -0.891230 seconds
[root@centos192 smstong]# hwclock --set --date="06/03/2015 16:45:05" # 设置硬件时钟
2 查看与设置当前操作系统时间
[root@centos192 smstong]# date # 查看当前系统时间
2015年 06月 03日 星期三 19:37:55 CST
[root@centos192 smstong]# date -s 10:00:00 # 设置系统时间
2015年 06月 03日 星期三 10:00:00 CST
3 硬件时钟与系统时间交互
[root@centos192 smstong]# hwclock --hctosys # 用硬件时钟设置系统时间
[root@centos192 smstong]# hwclock --systohc # 用系统时间设置硬件时钟
4 查看与设置当前系统的时区
[root@centos192 smstong]# date -R # 查看带时区信息的当前系统时间
Wed, 03 Jun 2015 19:45:37 +0800
[root@centos192 smstong]# export TZ='America/Havana' # 设置时区为古巴时间
[root@centos192 smstong]# date -R # 可以看到时区成了-0400
Wed, 03 Jun 2015 07:49:49 -0400
要想永久性的设置时区信息,则可以在 /etc/profile配置文件里增加 export TZ=’America/Havana’。这样机器重启后也会自动设置时区。