㈠ linux的版本號的具體方面
linux內核有兩種:穩定的和處於開發中的。穩定的內核具有工業級的強度,可以廣泛的應用和部署。新推出的穩定內核大部分都只是修正了一些bug或是加入了一些新的設備驅動程序。相反的,處於開發中的內核中許多東西變化的都很快。而且由於開發者不斷實驗新的解決方案,內核常常發生劇烈的變化。
linux通過一個簡單的命名機制來區分穩定的和處於開發中的內核。如2.6.0 ,主板號為2,從版本號為6,修訂版號為0。這種機制使用三個「.」分隔的數字來代表不同的內核。從版本號還可以反應出該內核是一個穩定版本還是一個粗語開發中的版本:該數字如果是偶數就是穩定版,如果是奇數就是開發版。2.6.0,它就是一個穩定版本頭兩個數字在一起描述了「內核系列」-----這個例子中就是2.6版內核系列。
處於開發中的內核一般要經歷幾個階段。例如,1.3系列的開發版穩定在2.0,而2.5穩定在2.6
㈡ 如何查看linux版本
一、查看linux內核版本號
1:登錄linux,在終端輸入 cat /proc/version
2:登錄linux,在終端輸入 uname -a 即列出linux的內核版本號 。
3: 在Linux終端輸入 unmae -a 即可查看linux的內核版本號。三種方法執行效果如下圖所示:
㈢ 怎樣在Linux中查看軟體的版本號
這個是非常簡單的,請直接使用命令查看。具體是:rpm -qa | grep xxx 。其中xxx就是你要看的軟體的名稱。舉個例子,我使用命令:rpm -qa | grep samba查看samba的版本,結果是:
samba-winbind-3.0.26a-3
yast2-samba-server-2.15.7-57
yast2-samba-client-2.15.11-33
samba-client-3.0.26a-3
samba-3.0.26a-3
可以看到和samba相關的軟體的版本,後面的那個數字就是版本號了。
㈣ 如何查看linux版本的型號
Linux系統如何查看版本信息
1、查看當前操作系統內核信息
uname -a
$ uname -a
Linux vm-web 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
2、查看當前操作系統版本信息
cat /proc/version
$ cat /proc/version
Linux version 3.10.0-693.21.1.el7.x86_64 ([email protected]) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-16) (GCC) ) #1 SMP Wed Mar 7 19:03:37 UTC 2018
3、查看當前操作系統發行版信息
cat /etc/issue 或 cat /etc/redhat-release
$ cat /etc/issue
\S
Kernel \r on an \m
$ cat /etc/redhat-release
CentOS Linux release 7.4.1708 (Core)
4、查看cpu相關信息,包括型號、主頻、內核信息等
cat /proc/cpuinfo
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2660 0 @ 2.20GHz
stepping : 7
microcode : 0xffffffff
cpu MHz : 2199.998
cache size : 20480 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
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 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology eagerfpu pni pclmulqdq ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx hypervisor lahf_lm xsaveopt
bogomips : 4399.99
clflush size : 64
cache_alignment : 64
address sizes : 44 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2660 0 @ 2.20GHz
stepping : 7
microcode : 0xffffffff
cpu MHz : 2199.998
cache size : 20480 KB
physical id : 0
siblings : 2
core id : 1
cpu cores : 2
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 13
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 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology eagerfpu pni pclmulqdq ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx hypervisor lahf_lm xsaveopt
bogomips : 4399.99
clflush size : 64
cache_alignment : 64
address sizes : 44 bits physical, 48 bits virtual
power management:
5、列出所有版本信息
lsb_release -a
$ lsb_release -a
-bash: lsb_release: command not found
出現command not found說明沒安裝lsb_realease,可以執行命令yum install -y redhat-lsb安裝lsb_realease,安裝完成後,版本信息如下:
$ 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.4.1708 (Core)
Release: 7.4.1708
Codename: Core
㈤ Linux系統的版本號是什麼回事
不知道你具體想了解什麼。
不同的Linux發行版系統的版本號有自己的版本命名方法,常見的Ubuntu採用年份+月份作為版本號。還有採用自然序數,如Debian,Fedora,Mint,openSUSE等,數字越大,版本越新。
㈥ 如何查看Linux內核版本及發行版本
1、打開Linux面板。
㈦ Linux有哪幾種版本號
他的版本號分為兩種:內核版本和發行版。推薦一下 希賽網.上很多Linux資料可看