博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux中常用的查看系统信息的命令
阅读量:5252 次
发布时间:2019-06-14

本文共 7273 字,大约阅读时间需要 24 分钟。

导读 Linux是一个神奇而又高效的操作系统,学完Linux对Linux系统有一个熟悉的了解后,你需要了解下这些实用的查看系统信息的命令。
查看系统版本命令
uname

谈到系统版本就一定会想到uname,查看系统内核版本

uname -参数

其他的什么-n -m -r 参数都忽略,直接-a

[root@linuxprobe ~]#uname -aLinux linuxprobe.com 2.6.32-358.el6.x86_64 #1 SMP Tue Jan 29 11:47:41 EST 2013 x86_64 x86_64 x86_64 GNU/Linux[root@linuxprobe ~]#

从uname中貌似确实看到了许多信息,但是好像并不是我想要的,没有哪个系统的哪个版本

lsb_release -a
[root@linuxprobe ~]# lsb_release -aLSB Version: :base-4.0-amd64:base-4.0-noarch:core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-noarchDistributor ID: RedHatEnterpriseServerDescription: Red Hat Enterprise Linux Server release 6.4 (Santiago)Release: 6.4Codename: Santiago[root@linuxprobe ~]#
cat /etc/issue
[root@linuxprobe ~]#cat /etc/issueRed Hat Enterprise Linux Server release 6.4 (Santiago)Kernel \r on an \m[root@linuxprobe ~]#
查看内存相关
free

一谈到Linux的内存就想到了一个命令free,在课本第2章 新手必须掌握的Linux命令中有对此的解释

[root@linuxprobe ~]# free             total       used       free     shared    buffers     cachedMem:       5228872     669360    4559512          0      28060     266936-/+ buffers/cache:     374364    4854508Swap:      4194296          0    4194296[root@linuxprobe ~]# free -m             total       used       free     shared    buffers     cachedMem:          5106        653       4452          0         27        260-/+ buffers/cache:        365       4740Swap:         4095          0       4095[root@linuxprobe ~]# free -g             total       used       free     shared    buffers     cachedMem:             4          0          4          0          0          0-/+ buffers/cache:          0          4Swap:            3          0          3[root@linuxprobe ~]#

很明显内存大小,使用多少,剩余多少,buffers和cached多少,以及swap情况一目了然,使用参数-m/-g 可以指定单位

查看cpu相关
uptime
[root@linuxprobe ~]# uptime 20:09:48 up 43 min,  3 users,  load average: 0.35, 0.25, 0.11    //系统的平均负载,1分钟,5分钟,15分钟
top

实时监控系统的cpu和内存,默认3s刷新一次

[root@linuxprobe ~]# toptop - 20:15:41 up 49 min,  3 users,  load average: 0.41, 0.38, 0.21Tasks: 236 total,   1 running, 235 sleeping,   0 stopped,   0 zombieCpu(s):  0.2%us,  0.5%sy,  0.0%ni, 98.8%id,  0.5%wa,  0.0%hi,  0.0%si,  0.0%stMem:   5228872k total,   671136k used,  4557736k free,    28324k buffersSwap:  4194296k total,        0k used,  4194296k free,   267360k cached   PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  COMMAND                         1 root      20   0 19360 1536 1224 S  0.0  0.0   0:05.37 init                             2 root      20   0     0    0    0 S  0.0  0.0   0:00.02 kthreadd                         3 root      RT   0     0    0    0 S  0.0  0.0   0:00.07 migration/0                      4 root      20   0     0    0    0 S  0.0  0.0   0:00.14 ksoftirqd/0                      5 root      RT   0     0    0    0 S  0.0  0.0   0:00.00 migration/0                      6 root      RT   0     0    0    0 S  0.0  0.0   0:00.01 watchdog/0                       7 root      RT   0     0    0    0 S  0.0  0.0   0:00.69 migration/1                      8 root      RT   0     0    0    0 S  0.0  0.0   0:00.00 migration/1                      9 root      20   0     0    0    0 S  0.0  0.0   0:00.10 ksoftirqd/1                     10 root      RT   0     0    0    0 S  0.0  0.0   0:00.00 watchdog/1                      11 root      RT   0     0    0    0 S  0.0  0.0   0:00.10 migration/2                     12 root      RT   0     0    0    0 S  0.0  0.0   0:00.00 migration/2                     13 root      20   0     0    0    0 S  0.0  0.0   0:00.01 ksoftirqd/2                     14 root      RT   0     0    0    0 S  0.0  0.0   0:00.00 watchdog/2                      15 root      RT   0     0    0    0 S  0.0  0.0   0:00.17 migration/3                     16 root      RT   0     0    0    0 S  0.0  0.0   0:00.00 migration/3                     17 root      20   0     0    0    0 S  0.0  0.0   0:00.06 ksoftirqd/3                     18 root      RT   0     0    0    0 S  0.0  0.0   0:00.00 watchdog/3                      19 root      20   0     0    0    0 S  0.0  0.0   0:00.41 events/0

cpu内存实时利用率以此为标准

