查看Linux系统版本命令

735 阅读1分钟

一、查看linux内核版本的命令:

方法1:

cat /proc/version

image.png

方法2:

uname -a

image.png

二、查看Linux系统版本的命令

方法1:

lsb_release -a

image.png

LSB是Linux Standard Base的缩写,lsb_release命令用来显示LSB和特定版本的相关信息。使用该命令即可列出所有版本信息,这个命令适用于所有的Linux发行版,包括RedHat、Debian等发行版。若显示command not found,则需安装相关软件包。

方法2:

cat /etc/redhat-release

image.png

该方法只适合Redhat系的Linux系统。

方法3:

cat /etc/issue

该命令也适用于所有的Linux发行版。


文章引用: www.xinzhiweike.com/wenda/16668…