Page 1 of 1

How do I install from .tar.gz?

Posted: Tue Apr 08, 2014 10:08 am
by RayArdia
Tried but got this:-

ray@ray-Aspire-5735:~/Downloads$ tar xfvz qcad-3.x.x-prof-linux-x86_32.tar.gz
tar (child): qcad-3.x.x-prof-linux-x86_32.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 am I doing wrong?

Re: How do I install from .tar.gz?

Posted: Tue Apr 08, 2014 10:22 am
by andrew
3.x.x stands for the current version number. If you have downloaded QCAD version 3.4.6 (the latest at the time of writing), use this command:
tar xfvz qcad-3.4.6-prof-linux-x86_32.tar.gz

Re: How do I install from .tar.gz?

Posted: Tue Apr 08, 2014 11:07 am
by RayArdia
Thankyou.
Tried that result was:-
ray@ray-Aspire-5735:~/Downloads$ tar xfvz qcad-3.4.6-prof-linux-x86_32.tar.gz
tar (child): qcad-3.4.6-prof-linux-x86_32.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
Ray

Re: How do I install from .tar.gz?

Posted: Tue Apr 08, 2014 11:10 am
by andrew
Did you previously download that file into your download folder?
What does this output:
cd ~/Downloads
ls qcad*

Re: How do I install from .tar.gz?

Posted: Tue Apr 08, 2014 11:13 am
by RayArdia
Output:-
ray@ray-Aspire-5735:~/Downloads$ ls qcad*
qcad-3.4.6-linux-x86_64.tar.gz
At present that is the only file in Downloads
Ray

Re: How do I install from .tar.gz?

Posted: Tue Apr 08, 2014 11:46 am
by andrew
The file you have downloaded contains the trial version of QCAD (hence no '-pro' in the file name).

The file for the trial version is called "qcad-3.4.6-linux-x86_64.tar.gz". To extract this file, please use the following command:
tar xfvz qcad-3.4.6-linux-x86_64.tar.gz
I've also sent you update instructions by e-mail in case you want to update your QCAD Professional license instead.

Re: How do I install from .tar.gz?

Posted: Tue Apr 08, 2014 1:06 pm
by RayArdia
Now have qcad extracted in Downloads. How do I get it to run? Sorry to be so thick!
Ray

Re: How do I install from .tar.gz?

Posted: Tue Apr 08, 2014 1:12 pm
by andrew
RayArdia wrote:Now have qcad extracted in Downloads.
Excellent!
How do I get it to run?
This should do the trick:
cd ~/Downloads/qcad-3.4.6-linux-x86_64
./qcad

Re: How do I install from .tar.gz?

Posted: Tue Apr 08, 2014 1:37 pm
by RayArdia
ray@ray-Aspire-5735:~$ cd ~/Downloads qcad-3.4.6-linux-x86_32
ray@ray-Aspire-5735:~/Downloads$ ./qcad
bash: ./qcad: No such file or directory
ray@ray-Aspire-5735:~/Downloads$
¿?¿?¿?

Re: How do I install from .tar.gz?

Posted: Tue Apr 08, 2014 1:59 pm
by andrew
Please note that you have to type in the commands exactly as mentioned in my post. There is no tolerance for errors when working with the terminal (not even one single character).
cd ~/Downloads/qcad-3.4.6-linux-x86_64
./qcad
I sense that you might not be familiar with the terminal application or with how files and directories can be accessed. What these commands above do is the following:
cd ~/Downloads/qcad-3.4.6-linux-x86_64
This changes into the directory Downloads inside your home folder (~). In Downloads, it changes into subdirectory 'qcad-3.4.6-linux-x86_64'. This is the directory (= 'folder') where QCAD was extracted. The slashes ('/') in that command are vital. They are used to separate directories.
./qcad
This starts (executes, runs) the QCAD application binary.

You can do the same also in a file manager, for example Nautilus or whatever file manager you are usually using to manage your files and directories. All you have to do is open the directory 'Downloads' in your home directory, then open the directory 'qcad-3.4.6-linux-x86_64' and in there run the file 'qcad'.

If all this makes no sense whatsoever, it might be a good idea to ask someone for help who is familiar with how files and directories are organized on a computer operating system such as Linux.

Re: How do I install from .tar.gz?

Posted: Tue Apr 08, 2014 2:11 pm
by RayArdia
QCAD runs!!! but when I went to close the Terminal I noticed:-

ray@ray-Aspire-5735:~/Downloads/qcad-3.4.6-linux-x86_32$ ./qcad
Debug: RCamScriptsPlugin: init
Debug: RDwgPlugin::init: trial
Debug: RDxfPlugin::init
Debug: RHelpPlugin::init
Debug: RProScriptsPlugin::init
Debug: FirstStart.js: cannot load translation for language es
Debug: TIMER: 108 ms - "loading add-ons"
Debug: TIMER: 926 ms - "initializing add-ons"
Is this output in any way significant?
I changed language to English and the QCAD screen opened in its usaal way (only better than when I was using it before, it seems.)

Re: How do I install from .tar.gz?

Posted: Tue Apr 08, 2014 2:15 pm
by RayArdia
Runs perfectly from Terminal but not from Nautilus.