天天看點

【linux指令詳解】檢視系統版本資訊uname

檢視發行版資訊:

[[email protected] ~]# cat /etc/issue

CentOS release 6.3 (Final)

Kernel \r on an \m

檢視系統版本資訊:uname -a

[[email protected] soft]# uname -a

Linux sd-ml-mx03.bj 2.6.32-279.el6.x86_64 #1 SMP Fri Jun 22 12:19:21 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux

uname其他參數說明:

-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

繼續閱讀