Compiling it on a fresh install of Fedora 17 wasn't that straight-forward (took me about 5 hours to figure all this out), so I thought I'd put together a little how-to for the benefit of myself, and hopefully you.
I've broken it down into a few stages so some sort of semblance of order can be imposed on this random collection of installation notes.
Step 1: download the software from ftp server here
In the terminal:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd ~/Downloads | |
tar xvzf MB-System.tar.gz |
For me this created a folder called 'mbsystem-5.3.1982'
Step 2: install pre-requisites
A) Generic Mapping Tools (GMT). You need to go to the Downloads tab, then click on the INSTALL FORM link. This will take you to a page where you can download the installation script, and fill in an online form of your parameter settings which you can submit and save the resulting page as a textfile which becomes the input to the bash script. Sounds confusing, but it's not - the instructions on the page are adequate. I opted to allow GMT to install netCDF for me. Then in the terminal I did this:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo mkdir /usr/local/GMT | |
sudo sh install_gmt.sh GMT[45]param.txt | |
export NETCDFHOME=/home/me/Downloads/netcdf-3.6.3 | |
export PATH=/usr/local/GMT/bin:$PATH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo yum install perl-Parallel-ForkManager.noarch |
C) X11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo yum groupinstall "X Software Development" |
D) openmotif
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo yum install openmotif-clients.x86_64 openmotif.x86_64 openmotif-demos.x86_64 |
E) fftw
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo yum install fftw.x86_64 fftw-devel.x86_64 |
F) ghostview - I had to install this indirectly using kde3:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo yum install kdebase3.x86_64 |
(Note to Fedora - why oh why oh why are B, C, and F above not installed by default!?)
G) OTPSnc tidal prediction software: download from here
untar, and cd to the directory
first double check that ncdump and ncgen are installed (which ncdump ncgen)
then edit the makefile so it reads:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FC = gfortran | |
NCLIB = /usr/lib64 | |
NCINCLUDE = /usr/include | |
NCLIBS= -lnetcdf -lnetcdff |
then in the terminal issue:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
make extract_HC | |
make extract_predict_tide |
Hopefully this compiles without errors, then I moved them to a executable directory:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo mv extract_HC /usr/bin/ | |
sudo mv predict_tide /usr/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo yum install mesa* |
Step 3: prepare mbsystem makefiles
cd mbsystem-5.3.1982/
You have to go in and point install_makefiles to where all your libraries are. This is time-consuming and involves a lot of ls, which, and whereis!
Here's a copy of the lines I edited in my install_makefiles parameters:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$MBSYSTEM_HOME = "/home/me/Downloads/mbsystem-5.3.1982"; | |
$OS = "LINUX"; | |
$CFLAGS = "-Wall -g -I/usr/include/X11"; | |
$LFLAGS = "-Wall -lm -bind_at_load -Wl,-dylib_file,/usr/lib64/libGL.so"; | |
$NETCDFLIBDIR = "/usr/local/lib"; | |
$NETCDFINCDIR = "/usr/include"; | |
$GMTLIBDIR = "/usr/local/GMT/lib"; | |
$GMTINCDIR = "/usr/local/GMT/include"; | |
$LEVITUS = "$MBSYSTEM_HOME/share/annual"; | |
$PROJECTIONS = "$MBSYSTEM_HOME/share/Projections.dat"; | |
$FFTWLIBDIR = "/usr/lib64"; | |
$FFTWINCDIR = "/usr/include"; | |
$MOTIFINCDIR = "/usr/include/openmotif/"; | |
$MOTIFLIBS = "-L/usr/lib64/openmotif -L/usr/lib64/X11 -lXm -lXt -lX11"; | |
$LEVITUS = "$MBSYSTEM_HOME/share/annual"; | |
$OTPSDIR = "/usr/bin"; | |
$CC = "gcc"; |
Then in the terminal
Step 3: install mbsystem
first I had to do this (but you may not need to)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo cp /usr/lib64/libfftw3.so /usr/lib64/libfftw3.a | |
#then | |
make all | |
#assuming all worked ... I copied the man and bin files into somewhere more logical/permanent: | |
sudo mkdir /usr/local/mbsystem | |
sudo mkdir /usr/local/mbsystem/bin | |
sudo cp ~/Downloads/mbsystem-5.3.1982/bin/* /usr/local/mbsystem/bin | |
sudo cp -R ~/Downloads/mbsystem-5.3.1982/man/ /usr/local/mbsystem/ |
I then updated my ~/.bashrc so the computer can find all these lovely new files:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MANPATH=$MANPATH:/usr/local/GMT/man:/usr/local/mbsystem/man | |
export MANPATH | |
PATH=$PATH:/usr/local/GMT/bin:/usr/local/mbsystem/bin | |
export PATH |
Test the install by issuing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
man gmt | |
man mbfilter |
you should see the manual pages come up. Right, now down to the business of multibeam analysis!
1 comment:
postscript (forgive the pun!)
I forgot to mention you also need ghostview for some MB-system capabilities which you install like this:
sudo yum install gsview.x86_64
then update your ~/.bashrc so your computer understands 'ghostview' (as called by MB-system plotting programs) as gsview:
alias ghostview='gsview'
Post a Comment