日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網為廣大站長提供免費收錄網站服務,提交前請做好本站友鏈:【 網站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

uname 命令的輸出就可以獲取這些信息,但這些信息都是什么,它告訴了你什么?

在這篇文章中,我們將仔細看看 uname 命令的輸出,以及一些其他命令和文件提供的版本描述。

使用 uname

每當你在linux系統終端窗口中發出uname -a命令時,就會顯示很多信息。 事實上,每一塊顯示的信息都會告訴你一些關于系統的不同信息。

uname -a命令=uname -snmrvpio
Linux parallels 3.10.0-862.11.6.el7.x86_64 #1 SMP Tue Aug 14 21:49:04 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
通過help命令可以看到詳細的說明
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

現在我們通過一個shell來展示下各個的對應關系:

# for option in s n m r v p i o; do echo -n "$option: "; uname -$option; done
s: Linux 
n: parallels
m: x86_64
r: 3.10.0-862.11.6.el7.x86_64
v: #1 SMP Tue Aug 14 21:49:04 UTC 2018
p: x86_64
i: x86_64
o: GNU/Linux
////////////////////////////////////////////////////////////////
需要注意r: 3.10.0-862.11.6.el7.x86_64這個內核版本
3是內核版本
10表示主要修訂
0表示小修
862代表最新的補丁
#1表示這個版本已經編譯了1次(v: #1 SMP Tue Aug 14 21:49:04 UTC 2018)
////////////////////////////////////////////////////////////////

如果你需要知道你正在運行的發行版是什么版本,uname的輸出不會給你太多幫助。內核版本畢竟和發行版不一樣。為了獲得這些信息,你可以在 Ubuntu 和其他基于 Debian 的系統上使用 lsb_release -r 命令,并顯示 Red Hat 的 /etc/redhat-release 文件的內容。

舉例在各個系統下命令

Red Hat or centos systems
# uname -a
Linux parallels 3.10.0-862.11.6.el7.x86_64 #1 SMP Tue Aug 14 21:49:04 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
# lsb_release -a
LSB Version:	:core-4.1-amd64:core-4.1-noarch:cxx-4.1-amd64:cxx-4.1-noarch:desktop-4.1-amd64:desktop-4.1-noarch:languages-4.1-amd64:languages-4.1-noarch:printing-4.1-amd64:printing-4.1-noarch
Distributor ID:	CentOS
Description:	CentOS Linux release 7.5.1804 (Core)
Release:	7.5.1804
Codename:	Core
# lsb_release -r
Release:	7.5.1804
# cat /etc/redhat-release
CentOS Linux release 7.5.1804 (Core)
For Debian systems:
$ lsb_release -r
Release: 20.04
For Red Hat and related systems:
$ cat /etc/redhat-release
Red Hat Enterprise Linux release 8.1 Beta (Ootpa)
Using /proc/version
The /proc/version file can also provide information on your Linux release. The information provided in this file has a lot in common with the uname -a output. Here are some examples.
On Ubuntu:
$ cat /proc/version
Linux version 5.4.0-37-generic (buildd@lcy01-amd64-001) (gcc version 9.3.0 (Ubuntu 9.3.0-10ubuntu2)) #41-Ubuntu SMP Wed Jun 3 18:57:02 UTC 2020
On RedHat:
$ cat /proc/version
Linux version 4.18.0-107.el8.x86_64 (mockbuild@x86-vm-09.build.eng.bos.redhat.com) (gcc version 8.3.1 20190507 (Red Hat 8.3.1-4) (GCC)) #1 SMP Fri Jun 14 13:46:34 UTC 2019

下面是macOS系統的

macOS系統
 Show operating system name and more
?  ~ uname -a
Darwin Mac 19.6.0 Darwin Kernel Version 19.6.0: Thu Jun 18 20:49:00 PDT 2020; root:xnu-6153.141.1~1/RELEASE_X86_64 x86_64 i386 MacBookPro15,1 Darwin
Show Mac OS X operating system version
?  ~ sw_vers
ProductName:	Mac OS X
ProductVersion:	10.15.6
BuildVersion:	19G2021
Show Apple hardware and software configuration
?  ~ system_profiler 獲取的信息量比較大,需要自己提取
system_profiler SPSoftwareDataType
Software:
    System Software Overview:
      System Version: macOS 10.15.6 (19G2021)
      Kernel Version: Darwin 19.6.0
      Boot Volume: Macintosh HD
      Boot Mode: Normal
      Computer Name: Mac
      User Name: 隱藏哈
      Secure Virtual Memory: Enabled
      System Integrity Protection: Disabled
      Time since boot: 3 days 23:53

 

如何獲取Linux或者macOS系統版本相關信息

 

分享到:
標簽:相關信息 版本
用戶無頭像

網友整理

注冊時間:

網站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網站吧!
最新入駐小程序

數獨大挑戰2018-06-03

數獨一種數學游戲,玩家需要根據9

答題星2018-06-03

您可以通過答題星輕松地創建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數有氧達人2018-06-03

記錄運動步數,積累氧氣值。還可偷

每日養生app2018-06-03

每日養生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定