[root@zhoucentos share1]# tar zxvf otp_src_19.1.tar.gz

gzip: stdin: not in gzip format

tar: Child returned status 1

tar: Error is not recoverable: exiting now

 

tar命令解压缩出错
 

原因是这个压缩包没有用gzip格式压缩,所以不用加z指令

[Sun@localhost Downloads]$ tar xvf otp_src_19.1.tar.gz

这样就可以了

解决方法二:

1:把下载下来的文件重命名: mv otp_src_19.1.tar.gz otp_src_19.1.tar

2:再执行解压命令:tar zxvf otp_src_19.1.tar

相关文章:

  • 2021-09-07
  • 2021-09-06
  • 2022-12-23
  • 2022-12-23
  • 2021-07-01
  • 2021-08-19
  • 2022-01-24
猜你喜欢
  • 2021-10-21
  • 2022-01-27
  • 2022-12-23
  • 2021-10-21
相关资源
相似解决方案