linux 發行版本資訊的檢視

pingley發表於2012-03-12
linux 發行版本資訊的檢視
uname 用於顯示系統的詳細資訊。
[oracle@zeng ~]$ uname -a
Linux zeng 2.6.32-71.el6.i686 #1 SMP Wed Dec 15 09:50:18 EST 2010 i686 i686 i386 GNU/Linux
-a 表示所有的資訊。
輸出資訊解釋
核心名稱:Linux 
主機名稱:zeng 
核心版本:2.6.32-71.el6.i686
作業系統發行版本:#1 SMP Wed Dec 15 09:50:18 EST 2010
硬體型別:i686
處理器型別:i686
硬體平臺:i386
作業系統名:GNU/Linux
--help 列印幫助資訊。
[oracle@zeng ~]$ uname --help
Usage: uname [OPTION]...
Print certain system information.  With no OPTION, same as -s.

  -a, --all                print all information, in the following order,
                             except omit -p and -i if unknown:
  -s, --kernel-name        print the kernel name
  -n, --nodename           print the network node hostname
  -r, --kernel-release     print the kernel release
  -v, --kernel-version     print the kernel version
  -m, --machine            print the machine hardware name
  -p, --processor          print the processor type or "unknown"
  -i, --hardware-platform.  print the hardware platform. or "unknown"
  -o, --operating-system   print the operating system
      --help     display this help and exit
      --version  output version information and exit
檢視核心版本,在安裝資料庫等軟體的時候經常用到。
[oracle@zeng ~]$ uname -r
2.6.32-71.el6.i686
也可以透過檢視虛擬檔案 /proc/version 來檢視系統的版本資訊。
[oracle@zeng ~]$ cat /proc/version
Linux version 2.6.32-71.el6.i686 (mockbuild@ca-build19.us.oracle.com) 
(gcc version 4.4.4 20100726 (Red Hat 4.4.4-13) (GCC) ) 
#1 SMP Wed Dec 15 09:50:18 EST 2010

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

相關文章