# Linux 系统信息

# 一、查看 Linux 内核版本命令(两种方法):

1、cat /proc/version

[root@localhost ~]# cat /proc/version
Linux version 2.6.18-194.8.1.el5.centos.plus (mockbuild@builder17.centos.org) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-48)) #1 SMP Wed Jul 7 11:50:45 EDT 2010
1
2

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
1
2

# 二、查看 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
1
2
3
4
5
6

这个命令适用于所有的 Linux 发行版,包括 Redhat、SuSE、Debian…等发行版。 2、cat /etc/redhat-release // 只适合 Redhat 系的 Linux

[root@localhost ~]# cat /etc/redhat-release
CentOS release 5.5 (Final)
1
2

3、cat /etc/issue // 适用于所有的 Linux 发行版

[root@localhost ~]# cat /etc/issue
CentOS release 5.5 (Final)
Kernel \r on an \m
1
2
3