码迷,mamicode.com
首页 > 系统相关 > 详细

Linux下如何查看系统启动时间和运行时间

时间:2014-12-18 16:49:03      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   sp   strong   on   文件   div   

对于一些人来说系统运行了多久是无关紧要的,但是对于服务器管理员来说,这是相当重要的信息。服务器在运行重要应用的时候,

必须尽量保证长时间的稳定运行,有时候甚至要求零宕机。那么我们怎么才能知道服务器运行了多久呢?在linux系统中可用如下几种方法去查询。

1.uptime命令

bubuko.com,布布扣

2.查看/proc/uptime文件计算系统启动时间
bubuko.com,布布扣
第一数字即是系统已运行的时间为3563285.42秒,第二个参数是代表系统空闲的时间为24291640.22秒。运用系统工具date即可算出系统启动时间

[root@5201351 ~]# date -d "$(awk -F. ‘{print $1}‘ /proc/uptime) second ago" +"%Y-%m-%d %H:%M:%S"

执行以上命令输出: 2014-11-07 09:50:10

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

[root@5201351 ~]# cat /proc/uptime| awk -F. {run_days=$1 / 86400;run_hour=($1 % 86400)/3600;run_minute=($1 % 3600)/60;run_second=$1 % 60;printf("系统已运行:%d天%d时%d分%d秒",run_days,run_hour,run_minute,run_second)}

执行以上命令输出:系统已运行:41天5时48分5秒

Linux下如何查看系统启动时间和运行时间

标签:style   blog   http   color   sp   strong   on   文件   div   

原文地址:http://www.cnblogs.com/5201351/p/4171939.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!