在解压tar.gz文件的时候报错
tar -zxvf otp_src_18.3.tar.gz
gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting now
可能是文件不支持 gzip格式,所以去掉z就可以了
tar -xvf otp_src_18.3.tar.gz
在解压tar.gz文件的时候报错
tar -zxvf otp_src_18.3.tar.gz
gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting now
可能是文件不支持 gzip格式,所以去掉z就可以了
tar -xvf otp_src_18.3.tar.gz