linux 查看系统安装时间

linux 查看系统安装时间,第1张

在windows下查看系统安装时间是很方便的。在linux下,由于root、bin、daemon等账号就是在系统安装时创建的,因此这些帐号的创的时间基本上就是 Linux 系统的安装时间:

[root@centos5 ~]# passwd -S root

[root@centos5 ~]# passwd -S bin

[root@centos5 ~]# passwd -S daemon

Linux查看系统时间命令:

1、系统硬件时间:

hwclock  -r

2、系统时间

date

硬件时钟可以理解为主板时钟,系统时间会在重启时去同步主板时间

用cstlib函数time,比如

#include <iostream>

#include <cstlib>

using namespace std;

int main()

{

int t, h, m, s;

t = time( 0 );

t = t % 86400;

s = t % 60;

t = ( t - s ) / 60;

m = t % 60;

t = ( t - m ) / 60;

h = t;

cout << "现在是" << h << ":" << m << ":" << s << endl;

return 0;

}

即可显示

1,$HOME/getdatesh,内容如下:

#!/bin/bash

DATE=/bin/date

$DATE +"%F %T" >>$HOME/date_loglog

2 $HOME/call_gdsh,内容如下

#!/bin/bash

SH=/bin/sh

${SH} $HOME/getdatesh

1uptime命令

输出: 16:11:06 up 4:19, 4 users, load average: 1344, 1348, 1393

2查看/proc/uptime文件计算系统启动时间

cat /proc/uptime

输出: 1560161 2783092

第一数字即是系统已运行的时间秒数,运用系统工具date即可算出系统启动时间

3查看/proc/uptime文件计算系统运行时间

cat /proc/uptime| awk -F '{run_days= 1 % 86400)/3600;run_minute=( 1 % 60;printf("系统已运行:%d天%d时%d分%d秒",run_days,run_hour,run_minute,run_second)}'

以上就是关于linux 查看系统安装时间全部的内容,包括:linux 查看系统安装时间、如何查看linux服务器的时间、linux c++ 如何获取 系统时间等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/10136724.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-05
下一篇 2023-05-05

发表评论

登录后才能评论

评论列表(0条)

保存