linux设置系统时间命令,可以直接在终端输入这两个指令,就可以立即更新系统时间
date -s “yyyy-mm-dd HH:MM:SS”
date -s “2023-04-13 12:00:00”
date查看当前是否修改对
如果要每次开机,进行时间同步,将这个指令放到系统启动脚本里,每次开机都执行
计算某个程序,某个指令的运行时间,如进行镜像验签时,统计 ,计算文件hash值的时间
sha512starttime=`date +"%S.%N"`
/usr/bin/sha512sum platform_service_39_ext4.img
sha512endtime=`date +"%S.%N"`
echo "sha512 total time : $sha512endtime $sha512starttime" >> /mnt/time.txt
sha512starttime=`date +"%Y-%m-%d %H:%M:%S.%N"`
/usr/bin/sha512sum platform_service_39_ext4.img
sha512endtime=`date +"%Y-%m-%d %H:%M:%S.%N"`
sha512totaltime=$(($sha512endtime - $sha512starttime))
echo "sha512 total time : $sha512totaltime" >>/mnt/time.txt