-
Notifications
You must be signed in to change notification settings - Fork 66
installation on RedHat CentOS
mattben edited this page Sep 8, 2014
·
32 revisions
###Supporting RedHat6 / CentOS6 Current Stable Release 1.5
###System Requirements (Must be Root) You must have access to the EPEL Repos help link
sudo yum install cmake cmake-gui wget libpng-devel libxml2-devel libxslt-devel xorg* sqlite-devel bzip2 gdbm-devel libXt-devel openssl-devel gcc-gfortran libgfortran tcl-devel tk-devel libdbi-devel libicu-devel libXi-devel mesa-libGLU-devel mesa-libGL-devel PyQt4-devel
Installing Qt
cd /
wget --no-check-certificate Qt-URL-from-above
tar xvjf qt-YOUR-VERSION-4.8.4.tar.bz2
##Installing the Binaries (Strongly Suggested) You must be Root
sudo -s
From a bash shell
cd /
wget --no-check-certificate http://sourceforge.net/projects/cdat/files/Releases/UV-CDAT/1.5/UV-CDAT-1.5.1-RedHat6-64bit.tar.bz2
tar xvjf UV-CDAT-1.5.1-RedHat6-64bit.tar.bz2
source /usr/local/uvcdat/1.5.1/bin/setup_runtime.sh
- Bash users add
source /usr/local/uvcdat/1.5.1/bin/setup_runtime.shto your~/.bashrcfile - Tsh users add
source /usr/local/uvcdat/1.5.1/bin/setup_runtime.tsh' to your~/tshrc` file
#####Skip to Running UV-CDAT GUI
##Building from Source (Any User)
###Building & Install
From the command line using bash shell
Change YY-MM-DD to todays date
To install the full UV-CDAT add -DCDAT_BUILD_PARALLEL=ON
export GIT_SSL_NO_VERIFY=1
cd ~/
git clone git://github.com/UV-CDAT/uvcdat.git
mkdir build-uvcdat
cd build-uvcdat
cmake ../uvcdat -DCMAKE_INSTALL_PREFIX=/usr/local/uvcdat/YY-MM-DD
make -j4
source /usr/local/uvcdat/YY-MM-DD/bin/setup_runtime.sh
- Bash users add
source /usr/local/uvcdat/1.5.1/bin/setup_runtime.shto your~/.bashrcfile - Tsh users add
source /usr/local/uvcdat/1.5.1/bin/setup_runtime.tsh' to your~/tshrc` file
###Testing Running the test suite
cd ~/uvcdat-build
ctest -j4
To post the results to the UV-CDAT Dashboard
ctest -D Experimental
###Running UV-CDAT GUI
uvcdat
Need help, view our tutorials
