如何在 MAC M1 上压缩文件并在 AMD64 机器上解压
How to compress files on MAC M1 and extract on AMD64 machine
我正在尝试压缩 Mac M1 上的文件并在我的旧 Mac 上使用它,它是 AMD64 架构。现在我在提取旧 Macbook Pro 上的文件时遇到问题。
tar (child): gzip: Cannot exec: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now
bash-4.2#
我认为这是体系结构兼容性问题。谁能告诉我如何在我的 AMD64 笔记本电脑上提取文件
这不是体系结构问题,但很可能是缺少 gzip
安装的问题。
如果你使用的是homebrew
,你可以用下面的命令安装gzip
brew install gzip
然后再次尝试解压文件
我正在尝试压缩 Mac M1 上的文件并在我的旧 Mac 上使用它,它是 AMD64 架构。现在我在提取旧 Macbook Pro 上的文件时遇到问题。
tar (child): gzip: Cannot exec: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now
bash-4.2#
我认为这是体系结构兼容性问题。谁能告诉我如何在我的 AMD64 笔记本电脑上提取文件
这不是体系结构问题,但很可能是缺少 gzip
安装的问题。
如果你使用的是homebrew
,你可以用下面的命令安装gzip
brew install gzip
然后再次尝试解压文件