Installation Guide: Linux
From UVLayout Docs
(Difference between revisions)
Revision as of 06:05, 4 September 2007 (edit) Headus (Talk | contribs) m (Protected "Installation Guide: Linux" [edit=sysop:move=sysop]) ← Previous diff |
Revision as of 06:51, 30 April 2009 (edit) (undo) Headus (Talk | contribs) Next diff → |
||
Line 1: | Line 1: | ||
{{:Installation Guide: Menu}} This page describes how to install or upgrade UVLayout onto a Linux system. | {{:Installation Guide: Menu}} This page describes how to install or upgrade UVLayout onto a Linux system. | ||
- | :1. Decide where you want to keep UVLayout, usually /usr/local/, then add these lines to ~/.login ... | + | :1. Decide where you want to keep UVLayout, usually /usr/local/, then add these lines to ~/.login for csh/tcsh shell users ... |
- | setenv HEADUS_HOME /usr/local/uvlayout-beta | + | setenv HEADUS_HOME /usr/local/uvlayout-pro |
set path = ( $HEADUS_HOME/bin $path ) | 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 | ||
:2. Open up a new shell window so that the new variable and path are used, and create the install directory ... | :2. Open up a new shell window so that the new variable and path are used, and create the install directory ... |
Revision as of 06:51, 30 April 2009
|
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-rh9-XXXXXX-beta.tgz --directory=$HEADUS_HOME/.. OpenMotifBy default, UVLayout will possibly not work with the version of OpenMotif already installed on your system. If the required OpenMotif shared libs are missing, each user can turn on the supplied ones by adding the following line to their login scripts: setenv LD_LIBRARY_PATH $HEADUS_HOME/lib |