檢視Linux版本系統資訊方法彙總

heqiuyu發表於2014-04-05
Linux下如何檢視版本資訊, 包括位數、版本資訊以及CPU核心資訊、CPU具體型號等等,整個CPU資訊一目瞭然。
 
  1、# uname -a   (Linux檢視版本當前作業系統核心資訊)
 
  Linux localhost.localdomain 2.4.20-8 #1 Thu Mar 13 17:54:28 EST 2003 i686 athlon i386 GNU/Linux
 
  2、# cat /proc/version (Linux檢視當前作業系統版本資訊)
 
      Linux version 2.4.20-8 (bhcompile@porky.devel.redhat.com)
      (gcc version 3.2.2 20030222 (Red Hat Linux 3.2.2-5)) #1 Thu Mar 13 17:54:28 EST 2003
 
  3、# cat /etc/issue  或cat /etc/redhat-release(Linux檢視版本當前作業系統發行版資訊)
 
  Red Hat Linux release 9 (Shrike)

  4、# cat /proc/cpuinfo (Linux檢視cpu相關資訊,包括型號、主頻、核心資訊等)
 
  processor        : 0
     vendor_id         : AuthenticAMD
  cpu family        : 15
  model             : 1
  model name      : AMD A4-3300M APU with Radeon(tm) HD Graphics
  stepping         : 0
  cpu MHz          : 1896.236
  cache size       : 1024 KB
  fdiv_bug         : no
  hlt_bug          : no
  f00f_bug        : no
  coma_bug      : no
  fpu                : yes
  fpu_exception   : yes
  cpuid level      : 6
  wp                : yes
  flags             : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr
                           sse sse2 syscall mmxext lm 3dnowext 3dnow
  bogomips      : 3774.87
 
  5、# getconf LONG_BIT  (Linux檢視版本說明當前CPU執行在32bit模式下, 但不代表CPU不支援64bit)
 
  32
 
  6、# lsb_release -a

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7719012/viewspace-1136530/,如需轉載,請註明出處,否則將追究法律責任。

相關文章