care area web page logo

 

Installation of the Care Area Wizard

You should install the flexlm license manager prior to attempting to install the application.

Download

Download the current release. The download page is here

 

License Manager Installation

If you need to first install the flexlm license manager, click here.

Create Directory

Create a directory to hold the CA Wizard and Qckvu3 executables. In this example we are using a directory called /home/cad/caw. Copy the release to this directory

$ cd /home/cad
$ mkdir caw
$ chmod 777 caw
$ cd caw
$ cp /home/files/qckvu3.caw.rh3amd64.linux.v314.tar  .
Extract the Tarball
$ tar xvf qckvu3.caw.rh3amd64.linux.v314.tar

You will see a number of files extracted from the tar ball.

INSTALL
tools/COMINSTALL
tools/KEYINSTALL
tools/flexlm/
tools/flexlm/linux/
tools/flexlm/linux/artwork
tools/flexlm/linux9/
tools/flexlm/linux9/artwork
tools/hostinfo
tools/qckvu_install.pdf
tools/qckvu_manual.pdf
tools/sysmem
tools/unzip
zipimage/qckvu3.rh3amd64.linux.v314.zip
Start the Install Script
$ ./INSTALL

There will be a series of prompts to answer. These directions assume this is the first time you are installing Qckvu3 and that you have already installed the flexlm license manager. [If not, go here to get instructions on installing and configuring the flexlm license manager.] Responses are shown in bold.

------------------------------------------------------------------
Artwork Conversion Software - Qckvu3 Installation
www.artwork.com  info@artwork.com  (831)426-6263
------------------------------------------------------------------

Install Qckvu3 version 3.14? (y/n)y [enter]

Unzipping program files into the bin directory...

Archive:  ../zipimage/qckvu3.rh3amd64.linux.v314.zip
[../zipimage/qckvu3.rh3amd64.linux.v304.zip] DEMO5.OPENACCESS/ password:******** [enter]

Assuming you have correctly entered the installation password, a whole potful of files will be unzipped and placed in the appropriate directories. The majority of these are related to the Open Access run time and are not of interest for this application.

  creating: DEMO5.OPENACCESS/
  inflating: DEMO5.OPENACCESS/.oalib  
  inflating: DEMO5.OPENACCESS/tech.db  
   creating: DEMO5.OPENACCESS/CONT/
   creating: DEMO5.OPENACCESS/CONT/layout/
  inflating: DEMO5.OPENACCESS/CONT/layout/layout.oa  
 extracting: DEMO5.OPENACCESS/CONT/layout/master.tag  
   creating: DEMO5.OPENACCESS/PTAP2/
.
.
.
  creating: openaccesslib.72/license/
  inflating: openaccesslib.72/license/V4.0_OA_IUR.pdf  
  inflating: qckvu3                  
  inflating: qckvu3.exe              
  inflating: readgds                 
 extracting: version.txt             
  inflating: xhostinfo               

--------------------------------------------------------------------------
For new install, you need to install keycodes to activate Qckvu3.
For upgrade, you do not need to reinstall keycodes.

Install keycodes? (y/n)y[enter]

LICENSING MODE SELECTION

This product can be licensed using either network or node locked
licensing schemes.  Each scheme uses a different keycode format:

a) FLEXlm licenses use a proprietary format. You should obtain and
   install a FLEXlm license on your license server before performing
   this step.

b) Node lock license strings are in the form of:
   - Seven 7-character strings on a line begin with token: !#ACS. (e.g)

   !#ACS OPJTYKR WjnITOX OVVGfOf KVnIdVM WVJOedi WJVULVc cVVRQJM 


Install for (a)network or (b)node lock licensing? (a/b)a[enter]

Entering option a) will automatically initiate a check for the flexlm license server and report how many license are available. The report appears as follows:

Licensing Report
----------------



* You have chosen to use the FLEXlm license manager.
  You should have already installed a valid FLEXlm
  network license for this product before performing 
  this step.

* License Availability:
  3 GDSII licenses available.
  0 OpenAccess licenses available.
  3 OASIS licenses available.
  0 OpenAccess-Boolean licenses available.

Qckvu3 Installation Finished
-------------------------------------
Qckvu3 Install - [PASSED] Qckvu3 v3.04
Keycodes Install - [PASSED] 2 products activated
  1 GDSII licenses available.
  1 OASIS licenses available.

Run tools/hostinfo to generate host information for licensing.

Run the script /home/cad/qckvu3/bin/qckvu3 from a working directory with write permission.


========= Hit return to continue =========


The Qckvu3 Startup Script

Artwork provides a simple script for starting up qckvu3 which contains the CA Wizard plug-in. You need not use this script but you should understand the components of it.

#! /bin/bash                    <-- sets bash as the shell

installDir=/home/cad/qckvu3/bin <-- sets installDir to directory where qckvu3 is located.

LD_LIBRARY_PATH=${installDir}   <-- append to the environment variable LD_LIBRARY_PATH 
   :$LD_LIBRARY_PATH:               an additional path for the open access runtime.
      ${installDir}/openaccesslib/lib/linux_rhel30_64/opt

export LD_LIBRARY_PATH          <-- export the new path

${installDir}/qckvu3.exe $* &   <-- execute qckvu3.exe passing it the filename argument 
                                    and running it as a background process.
Adding Flexlm License Environment Variable - Depending on your system configuration you may wish also to set the environment variable, LM_LICENSE_FILE to the port and name of the license manager. For example, if your license server is called spock and it is configured to listen on port 1703 for license requests then you could add to your start up script:
LM_LICENSE_FILE=1703@spock
export LM_LICENSE_FILE