Compiling and installing FRView on Red Hat Enterprise Linux 6 - sintefmath/FRView GitHub Wiki
This document describes how to set up FRView on a standard RHEL 6 installation manually, if you want the automated solution, please consult the Installing FRView through an automated script document. The walkthrough requires access to the yum install command.
Getting Tinia and HPMC
You need to install Tinia on RHEL 6 and install HPMC on RHEL 6 before you can install FRView.
Compiling FRView
You can get FRView directly from the github repository using
git clone http://github.com/sintefmath/FRView.git
To compile, you should make a separate build folder for cmake (note again: all install paths can be the same):
cd FRView
mkdir build
cd build
cmake .. -DCMAKE_PREFIX_PATH=<install path for GLEW> -DTinia_DIR=<install path for Tinia> -DCMAKE_INSTALL_PREFIX=<install path for FRView>
make install
To test that it worked you could start the executable frview_desktop_job
, or if you have the tinia server up and running you could point your browser to localhost:8080/trell/static and start the program frview_cloud_job
.