suse 下安装lsb_release
时间: 2023-09-10 17:06:56 浏览: 279
在 SUSE Linux 中,你可以使用 zypper 命令来安装 lsb-release 包。请按照以下步骤执行:
1. 打开终端,并以 root 身份登录系统。
2. 执行以下命令更新软件包缓存:
```
zypper refresh
```
3. 执行以下命令安装 lsb-release 包:
```
zypper install lsb-release
```
安装完成后,你就可以使用 lsb_release -a 命令来查看 Linux 系统的版本信息了。
相关问题
查看suse内核版本
以下是三种查看SUSE内核版本的方法:
1. 配置文件查看:
```shell
cat /etc/SuSE-release
```
输出:
SUSE Linux Enterprise Server 11 (x86_64)
VERSION = 11
PATCHLEVEL = 4
2. lsb命令查看:
```shell
lsb_release -d
```
输出:
Description: SUSE Linux Enterprise Server 11 (x86_64)
3. uname命令查看:
```shell
uname -r
```
输出:
3.0.101-63-default
阅读全文