您的位置:首页 > 运维架构 > Linux

centos6.5系统下如何修改时区

2017-11-02 14:23 274 查看
Linux下修改时区:
[root@bogonetc]# date
Thu Nov 
2 01:59:16 Asia 2017  
//时间不对,差在时区上
 
使用如下命令,导入配置文件
[root@bogon ~]#export TZ='Asia/Shanghai'  
//TZ名字自己定,新增一个环境变量
[root@bogon ~]#source ~/.bashrc          
//使环境变量生效
 
[root@bogon ~]#sudo rm -f /etc/localtime  
//去使能当前的时区设置
 
[root@bogon ~]#sudo ln -s /usr/share/zoneinfo/Asia/ShangHai /etc/localtime  
使新的配置生效
 
最后查看时区
[root@bogon ~]#date
Thu Nov 
2 10:03:36 CST 2017  

 
为了使重启后生效,需要修改/etc/sysconfig/cloc文件内容
 
ZONE="Asia/Shanghai"
 
最后执行命令生效
[root@bogonsysconfig]# ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
 
重启后,时间正确。
 
 
 
 
查找时区名称的命令tzselect
 
[root@bogon ~]#tzselect
Please identifya location so that time zone rules can be set correctly.
Please select acontinent or ocean.
 1) Africa
 2) Americas
 3) Antarctica
 4) Arctic Ocean
 5) Asia
 6) Atlantic Ocean
 7) Australia
 8) Europe
 9) Indian Ocean
10) PacificOcean
11) none - Iwant to specify the time zone using the Posix TZ format.
#? 5
Please select acountry.
 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 selectone of the following time zone regions.
1) east China -Beijing, Guangdong, Shanghai, etc.
2) Heilongjiang(except Mohe), Jilin
3) central China- Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc.
4) most of Tibet& Xinjian
ac46
g
5) west Tibet& Xinjiang
#? 1
 
The followinginformation has been given:
 
      
China
      
east China - Beijing, Guangdong,Shanghai, etc.
 
ThereforeTZ='Asia/Shanghai' will be used.
Local time isnow:
Thu Nov 
2 10:12:40 CST 2017.
Universal Timeis now: 
Thu Nov 
2 02:12:40 UTC 2017.
Is the aboveinformation OK?
1) Yes
2) No
#? 1
 
You can makethis 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 TZvalue again, this time on standard output so that you
can use the/usr/bin/tzselect command in shell scripts:
Asia/Shanghai
 
 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: