wsl下tar解压*.tar.gz错误解决方法
2022-07-15 21:36 作者:bili_26691384660 | 我要投稿
报错信息:
/usr/bin/gzip: 1: ELF: not found
/usr/bin/gzip: 3: : not found
/usr/bin/gzip: 4: Syntax error: "(" unexpected
解决方法:
wsl 终端输入
echo -en '\x10' | sudo dd of=/usr/bin/gzip count=1 bs=1 conv=notrunc seek=$((0x189))
https://www.zhihu.com/question/534934423/answer/2504987088