查看cpu参数——文件 :/proc/cpuinfo
[root@linuxprobe ~]#  cat /proc/cpuinfo | grep "physical id" | uniq | wc -l2                                              //cpu个数[root@linuxprobe ~]# cat /proc/cpuinfo | grep "cpu cores" | uniqcpu cores	: 2                           //线程数[root@linuxprobe ~]# cat /proc/cpuinfo | grep 'model name' |uniqmodel name	: Intel(R) Core(TM) i5-3230M CPU @ 2.60GHz                                             //cpu型号参数
查看硬盘相关
df
[root@linuxprobe ~]# df文件系统	         1K-块      已用      可用 已用% 挂载点/dev/sda2             41284928    469040  38718736   2% /tmpfs                  2614436       224   2614212   1% /dev/shm/dev/sda1                99150     32504     61526  35% /boot/dev/sda6               516040     18016    471812   4% /home/dev/sda3              4128448   2542976   1375760  65% /usr[root@linuxprobe ~]# df -h                     //以简单的看得懂的方式显示文件系统	      容量  已用  可用 已用%% 挂载点/dev/sda2              40G  459M   37G   2% /tmpfs                 2.5G  224K  2.5G   1% /dev/shm/dev/sda1              97M   32M   61M  35% /boot/dev/sda6             504M   18M  461M   4% /home/dev/sda3             4.0G  2.5G  1.4G  65% /usr
fdisk -l
[root@linuxprobe ~]# fdisk -lDisk /dev/sda: 107.4 GB, 107374182400 bytes255 heads, 63 sectors/track, 13054 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk identifier: 0x000f0739   Device Boot      Start         End      Blocks   Id  System/dev/sda1   *           1          13      102400   83  LinuxPartition 1 does not end on cylinder boundary./dev/sda2              13        5235    41943040   83  Linux/dev/sda3            5235        5757     4194304   83  Linux/dev/sda4            5757       13055    58616832    5  Extended/dev/sda5            5757        6280     4194304   82  Linux swap / Solaris/dev/sda6            6280        6345      524288   83  Linux[root@linuxprobe ~]#  fdisk -l | grep DiskDisk /dev/sda: 107.4 GB, 107374182400 bytesDisk identifier: 0x000f0739[root@linuxprobe ~]#
iostat 查看硬盘读写速度
[root@linuxprobe ~]#  iostat -t 1 3                                     //1s一次,查看3次Linux 2.6.32-358.el6.x86_64 (twj.baidu.com) 	2016年06月07日 	_x86_64_	(4 CPU)2016年06月07日 20时40分03秒avg-cpu:  %user   %nice %system %iowait  %steal   %idle           0.17    0.06    0.74    0.84    0.00   98.19Device:            tps   Blk_read/s   Blk_wrtn/s   Blk_read   Blk_wrtnsda               8.34       273.82       136.61    1216528     6069042016年06月07日 20时40分04秒avg-cpu:  %user   %nice %system %iowait  %steal   %idle           0.00    2.10    9.97   13.12    0.00   74.80Device:            tps   Blk_read/s   Blk_wrtn/s   Blk_read   Blk_wrtnsda              89.00      3472.00     11208.00       3472      112082016年06月07日 20时40分05秒avg-cpu:  %user   %nice %system %iowait  %steal   %idle           0.00    1.99   14.35    9.05    0.00   74.61Device:            tps   Blk_read/s   Blk_wrtn/s   Blk_read   Blk_wrtnsda              66.13      1464.52      9800.00       1816      12152

免费提供最新Linux技术教程书籍,为开源技术爱好者努力做得更多更好:https://www.linuxprobe.com/

转载于:https://www.cnblogs.com/linuxprobe/p/5590366.html

你可能感兴趣的文章
nyoj--523--亡命逃窜(BFS水题)
查看>>
lightoj 1408 Batting Practice
查看>>
poj 2001 Shortest Prefixes
查看>>
http://doc.okbase.net/congcong68/archive/112508.html
查看>>
Eclipse安装Eclipse Memory Analyzer插件
查看>>
【CITE】 C#中实现拖动无边框Form窗体
查看>>
类中代码执行顺序 及 组合
查看>>
如何判断一个Div是否在可视区域,判断div是否可见
查看>>
AJAX异步学习总结(1)
查看>>
php URL判断
查看>>
GAN——生成手写数字
查看>>
python中的pil模块_在Python中使用PIL模块处理图像的教程
查看>>
hashmap java 便利_Java中HashMap的四种遍历方法,及效率比较
查看>>
850是什么意思_楼板没有挠度和裂缝的计算结果原因是什么?
查看>>
华为v8支持云闪付吗_华为EMUI11将正式推送,37款机型计划升级,你的手机支持吗?...
查看>>
java快速开发框架_Java 后台开发框架
查看>>
go 切片 转字符串_Go语言爱好者周刊:第 58 期—关于 context
查看>>
android authorities 获取_挖穿Android第三十九天
查看>>
elementui展示多张图片_多张图片的PPT,如何排版的更有创意?
查看>>
中亿验钞机升级_新版人民币来了,可验钞机却无法识别?工作人员回应了
查看>>