[root@localhost ~]# tar -zxvf plugins.tar.gz -C /root/.jenkins/plugins gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting now
时间: 2023-07-08 14:17:13 浏览: 154
根据错误提示,它说这个文件不是 gzip 格式的,可能是 tar 格式的,所以不能用 gzip 命令来解压缩。可以试试这个命令:
```
tar -xvf plugins.tar.gz -C /root/.jenkins/plugins
```
这个命令会直接解压缩 tar 文件,不需要指定 gzip 选项。`-C` 选项指定解压缩后文件要放置的目录。
如果还是不行,可能需要检查一下这个文件是否有问题,或者重新下载一个。
相关问题
[root@192 opt]# tar -zxvf apache-tomcat-9.0.48-windows-x64.zip -C/opt gzip: stdin has more than one entry--rest ignored tar: Child returned status 2 tar: Error is not recoverable: exiting now
这个错误可能是由于压缩文件中包含多个文件或目录而导致的。你可以使用以下命令来解决这个问题:
```
unzip apache-tomcat-9.0.48-windows-x64.zip -d /opt
```
这将使用 unzip 命令来解压缩文件,并将其解压缩到 /opt 目录中。请注意,这里使用的是 unzip 命令而不是 tar 命令,因为你的压缩文件是一个 ZIP 文件而不是一个 tar 文件。
[root@localhost ~]# yum -bash: yum: command not found
这个问题可能是由于系统中没有安装yum导致的。你可以尝试手动安装yum来解决这个问题。以下是安装yum的步骤:
1.下载yum安装包
```shell
wget http://yum.baseurl.org/download/3.4/yum-3.4.3.tar.gz
```
2.解压安装包
```shell
tar zxvf yum-3.4.3.tar.gz
```
3.进入yum目录并安装
```shell
cd yum-3.4.3
python setup.py install
```
4.安装完成后,你可以尝试运行yum命令来验证是否安装成功
```shell
yum
```
阅读全文