Linux:date\clock日期时间

  • 显示系统时间 
    date

  • 显示硬件(主板)时间 
    clock 
    hwclock

  • 设置时间 
    如:2016年9月16日11点11分6秒 
    则:date 091611112016.06

  • 显示UTC格林尼治时间 
    date --utc

  • 显示时间 年-月-日 
    date +%Y-%m-%d

  • 显示时间 时-分-秒 
    date +%H-%M-%S

  • 显示1970-1-1到现在的秒(Linux系统诞生的时间) 
    date +%s

  • 显示1234567890秒对应时间并以年-夜-日 时:分:秒 显示 
    date -d @1234567890 "+%Y-%m-%d %H:%M:%S"

  • 显示昨天时间 
    date -d "yesterday" 
    date -d "-1day"

  • 以硬件时钟为准,校正系统时钟 
    clock -s 
    clock --hctosys

  • 以系统时钟为准,校正硬件时钟 
    clock -w 
    clock --systohc

  • 与某个IP地址时间同步 
    ntpdate xxx.xxx.xxx.xxx

  • 日历 
    cal 
    cal -y 
    cal -2008

  • 修改时区命令 
    tzselect 
    时区文件:/etc/localtime

  • rpm -qa|grep chrony 查看是否安装
    
    yum install chrony  安装chrony
    
    timedatectl 查看NTP服务是否开启
    
    systemctl enable chronyd.service 开启chrony服务
    
    vim /etc/chrony.conf
    server server.group8.example.com iburst
    
    chronyc
    >waitsync
    
    


     

你可能感兴趣的:(Linux)