LSB是Linux Standard Base的缩写,lsb_release命令用来显示LSB和特定版本的相关信息。如果使用该命令时不带参数,则默认加上-v参数。
**语法格式:** lsb_release [参数]
**常用参数:**
| -i | 显示系统名称简写 |
| ---- | ---------------------- |
| -d | 显示系统全称和版本号 |
| -r | 显示版本号 |
| -a | 显示LSB所有信息 |
**参考实例**
使用-i参数显示系统简称:
```
[root@anycode ~]# lsb_release -i
```
使用-d参数显示系统全称:
```
[root@anycode ~]# lsb_release -d
```
使用-a参数显示LSB所有信息:
```
[root@anycode ~]# lsb_release -a
```