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

1.uptime命令

        uptime  gives a one line display of the following information.  The current time, how long the system has been running, how many users are currently logged on, and the system load averages for  the  past 1, 5, and 15 minutes.

uptime

输出:

16:11:40 up 59 days, 4:21, 2 users, load average: 0.00, 0.01, 0.00


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


        /proc/uptime
        This  file  contains  two  numbers: the uptime of the system (seconds), and the amount of time spent in idle process (seconds).

cat /proc/uptime
输出: 

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

date -d "$(awk -F. '{print $1}' /proc/uptime) second ago" +"%Y-%m-%d %H:%M:%S"

输出: 

2008-11-09 11:50:31


        还可算出系统运行总时间:

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)}'

输出:

系统已运行:59天4时13分9秒


转载:http://www.cnblogs.com/xd502djj/archive/2011/05/03/2035599.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值