ubuntu修改时区以及永久的修改时间

#     ubuntu修改时区以及永久的修改时间
首先遇到了几个坑,我刚开始查找的都是linux的操作方法,虽然ubuntu也是linux但是不同的linux系统的方法还是不一样的。同时在修改时间的过程中发现自己的时区是不对的。中国的时区应该是 Thu, 12 Apr 2018 20:57:17 +0800 最后结尾+8000是中国北京时区。之后还遇到了修改时区的坑,这里慢慢给大家讲。
## 如何查看时区(date -R)
```bash
root@compute16:~ # date -R
Thu, 12 Apr 2018 20:57:17 +0800
```
## 如何修改时区(tzselect命令)(本人重启之后又变回原来的时区了)
```bash
root@compute16:~ # tzselect
Please identify a location so that time zone rules can be set correctly.
Please select a continent, ocean, "coord" , or "TZ" .
1) Africa
2) Americas
3) Antarctica
4) Asia
5) Atlantic Ocean
6) Australia
7) Europe
8) Indian Ocean
9) Pacific Ocean
10) coord - I want to use geographical coordinates.
11) TZ - I want to specify the time zone using the Posix TZ format.
#? 4
Please select a country whose clocks agree with yours.
1) Afghanistan       18) Israel            35) Palestine
2) Armenia       19) Japan         36) Philippines
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
#? 1

The following information has been given:

    China
    Beijing Time

Therefore TZ= 'Asia/Shanghai' will be used.
Local time is now:  Thu Apr 12 21:05:23 CST 2018.
Universal Time is now:  Thu Apr 12 13:05:23 UTC 2018.
Is the above information OK?
1) Yes
2) No
#? 1

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.
root@compute16:~ #  TZ='Asia/Shanghai'; export TZ
这样就把时区选到了中国(但是亲测这种方法重启之后不好使)
```
## 修改时区方法二(sudo dpkg-reconfigure tzdata)
执行这个命令之后就根据选择需要  中国的一般选择
Asia确认,然后选择shanghai这样确定后重新时区就改变了。
## 时区修改完毕后就是修改时间了
### 修改系统的时间
```bash
#查看系统时间
date
#修改系统时间
sudo date -s hh:mm:ss
```
### 同步硬件的时间(就是把硬件时间调整到跟软件一样)
```bash
sudo hwclock -w
#同步完可以查看硬件时间
sudo hwclock -r或者是 hwclock 又或者是 hwclock -r
```
这样重启之后时间就修改完毕了!!!

你可能感兴趣的:(linux,ubuntu,linux)