linux查看系统信息软件安装信息命令学习笔记

查看LINUX安装版本

  
  
  
  
  1. [root@localhost etc]# uname 
  2. Linux 
  3. [root@localhost etc]# uname -a 
  4. Linux localhost.localdomain 2.6.32-279.11.1.el6.i686 #1 SMP Tue Oct 16 14:40:53 UTC 2012 i686 i686 i386 GNU/Linux 
  5. [root@localhost etc]# cat /proc/version 
  6. Linux version 2.6.32-279.11.1.el6.i686 ([email protected]) (gcc version 4.4.6 20120305 (Red Hat 4.4.6-4) (GCC) ) #1 SMP Tue Oct 16 14:40:53 UTC 2012 



查看apache是否安装,路径

  
  
  
  
  1. [root@localhost httpd-2.0.64]# rpm -qa httpd 
  2. httpd-2.2.15-15.el6.centos.1.i686 
  3.  
  4. [root@localhost httpd-2.0.64]# whereis httpd 
  5. httpd: /usr/sbin/httpd.event /usr/sbin/httpd /usr/sbin/httpd.worker /etc/httpd /usr/lib/httpd /usr/share/man/man8/httpd.8.gz 
  6.  
  7. [root@localhost httpd-2.0.64]# find / -name httpd -print 
  8. /date/web/httpd-2.0.64/httpd 
  9. /date/web/httpd-2.0.64/.libs/httpd 
  10. /usr/sbin/httpd 
  11. /usr/local/apache2/bin/httpd 
  12. /usr/lib/httpd 
  13. ^C 
  14. [root@localhost httpd-2.0.64]# ps -ef 
  15. UID        PID  PPID  C STIME TTY          TIME CMD 
  16. root         1     0  0 17:27 ?        00:00:01 /sbin/init 
  17. root         2     0  0 17:27 ?        00:00:00 [kthreadd] 
  18. root         3     2  0 17:27 ?        00:00:00 [migration/0] 
  19. root         4     2  0 17:27 ?        00:00:00 [ksoftirqd/0] 
  20. root         5     2  0 17:27 ?        00:00:00 [migration/0] 
  21. root         6     2  0 17:27 ?        00:00:00 [watchdog/0] 
  22. root         7     2  0 17:27 ?        00:00:00 [migration/1] 
  23. root         8     2  0 17:27 ?        00:00:00 [migration/1] 


坦率的说,这要看你是如何安装的啦!
1.rpm包形式(包括yum安装)可以
rpm -aq|grep http                         #查看是否安装了apache的包
rpm -qi   输入上一步获取的包名         #了解一下这个apache包的信息
rpm -ql   输入包名                           #此apache包中所有文件安装的位置

2,tarball等安装
whereis  httpd                               #http文件的位置

查看CPU型号

  
  
  
  
  1. [root@xiaoqi etc]# cat /proc/cpuinfo |grep "name" |cut -f2 -d: |uniq -c 
  2.       2  Intel(R) Pentium(R) Dual  CPU  T2370  @ 1.73GHz 

查看物理CPU个数

  
  
  
  
  1. [root@xiaoqi etc]# cat /proc/cpuinfo |grep "physical"|sort |uniq -c 
  2.       2 address sizes   : 36 bits physical, 48 bits virtual 
  3.       2 physical id : 0 

查看CPU在多少位模式下面

  
  
  
  
  1. [root@xiaoqi etc]# getconf LONG_BIT 
  2. 32 

下面的结果大于0说明支持64位

  
  
  
  
  1. [root@xiaoqi etc]# cat /proc/cpuinfo |grep flags |grep 'lm' |wc -l 

查看系统物理内存

  
  
  
  
  1. [root@xiaoqi etc]# free -m 
  2.              total       used       free     shared    buffers     cached 
  3. Mem:          2901        901       2000          0        109        447 
  4. -/+ buffers/cache:        344       2557 
  5. Swap:         5999          0       5999 

查看服务器安装的是哪个安装版本

  
  
  
  
  1. [root@xiaoqi etc]# cat /etc/redhat-release 
  2. CentOS release 6.3 (Final) 

查看OS版本是64位还是32位

  
  
  
  
  1. [root@xiaoqi etc]# uname -a 
  2. Linux xiaoqi 2.6.32-279.14.1.el6.i686 #1 SMP Tue Nov 6 21:05:14 UTC 2012 i686 i686 i386 GNU/Linux 

查看服务器硬件信息

  
  
  
  
  1. [root@xiaoqi etc]# dmidecode |grep Vendor 
  2.     Vendor: Gateway 

服务器型号

  
  
  
  
  1. [root@xiaoqi etc]# dmidecode |grep Product 
  2.     Product Name: T-6331c 
  3.     Product Name:  

 

你可能感兴趣的:(linux,学习)