查看linux内核版本命令

1) [root@q1test01 ~]# cat /proc/version 
 
   Linux version 2.6.9-22.ELsmp (bhcompile@crowe.devel.redhat.com) (gcc version 3.4.4 20050721 (Red Hat 3.4.4-2)) #1 SMP Mon Sep 19 18:00:54 EDT 2005 
 
  2) [root@q1test01 ~]# uname -a 
 
  Linux q1test01 2.6.9-22.ELsmp #1 SMP Mon Sep 19 18:00:54 EDT 2005 x86_64 x86_64 x86_64 GNU/Linux 
 
  3) [root@q1test01 ~]# uname -r 
 
  2.6.9-22.ELsmp 
 
 
---------------------------------------
linux下查看内存的命令
top能显示系统内存。我们常用的Linux下查看内容的专用工具是free命令。
 
下面是对内存查看free命令输出内容的解释:
total:总计物理内存的大小。
used:已使用多大。
free:可用有多少。
Shared:多个进程共享的内存总额。
Buffers/cached:磁盘缓存的大小。
 
提问者评价 谢谢
原文地址:https://www.cnblogs.com/huapox/p/3516178.html