记录Linux相关的错误问题和解决方法
【报错】
tar -zxvf mysql-server_5.6.39-1ubuntu14.04_amd64.deb-bundle.tar
gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error is not recoverable: exiting now
【原因】
没有用gzip格式压缩,不需要加z
【解决】
将参数改为:-xvf便解压成功。
tar -xvf mysql-server_5.6.39-1ubuntu14.04_amd64.deb-bundle.tar
原文:https://www.cnblogs.com/wangyang0210/p/11723687.html