Shell中uname命令查看系统内核、版本
生活随笔
收集整理的這篇文章主要介紹了
Shell中uname命令查看系统内核、版本
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
uname命令
描述
用于打印內核名稱和版本、主機名等系統信息。
用法
uname [OPTION]...
參數 用法
-a print all information -s print the kernel name -n print the network node hostname -r print the kernel release -v print the kernel version -m print the machine hardware name -p print the processor type or “unknown” -i print the hardware platform or “unknown” -o print the operating system
默認uname命令只打印內核的名稱
[root@test ~]# uname Linux
只打印系統的主機名(與hostname命令相同)
[root@test ~]# uname -n test.xuptip.com
打印內核版本信息
[root@test ~]# uname -r 3.10.0-123.el7.x86_64
打印系統的硬件名稱
[root@test ~]# uname -m x86_64
打印系統的處理器類型的信息
[root@test ~]# uname -p x86_64
打印系統的硬件平臺信息
[root@test ~]# uname -i x86_64
打印上述所有信息
[root@test ~]# uname -a Linux test.xuptip.com 3.10.0-123.el7.x86_64 #1 SMP Mon May 5 11:16:57 EDT 2014 x86_64 x86_64 x86_64 GNU/Linux
總結
以上是生活随笔為你收集整理的Shell中uname命令查看系统内核、版本的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 智能家居常用WiFi模块
- 下一篇: touch事件详解【译文】