在Debian中的时间调整

首先,可以用两种方式调整Debian中的时间:
1.date -s MM/DD/YY or date -s MM/DD/YYYY
   date -s HH:MM:SS
2.date -s  YYYY/MM/DD hh:mm:ss
其中第一种应该是所有流行linux版本通用的方式(至少redhat下也适用)

其次,利用date命令修改的是系统时间,需要将修改后的系统时间写入到CMOS中,防止下次启动系统时将修改的时间丢失,不同于redhat的clock命令,Debian使用的是hwclock命令,位置是/sbin/hwclock(hw是hardware的缩写?查了一下man,应该是)。
hwclock -w

如果想利用网络对时,可采用ntpdate套件(ntp指的是NTP协议)
ntpdate -s TimeServer

参考文献:
在Debian下修改时间

你可能感兴趣的:(Linux,debian,redhat,date,linux,网络)