Skip to content Skip to main navigation Skip to footer

centOS/RHEL:如何修改系统时间为北京时间

修改美国vps的系统时间为北京时间
也许大家在使用国外vps时感觉vps上的时间不是北京时间,感觉很别扭,今天我们就来改回为北京时间,首先登录你的vps,先用date命令查看下当前时间

    [root@centos ~]#date
    Sun Aug 14 23:18:41 EDT 2011
 

现在我们就来改

 [root@centos ~]# rm -rf /etc/localtime
    [root@centos ~]# ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
 

再用date命令看下,你的vps的时间改变了吗?大部分linux vps的母鸡是允许每个vps修改时间的!看vpsma的时间已经修改好了。

    [root@centos ~]# date
    Mon Aug 15 11:20:00 CST 2011
 

如果此时你的vps时间已经改成北京时间就不用看下面了,如果此时你的vps时间还没有修改好。再试下命令:

  [root@centos ~]# ntpdate stdtime.sinica.edu.tw
 

使用ntpdate stdtime.sinica.edu.tw 时候如果提示这个命令,先安装 ntpdate就可以了。
centos 系统的vps用命令:

 yum -y install ntpdate ntp
 

Ubuntu系统的:

   sudo apt-get install -y ntpdate ntp
 

安装完毕再试这个命令,如果还不可以的话,一般情况就是母鸡做了设置不让修改你vps的时间了。
原文:92csz.com

0 Comments

There are no comments yet

Leave a comment

Your email address will not be published.