sudo: tar-zxf: command not found
时间: 2023-11-08 18:05:10 浏览: 105
CentOS 7.9 命令lsb-release: command not found解决方案
5星 · 资源好评率100%
这个错误提示是因为系统缺少 tar 命令或者 gzip 命令导致的。可以通过安装 gzip 和 tar 两个软件包来解决这个问题。运行以下命令进行安装:
对于 Debian/Ubuntu 系统:
```
sudo apt-get update
sudo apt-get install tar gzip
```
对于 CentOS 系统:
```
sudo yum install tar gzip
```
阅读全文