关于linux:每天学一个-Linux-命令44uptime

32次阅读

共计 1071 个字符,预计需要花费 3 分钟才能阅读完成。

昨日举荐: 每天学一个 Linux 命令(43):dmesg

命令简介

uptime 命令用于显示零碎运行工夫及负载。

uptime 命令能够打印出零碎总共运行了多长时间和零碎的均匀负载。uptime 命令显示的信息显示顺次为:当初工夫、零碎曾经运行了多长时间、目前有多少登陆用户、零碎在过来的 1 分钟、5 分钟和 15 分钟内的均匀负载。

[root@centos7 ~]# uptime
 19:48:14 up 21:02,  1 user,  load average: 0.00, 0.01, 0.05

命令语法

uptime [options]

选项阐明

-p #以难看的格局显示失常运行工夫
-s #自系统启动来的工夫
-h #打印帮忙信息
-V #打印版本信息。

利用举例

[root@centos7 ~]# uptime -V
uptime from procps-ng 3.3.10
[root@centos7 ~]# uptime 
 19:50:29 up 21:04,  1 user,  load average: 0.03, 0.03, 0.05
 
[root@centos7 ~]# uptime -p
up 21 hours, 4 minutes
[root@centos7 ~]# uptime -s
2021-01-15 22:46:06
[root@centos7 ~]# uptime -h
Usage:
 uptime [options]
Options:
 -p, --pretty   show uptime in pretty format
 -h, --help     display this help and exit
 -s, --since    system up since
 -V, --version  output version information and exit
For more details see uptime(1).

文件寄存目录

/var/run/utmp #以后登录者的信息
[root@centos7 ~]# cat /var/run/utmp
~~~reboot3.10.0-1127.18.2.el7.x86_64????/vtty1tty1LOGINv `S3~~~runlevel3.10.0-1127.18.2.el7.x86_64 `pts/0ts/0root192.168.1.93????(]

每天学一个 Linux 命令(40):gzip

每天学一个 Linux 命令(41):zip

每天学一个 Linux 命令(42):unzip

正文完
 0