Ⅰ linux系統怎麼查看版本號
一、查看linux內核版本號
1:登錄linux,在終端輸入 cat /proc/version
2:登錄linux,在終端輸入 uname -a 即列出linux的內核版本號 。
3: 在Linux終端輸入 unmae -a 即可查看linux的內核版本號。三種方法執行效果如下圖所示:
Ⅱ 如何查看linux系統的版本號
一、查看Linux內核版本命令(兩種方法):
1、cat /proc/version
[root@localhost ~]# cat /proc/version
Linux version 2.6.18-194.8.1.el5.centos.plus ([email protected]) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-48)) #1 SMP Wed Jul 7 11:50:45 EDT 2010
2、uname -a
[root@localhost ~]# uname -a
Linux localhost.localdomain 2.6.18-194.8.1.el5.centos.plus #1 SMP Wed Jul 7 11:50:45 EDT 2010 i686 i686 i386 GNU/Linux
二、查看Linux系統版本的命令(3種方法):
1、lsb_release -a,即可列出所有版本信息:
[root@localhost ~]# lsb_release -a
LSB Version: :core-3.1-ia32:core-3.1-noarch:graphics-3.1-ia32:graphics-3.1-noarch
Distributor ID: CentOS
Description: CentOS release 5.5 (Final)
Release: 5.5
Codename: Final
這個命令適用於所有的Linux發行版,包括Redhat、SuSE、Debian…等發行版。
2、cat /etc/redhat-release,這種方法只適合Redhat系的Linux:
[root@localhost ~]# cat /etc/redhat-release
CentOS release 5.5 (Final)
3、cat /etc/issue,此命令也適用於所有的Linux發行版。
[root@localhost ~]# cat /etc/issue
CentOS release 5.5 (Final)
Kernel \r on an \m
Ⅲ 如何查看linux版本
需要准備的材料分別是:電腦、linux連接工具。
1、首先連接上linux主機,進入等待輸入指令的linux命令行狀態。
Ⅳ 如何查看linux系統版本
一、查看linux系統發行版本
命令1:lsb_release -a
該命令適用於所有Linux系統,會顯示出完整的版本信息,包括Linux系統的名稱,如Debian、Ubuntu、CentOS等,和對應的版本號,以及該版本的代號,例如在Debian 8中將會顯示代號jessie。
$ lsb_release -a
No LSB moles are available.
Distributor ID: Debian
Description: Debian GNU/Linux 8.0 (jessie)
Release: 8.0
Codename: jessie
命令2:cat /etc/issue
該命令適用於所有Linux系統,顯示的版本信息較為簡略,只有系統名稱和對應版本號。
$ cat /etc/issue
Debian GNU/Linux 8 1
命令3:cat /etc/redhat-release
該命令僅適用於Redhat系列的Linux系統,顯示的版本信息也較為簡略。
$ cat /etc/redhat-release
CentOS release 6.0 (Final)
二、查看Linux內核版本
命令1:uname -a
$ uname -a
Linux CodeBelief 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt9-3~deb8ul (2015-04-24) x86_64 GNU/Linux
命令2:cat /proc/version
$ cat /proc/version
Linux version 3.16.0-4-amd64 ([email protected]) (gcc version 4.8.4 (Debian 4.8.4-1) ) #1 SMP Debian 3.16.7-ckt9-3~deb8ul (2.15-04-24)
Ⅳ linux怎麼查看系統版本
linux怎麼查看系統版本呢,下面就讓我們來看看吧。