无法提取 .tar.gz 文件?

无法提取 .tar.gz 文件?

我安装了.tar.gzBRL-CAD 文件。文件名BRL-CAD_7.26.0.2_Linux_x86_64.tar.gz位于/home/user/Downloads

我打开终端并输入

$ tar -zxvf BRL-CAD_7.26.0.2_Linux_x86_64.tar.gz
tar (child): BRL-CAD_7.26.0.2_Linux_x86_64.tar.gz: Cannot open: 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

我到底应该在终端中输入什么才能提取 .tar.gz 文件?

答案1

尝试这个:

打开终端,

Ctrl++AltT

运行:

cd /home/user/Downloads
tar -zxvf BRL-CAD_7.26.0.2_Linux_x86_64.tar.gz

相关内容