-bash: lsb_release: command not found
时间: 2023-06-26 08:05:37 浏览: 428
Linux -bash: ls: command not found
这个错误提示是因为您的系统缺少 `lsb_release` 工具。您可以尝试安装 `lsb-release` 包来解决此问题。可以通过以下命令来安装:
- 对于 Debian/Ubuntu 系统:
```
sudo apt-get install lsb-release
```
- 对于 CentOS/Red Hat 系统:
```
sudo yum install redhat-lsb-core
```
安装完成后,您可以再次运行 `lsb_release` 命令来查看您的系统信息。
阅读全文