如何查看linux版本,内核版本,系统位数

2024-11-16 00:05:09
推荐回答(2个)
回答1:

方法1
对于linux系统而已,有成百上千个发行版。对于发行版的版本号查看方法
如以centos为例。输入lsb_release -a即可
该命令适用于所有的linux,包括Redhat、SuSE、Debian等发行版

方法2
如果如上图,没有这个命令
可以通过查看 Cat /etc/xxx-release XX为发行版名称。如 centos-release

方法3.
也可以通过查看/etc/issue文件查看发行版版本号

查看系统内核版本
对于不同的发行版而言,很多版本的内核都是一样的。具体查看方

方法1
Uname -r查看系统内核版本
如 2.6.32-358.el6.x86_64 表示最新的内核为2.6.32

方法2
通过查看内核版本号文件,如 more /proc/version

其他操作系统信息

同样对于Linux系统而言也有32和64位之分
用上述查看内核方法,输入
Uname -a 或 more /proc/version
在内核版本后面会有一个X86_64就是表示64为系统啦

Yum更新版本查询
除此之外对于使用yum更新的系统,还可以通过输入yum info 查看当前更新到的系统版本号。

回答2:

一、查看内核
1、cat /proc/version
[root@localhost ~]# cat /proc/version
Linux version 2.6.18-308.el5 (mockbuild@x86-010.build.bos.redhat.com) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-50)) #1 SMP Fri Jan 27 17:21:15 EST 2012
2、uname -a
[root@localhost ~]# uname -a
Linux localhost.localdomain 2.6.18-308.el5 #1 SMP Fri Jan 27 17:21:15 EST 2012 i686 i686 i386 GNU/Linux
3、uname -r
[root@localhost ~]# uname -r
2.6.18-308.el5
二、查看linux版本
1、lsb_release -a
[root@localhost ~]# lsb_release -a
LSB Version: :core-4.0-ia32:core-4.0-noarch:graphics-4.0-ia32:graphics-4.0-noarch:printing-4.0-ia32:printing-4.0-noarch
Distributor ID: RedHatEnterpriseServer
Description: Red Hat Enterprise Linux Server release 5.8 (Tikanga)
Release: 5.8
Codename: Tikanga
2、cat /etc/issue
[root@localhost ~]# cat /etc/issue
Red Hat Enterprise Linux Server release 5.8 (Tikanga)
Kernel \r on an \m
3、cat /etc/redhat-release
[root@localhost ~]# cat /etc/redhat-release
Red Hat Enterprise Linux Server release 5.8 (Tikanga)
三、查看系统位数
1、file /bin/ls
2、lsb_release -a