Linux修改系统时间
时间:2014-07-11 09:59 来源:linux.it.net.cn 作者:IT网
手动修改
1、修改日期:
将系统日期设定成2012年12月05日的命令如下:
# date -s 12/05/2012
2、修改时间:
将系统时间设定成上午11点30分0秒的命令如下:
# date -s 11:30:00
3、实例:设置日期时间为2012年12月5号12:00
# date -s “2012-12-05 12:00:00″
4、同步BIOS时钟:
强制把系统时间写入CMOS,命令如下:
# clock -w
网络校时
1、安装同步软件
① yum自动安装
# yum install -y ntp
② 编译安装
下载ntp-4.2.6p5.tar.gz 点此下载
# tar zxvf ntp-4.2.6p5.tar.gz
# cd ntp-4.2.6p5
# ./configure –prefix=/usr/local/ntp –enable-all-clocks –enable-parse-clocks
# make && make install
# cp /usr/local/ntp/bin/ntpdate /bin/ntpdate
2、ntpdate自动校时
# ntpdate 210.72.145.44 #国家授时中心
# ntpdate time.windows.com #微软时间同步服务器
(责任编辑:IT)
手动修改
1、修改日期:
2、修改时间:
3、实例:设置日期时间为2012年12月5号12:00
4、同步BIOS时钟: 网络校时1、安装同步软件
① yum自动安装
② 编译安装
2、ntpdate自动校时 |