Welcome to the new Parasoft forums! We hope you will enjoy the site and try out some of the new features, like sharing an idea you may have for one of our products or following a category.
CodeWizard Installation problem
LegacyForum
Posts: 1,664 ✭✭
in This Forum
CodeWizard Installation failed
Hi all,I have downloaded and installed CodeWizard, but it failed to start it. Do I need to set up some files before run the srcipt?
I am running HP-UX 11.00 (PA). The following is the error message displayed:
------------------------------------------------------------------------------------------------------------
# ./install
Extracting installation scripts ...
CodeWizard Installation Script Version 4.2 (04/30/03)
Copyright © 1997-2000 by ParaSoft Corporation
Technical support is available at:
E-mail: support@parasoft.com
Web: http://www.parasoft.com
Telephone: (626) 305-0041
Fax: (626) 305-9048
You may enter '?' for help or a 'q' to quit at any prompt.
Extracting cwconfigure ...
Tar: blocksize = 0; broken pipe?
unable to extract cwconfigure: at .install.hp11/install-common.pl line 315.
--------------------------------------------------------------------------------------------------------------
Regards and Thanks
Alex
0
Comments
-
Hi Alex,
Codewizard 4.2 on HP11 has a tar file within a tar file and what's supposed to be taking place at that line of the perl script you mentioned is that it's supposed to extract the files from the secondary tar file.
if you execute from the directory where you had tried to install codewizard
$ tail -1 .logs/Extract.log
You should see something like
skipped 3200 blocks
Assumming that you do in fact get "3200" blocks as the number of blocks that it has to skip in this tar file and that you have the gzipped version of codewizard then you should be able to execute
$ gzip -dc cw.hp11.tar.gz | dd bs=512 skip=3200 | tar xvf -
And then
$ ./cwconfigure
to install this.0