Linux系统时区时间设置

1. 查看是否安装了ntpdate服务

    rpm -qa | grep ntpdate


2. 如果没有安装则安装ntpdate , 已安装ntpdate则可以忽略本步骤

    yum install ntpdate


3. 删除系统

    rm -rf /etc/localtime


4. 拷贝所需要时区文件 , 我这里设置为东八区 , 拷贝Shanghai或Chongqing都可以

    cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime


5. 更新系统时间

    ntpdate us.pool.ntp.org


6. 设置ntpdate服务默认启动运行方式

    chkconfig ntpdate on

你可能感兴趣的:(Linux系统时区时间设置)