LINUX系统下修改时间的一些常见命令

centos 修改date系统时间查看和修改linux的时间和时区
1、查看当前时间、时区、日历
# date
Tue Dec 25 15:36:09 CST 2013
# date -R
Tue, 25 Dec 2013 15:36:13 +0800
# cal
December 2013
Su Mo Tu We Th Fr Sa
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
2、修改服务器的时间
1)修改日期的格式,时分时秒默认为 00:00:00
# date -s 2013/12/25 // ok
Wed Dec 25 00:00:00 CST 2013
# date -s 2013-12-25 // ok
Wed Dec 25 00:00:00 CST 2013
# date -s 12/25/2013 // ok
Wed Dec 25 00:00:00 CST 2013
# date -s 25/12/2013 // error
date: invalid date ‘25/12/2013’
2)修改时间的格式
# date -s 15:50:30
Tue Dec 25 15:50:30 CST 2013
# date
Tue Dec 25 15:50:31 CST 2013
3)写入到主板CMOS
# clock -w
# hwclock -w
3、修改服务器的时区
1)tzselect
# tzselect
Please identify a location so that time zone rules can be set correctly.
Please select a continent or ocean.
1) Africa
2) Americas
3) Antarctica
4) Arctic Ocean
5) Asia
6) Atlantic Ocean
7) Australia
8) Europe
9) Indian Ocean
10) Pacific Ocean
11) none - I want to specify the time zone using the Posix TZ format.
#? 5
Please select a country.
1) Afghanistan 18) Israel 35) Palestine
2) Armenia 19) Japan 36) Philippines
【LINUX系统下修改时间的一些常见命令】3) Azerbaijan 20) Jordan 37) Qatar
4) Bahrain 21) Kazakhstan 38) Russia
5) Bangladesh 22) Korea (North) 39) Saudi Arabia
6) Bhutan 23) Korea (South) 40) Singapore
7) Brunei 24) Kuwait 41) Sri Lanka
8) Cambodia 25) Kyrgyzstan 42) Syria
9) China 26) Laos 43) Taiwan
10) Cyprus 27) Lebanon 44) Tajikistan
11) East Timor 28) macau 45) Thailand
12) Georgia 29) Malaysia 46) Turkmenistan
13) Hong Kong 30) Mongolia 47) United Arab Emirates
14) India 31) Myanmar (Burma) 48) Uzbekistan
15) Indonesia 32) Nepal 49) Vietnam
16) Iran 33) Oman 50) Yemen
17) Iraq 34) Pakistan
#? 9
Please select one of the following time zone regions.
1) Beijing Time
2) Xinjiang Time
Therefore TZ='Asia/Shanghai' will be used.
Local time is now: Tue Dec 25 16:09:30 CST 2013.
Universal Time is now: Tue Dec 25 08:09:30 UTC 2013.
Is the above information OK?
1) Yes
2) No
You can make this change permanent for yourself by Appending the line
TZ='Asia/Shanghai'; export TZ
to the file '.profile' in your home directory; then log out and log in again.
Here is that TZ value again, this time on standard output so that you
can use the /bin/tzselect command in shell scripts:
Asia/Shanghai
2)复制时区文件软链接到 /etc/localtime
ln -sf /usr/share/zoneinfo/Asia/Chongqing /etc/localtime // 软链到东八区 - 重庆
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime // 软链到东八区 - 上海
Linux 修改时间的命令
date –s '2013-12-25 10:10:10'
clock –w // 将日期写入CMOS,避免重启后失效
hwclock –w // 将日期写入CMOS,避免重启后失效
Linux时间修改3个命令
date:修改系统当前的时间
clock:修改CMOS时间(查看CMOS时间:clock -r)
hwclock:修改系统硬件时间
# date
Tue Dec 25 15:32:22 CST 2013
# clock -r
Tue 25 Dec 2013 03:32:27 PM CST -1.061780 seconds
# clock
Tue 25 Dec 2013 03:32:31 PM CST -1.071987 seconds
# hwclock
Tue 25 Dec 2013 03:32:35 PM CST -1.055773 seconds
hwclock 硬件时钟的用法
hwclock --show // 查看硬件时钟
hwclock --set --date="1/23/01 22:16:59" // 设置硬件时钟
# hwclock
Tue 25 Dec 2013 03:53:28 PM CST -1.059641 seconds
# hwclock --set --date='2013-12-25 03:53:38'
硬件时间从根本上讲是CMOS时钟;而系统时间是由内核维护的,它是从1969年末(即传说中的标志Unix时代开端的那个拂晓)开始算起的累积秒数 。
在DOS或Mac系统中,起作用的是硬件时钟 。
遗憾的是,你可能已经发现了,绝大多数电脑时钟都是很不准确的 。它们从根本上讲是由小型电池供电的警报器时钟,这种锂电池一般可持续供电三年左右,那时候你系统各大块差不多都已经过时了 。而在Linux系统中,起作用的是系统时钟 。在启动时,它靠读取硬件时钟获得计时起点,而不是靠记忆计时 。


推荐阅读