1

I installed the .tar.gz file for BRL-CAD. File name is BRL-CAD_7.26.0.2_Linux_x86_64.tar.gz at location /home/user/Downloads.

I opened Terminal and typed in

$ 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

What exactly should I type into Terminal so I can extract the .tar.gz file?

muru
  • 207,228
user604803
  • 91
  • 3
  • 4
  • 10

1 Answers1

0

Try this:

Open a terminal,

Press Ctrl+Alt+T

Run it:

cd /home/user/Downloads
tar -zxvf BRL-CAD_7.26.0.2_Linux_x86_64.tar.gz
kyodake
  • 17,808