目录

方法一、lsb_release -a

方法二、cat /etc/issue


linux系统有很多方法可以查看系统命令,这里简单介绍几个常用。

方法一、lsb_release -a

查询命令: 

lsb_release -a

结果展示: 

linux查看当前系统版本_linux

参数分析: 

Distributor ID:    Ubuntu                       // linux家族中的ubuntu系统
Description:    Ubuntu 16.04.3 LTS     // 16年3月4月发布的稳定版本
Release:    16.04                                 // 发行版本
Codename:    xenial                            // ubuntu代号

相同效果的命令还有:

cat /etc/lsb-release

结果展示:

linux查看当前系统版本_linux_02

方法二、cat /etc/issue

查询命令:

cat /etc/issue

结果展示:

linux查看当前系统版本_系统版本_03