Set your user environment to allow Mentalix software to properly
locate the installation area.
To set your user environment, modify your path by editing
the ~/.cshrc and $HOME/.profile
files using any text editor. If you use the C shell as
your login shell, you must change the ~/.cshrc
file. If you use the Bourne or Korn shell as your login
shell, you must change the $HOME/.profile
file. We recommend that you change both files.
~/.cshrc File:
To set the correct path in the .cshrc
file, add these lines, substituting the name of your installation
directory for install_directory.
setenv PIXELFXDIR /install_directory/Pixel2
set path=($PIXELFXDIR/bin $path)
$HOME/.profile File:
To set the correct path in the .profile
file, add these lines, substituting the name of your installation
directory for install_directory.
PIXELFXDIR=/install_directory/Pixel2
export PIXELFXDIR
PATH=$PIXELFXDIR/bin:$PATH