本篇文章给大家谈谈如何看linux红帽版本,以及查看linux红帽版本对应的知识点,希望对各位有所帮助,不要忘了收藏本站喔。
本文目录一览:
如何查看Linux操作系统版本
查看内核版本,用命令:uname -a
[root@~]# uname -a
Linux (主机名) 2.6.18-348.4.1.el5 #1 SMP Tue Apr 16 15:40:06 EDT 2013 x86_64 x86_64 x86_64 GNU/Linux
或:
#cat /proc/version #红帽系:
Linux version 2.6.18-348.4.1.el5 (mockbuild@builder10.centos.org) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-54)) #1 SMP Tue Apr 16 15:40:06 EDT 2013
#more /proc/version #Debain/Ubuntu系
Linux version 3.13.0-53-generic (buildd@phianna) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #89-Ubuntu SMP Wed May 20 10:34:39 UTC 2015
要看什么系统,在红帽系的Linux下,用命令:
#cat /etc/redhat-release
CentOS release 5.9 (Final)
或:
# cat /etc/issue
CentOS release 5.9 (Final)
Kernel \r on an \m
或:
# lsb_release -a #注:默认红帽系没有安装此命令,需要用yum手工安装
LSB Version: :core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-noarch
Distributor ID: CentOS
Description: CentOS release 5.9 (Final)
Release: 5.9
Codename: Final
在Debain/Ubuntu系的Linux下,用命令:
$ cat /etc/issue
Ubuntu 14.04.2 LTS \n \l
或:
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 14.04.2 LTS
Release: 14.04
Codename: trusty
red hat linux 如何查看版本
输入"uname -a ",可显示电脑以及操作系统的相关信息。
输入"cat /proc/version",说明正在运行的内核版本。
输入"cat /etc/issue", 显示的是发行版本信息
4
lsb_release -a (适用于所有的linux,包括Redhat、SuSE、Debian等发行版,但是在debian下要安装lsb)
更多更详细的Linux介绍如下图进行查询:
怎样查看linux操作系统版本
二。查看linux版本:
1) 登录到服务器执行 lsb_release -a ,即可列出所有版本信息,例如:
[root@SOR_SYS ~]# lsb_release -a
LSB Version: :core-4.0-amd64:core-4.0-ia32:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-ia32:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-ia32:printing-4.0-noarch
Distributor ID: RedHatEnterpriseAS
Description: Red Hat Enterprise Linux AS release 4 (Nahant Update 4)
Release: 4
Codename: NahantUpdate4
[root@SOR_SYS ~]#
注:这个命令适用于所有的linux,包括Redhat、SuSE、Debian等发行版。
2) 登录到linux执行cat /etc/issue,例如如下:
[root@SOR_SYS ~]# cat /etc/issue
Red Hat Enterprise Linux Server release 5.6 (Tikanga)
Kernel \r on an \m
[root@SOR_SYS ~]#
3) 登录到linux执行cat /etc/redhat-release ,例如如下:
[root@SOR_SYS ~]# cat /etc/redhat-release
Red Hat Enterprise Linux AS release 4 (Nahant Update 4)
[root@SOR_SYS ~]#
注:这种方式下可以直接看到具体的版本号,比如 AS4 Update 1
4)登录到linux执行rpm -q redhat-release ,例如如下:
[root@SOR_SYS ~]# rpm -q redhat-release
redhat-release-5Server-5.6.0.3
[root@SOR_SYS ~]#
注:这种方式下可看到一个所谓的release号,比如上边的例子是5
这个release号和实际的版本之间存在一定的对应关系,如下:
redhat-release-3AS-1 - Redhat Enterprise Linux AS 3
redhat-release-3AS-7.4 - Redhat Enterprise Linux AS 3 Update 4
redhat-release-4AS-2 - Redhat Enterprise Linux AS 4
redhat-release-4AS-2.4 - Redhat Enterprise Linux AS 4 Update 1
redhat-release-4AS-3 - Redhat Enterprise Linux AS 4 Update 2
redhat-release-4AS-4.1 - Redhat Enterprise Linux AS 4 Update 3
redhat-release-4AS-5.5 - Redhat Enterprise Linux AS 4 Update 4
另:第3)、4)两种方法只对Redhat Linux有效
5) [root@SOR_SYS ~]# file /bin/bash
/bin/bash: ELF 64-bit LSB executable, AMD x86-64, version 1 (SYSV), for GNU/Linux 2.6.9, dynamically linked (uses shared libs), for GNU/Linux 2.6.9, stripped
[root@SOR_SYS ~]#
6) [root@SOR_SYS ~]# file /bin/cat
/bin/cat: ELF 64-bit LSB executable, AMD x86-64, version 1 (SYSV), for GNU/Linux 2.6.9, dynamically linked (uses shared libs), for GNU/Linux 2.6.9, stripped
[root@SOR_SYS ~]#
如何查看linux版本
需要准备的材料分别是:电脑、linux连接工具。
1、首先连接上linux主机,进入等待输入指令的linux命令行状态。
2、输入:bash --version,按回车。
3、此时打印出的“version 4.2.46(1)-release”就是该shell的版本。
如何看linux红帽版本的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于查看linux红帽版本、如何看linux红帽版本的信息别忘了在本站进行查找喔。