Installation Guide: Linux
From UVLayout Docs
(Difference between revisions)
Revision as of 09:13, 23 August 2013 (edit) Headus (Talk | contribs) (→Known Problems) ← Previous diff |
Revision as of 09:14, 23 August 2013 (edit) (undo) Headus (Talk | contribs) (→Known Problems) Next diff → |
||
Line 48: | Line 48: | ||
* Very poor drawing performance? See the [[User Guide: About UVLayout#OpenGL|OpenGL]] preference. | * Very poor drawing performance? See the [[User Guide: About UVLayout#OpenGL|OpenGL]] preference. | ||
- | * Errors on UVLayout start-up when opening UID files? This sometimes occurs when the UVLayout installation is distributed to users via a networked file system, and appear to only affect the Fedora-6 32bit build of UVLayout. Use the Fedora-10 64bit build of UVLayout to solve this problem. | + | * Errors on UVLayout start-up when opening UID files? This sometimes occurs when the UVLayout installation is distributed to users via a networked file system, and appears to only affect the Fedora-6 32bit build of UVLayout. Use the Fedora-10 64bit build of UVLayout to solve this problem. |
== Additional Steps For Different Distos == | == Additional Steps For Different Distos == | ||
* [[Installation Guide: Ubuntu 12-04LTS|Ubuntu 12.04LTS]] | * [[Installation Guide: Ubuntu 12-04LTS|Ubuntu 12.04LTS]] |
Revision as of 09:14, 23 August 2013
|
This page describes how to install or upgrade UVLayout onto a Linux system.
setenv HEADUS_HOME /usr/local/uvlayout-pro set path = ( $HEADUS_HOME/bin $path ) ... and these lines to ~/.bashrc for bash shell users ... export HEADUS_HOME=/usr/local/uvlayout-pro export PATH=$HEADUS_HOME/bin:$PATH
mkdir -p $HEADUS_HOME
tar xvfoz uvlayout-pro-XXXXXX-fc6.tgz --directory=$HEADUS_HOME/..
OpenMotifLinux versions of the headus tools use OpenMotif for their GUI interfaces. The version of OpenMotif that's on your system is used by default, but if this is missing or incompatible, the required OpenMotif shared libs are included in the headus installation. See the OpenMotif page for further details. Wrapper ScriptInstead of modifying your login scripts, you may want to create a wrapper script that sets all the required variables, and then run that script to start UVLayout. This is what we use here at headus: #!/bin/csh -f # change this to where UVLayout has been installed setenv HEADUS_HOME /usr/local/uvlayout-pro set path = ( $HEADUS_HOME/bin $path ) setenv LD_LIBRARY_PATH $HEADUS_HOME/lib # remove comment below to run the licensing GUI # headus uvlayout $* Known Problems
Additional Steps For Different Distos |