sudo: tar-zxf: command not found
时间: 2023-11-08 18:05:10 浏览: 118
这个错误提示是因为系统缺少 tar 命令或者 gzip 命令导致的。可以通过安装 gzip 和 tar 两个软件包来解决这个问题。运行以下命令进行安装:
对于 Debian/Ubuntu 系统:
```
sudo apt-get update
sudo apt-get install tar gzip
```
对于 CentOS 系统:
```
sudo yum install tar gzip
```
相关问题
[root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo apt-get install sudo apt-get sudo: apt-get: command not found [root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo apt-get install sudo: apt-get: command not found [root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo apt-get sudo: apt-get: command not found [root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo apt-get update sudo: apt-get: command not found [root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo apt-get install software-properties-common sudo: apt-get: command not found [root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo add-apt-repository ppa:mc3man/mpv-tests sudo: add-apt-repository: command not found [root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo apt-get update sudo: apt-get: command not found [root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo apt-get install mpv sudo: apt-get: command not found你的方法不行
非常抱歉,我之前的回答有误,CentOS 并不支持 apt-get 命令。在 CentOS 中,你可以使用 yum 命令来安装软件包。
要安装 mpv 播放器,可以使用以下命令:
```
sudo yum install epel-release
sudo yum install mpv
```
第一条命令是安装 EPEL 软件源,第二条命令是安装 mpv 播放器。请注意,你需要具有 sudo 权限才能运行这些命令。
tar-zxvf: command not found
根据提供的引用内容,"tar-zxvf: command not found"错误通常是由于系统缺少tar命令导致的。tar命令是Linux和Unix系统中用于压缩和解压缩文件的常用命令。如果你在执行tar命令时遇到了"tar-zxvf: command not found"错误,可以尝试以下两种方法来解决这个问题:
1.安装tar命令
可以使用系统自带的包管理器来安装tar命令。例如,在Ubuntu系统中,可以使用以下命令来安装tar命令:
```shell
sudo apt-get install tar
```
在CentOS系统中,可以使用以下命令来安装tar命令:
```shell
sudo yum install tar
```
2.使用其他压缩命令
如果你无法安装tar命令,可以尝试使用其他的压缩命令来代替tar命令。例如,在Linux系统中,你可以使用zip命令来压缩和解压缩文件:
```shell
unzip file.zip # 解压缩zip文件
zip file.zip file.txt # 压缩文件为zip格式
```
阅读全文