Difference between revisions of "Installation/Linux/foam-extend-4.0/Ubuntu"

From OpenFOAMWiki
(Undo revision 19929 by Tschenkel (talk))
(Undo revision 19928 by Tschenkel (talk))
Line 1: Line 1:
 
= Introduction =
 
= Introduction =
This page is dedicated to preparing an [http://www.ubuntu.com Ubuntu] system for installing {{-Extend}} {{version4.1-ext}}.
+
This page is dedicated to preparing an [http://www.ubuntu.com Ubuntu] system for installing {{-Extend}} {{version4.0-ext}}.
  
 
__FORCETOC__
 
__FORCETOC__
Line 6: Line 6:
  
 
= Ubuntu versions =
 
= Ubuntu versions =
 +
 +
== Ubuntu 12.04 ==
 +
Run the following commands:
 +
<bash>sudo apt-get update</bash>
 +
<bash>sudo apt-get install git-core build-essential binutils-dev flex \
 +
bison zlib1g-dev qt4-dev-tools libqt4-dev libncurses5-dev \
 +
libxt-dev rpm mercurial graphviz python python-dev
 +
</bash>
 +
 +
Then follow the instructions on the previous page, subsection [[Installation/Linux/foam-extend-4.0#Installing from source code|Get the source code]], although keep in mind to run the following commands '''before''' you run '''{{tt|source etc/bashrc}}''':
 +
<bash>echo export WM_COMPILER=Gcc49 >> etc/prefs.sh
 +
echo export WM_THIRD_PARTY_USE_GCC_492=1  >> etc/prefs.sh
 +
echo export compilerInstall=FOAM >> etc/prefs.sh</bash>
 +
 +
More specifically, the commands should be executed something like this:
 +
<bash>cd ~/foam/foam-extend-4.0
 +
 +
echo export WM_COMPILER=Gcc49 >> etc/prefs.sh
 +
echo export WM_THIRD_PARTY_USE_GCC_492=1  >> etc/prefs.sh
 +
echo export compilerInstall=FOAM >> etc/prefs.sh
 +
 +
source etc/bashrc</bash>
 +
 +
 +
== Ubuntu 14.04 ==
 +
 +
Run the following commands:
 +
<bash>sudo apt-get update</bash>
 +
<bash>sudo apt-get install git-core build-essential binutils-dev cmake flex \
 +
bison zlib1g-dev qt4-dev-tools libqt4-dev libncurses5-dev libiberty-dev \
 +
libxt-dev rpm mercurial graphviz python python-dev
 +
</bash>
 +
 +
Then continue following the instructions on the previous page, subsection [[Installation/Linux/foam-extend-4.0#Installing from source code|Get the source code]].
 +
 +
 +
== Ubuntu 16.04 ==
 +
 +
Run the following commands:
 +
<bash>sudo apt-get update</bash>
 +
<bash>sudo apt-get install git-core build-essential binutils-dev cmake flex \
 +
zlib1g-dev qt4-dev-tools libqt4-dev libncurses5-dev libiberty-dev \
 +
libxt-dev rpm mercurial graphviz python python-dev
 +
</bash>
 +
 +
Then follow the instructions on the previous page, subsection [[Installation/Linux/foam-extend-4.0#Installing from source code|Get the source code]], although keep in mind to run the following commands '''before''' you run '''{{tt|source etc/bashrc}}''':
 +
<bash>echo export WM_THIRD_PARTY_USE_BISON_27=1  >> etc/prefs.sh</bash>
 +
 +
More specifically, the commands should be executed something like this:
 +
<bash>cd ~/foam/foam-extend-4.0
 +
 +
echo export WM_THIRD_PARTY_USE_BISON_27=1  >> etc/prefs.sh
 +
 +
source etc/bashrc</bash>
 +
 +
 +
'''Note''': If you are using Ubuntu within WSL, then study this thread: [https://www.cfd-online.com/Forums/openfoam-installation/216670-problems-compiling-foam-extend-4-0-fsifoam-ubuntu-wsl.html Problems compiling foam-extend-4.0 + fsiFoam on Ubuntu+WSL]
  
 
== Ubuntu 18.04 ==
 
== Ubuntu 18.04 ==
Line 12: Line 69:
 
<bash>sudo apt-get update</bash>
 
<bash>sudo apt-get update</bash>
 
<bash>sudo apt-get install git-core build-essential binutils-dev cmake flex \
 
<bash>sudo apt-get install git-core build-essential binutils-dev cmake flex \
zlib1g-dev qt4-dev-tools libqt4-dev libncurses5-dev curl bison\
+
zlib1g-dev qt4-dev-tools libqt4-dev libncurses5-dev \
libxt-dev rpm mercurial graphviz python python-dev  gcc-7 g++-7
+
libxt-dev rpm mercurial graphviz python python-dev  gcc-5 g++-5
 
</bash>
 
</bash>
  
Then follow the instructions on the previous page, subsection [[Installation/Linux/foam-extend-4.1#Installing from source code|Get the source code]], but keep in mind to run a few additional commands '''before''' you run '''{{tt|source etc/bashrc}}'''... More specifically, the commands should be executed something like this:
+
Then follow the instructions on the previous page, subsection [[Installation/Linux/foam-extend-4.0#Installing from source code|Get the source code]], but keep in mind to run a few additional commands '''before''' you run '''{{tt|source etc/bashrc}}'''... More specifically, the commands should be executed something like this:
<bash>cd ~/foam/foam-extend-4.1
+
<bash>cd ~/foam/foam-extend-4.0
  
 +
echo export WM_THIRD_PARTY_USE_BISON_27=1  >> etc/prefs.sh
 +
echo export QT_SELECT=qt4  >> etc/prefs.sh
 
echo "export WM_CC='gcc-5'"  >> etc/prefs.sh
 
echo "export WM_CC='gcc-5'"  >> etc/prefs.sh
 
echo "export WM_CXX='g++-5'"  >> etc/prefs.sh
 
echo "export WM_CXX='g++-5'"  >> etc/prefs.sh
 +
echo "export QT_BIN_DIR=/usr/bin/" >> etc/prefs.sh
  
 
source etc/bashrc</bash>
 
source etc/bashrc</bash>

Revision as of 12:44, 26 November 2019

1 Introduction

This page is dedicated to preparing an Ubuntu system for installing the foam-extend project OF Version 40ext.png.


2 Ubuntu versions

2.1 Ubuntu 12.04

Run the following commands:

sudo apt-get update
sudo apt-get install git-core build-essential binutils-dev flex \
bison zlib1g-dev qt4-dev-tools libqt4-dev libncurses5-dev \
libxt-dev rpm mercurial graphviz python python-dev

Then follow the instructions on the previous page, subsection Get the source code, although keep in mind to run the following commands before you run source etc/bashrc:

echo export WM_COMPILER=Gcc49 >> etc/prefs.sh
echo export WM_THIRD_PARTY_USE_GCC_492=1  >> etc/prefs.sh
echo export compilerInstall=FOAM >> etc/prefs.sh

More specifically, the commands should be executed something like this:

cd ~/foam/foam-extend-4.0
 
echo export WM_COMPILER=Gcc49 >> etc/prefs.sh
echo export WM_THIRD_PARTY_USE_GCC_492=1  >> etc/prefs.sh
echo export compilerInstall=FOAM >> etc/prefs.sh
 
source etc/bashrc


2.2 Ubuntu 14.04

Run the following commands:

sudo apt-get update
sudo apt-get install git-core build-essential binutils-dev cmake flex \
bison zlib1g-dev qt4-dev-tools libqt4-dev libncurses5-dev libiberty-dev \
libxt-dev rpm mercurial graphviz python python-dev

Then continue following the instructions on the previous page, subsection Get the source code.


2.3 Ubuntu 16.04

Run the following commands:

sudo apt-get update
sudo apt-get install git-core build-essential binutils-dev cmake flex \
zlib1g-dev qt4-dev-tools libqt4-dev libncurses5-dev libiberty-dev \
libxt-dev rpm mercurial graphviz python python-dev

Then follow the instructions on the previous page, subsection Get the source code, although keep in mind to run the following commands before you run source etc/bashrc:

echo export WM_THIRD_PARTY_USE_BISON_27=1  >> etc/prefs.sh

More specifically, the commands should be executed something like this:

cd ~/foam/foam-extend-4.0
 
echo export WM_THIRD_PARTY_USE_BISON_27=1  >> etc/prefs.sh
 
source etc/bashrc


Note: If you are using Ubuntu within WSL, then study this thread: Problems compiling foam-extend-4.0 + fsiFoam on Ubuntu+WSL

2.4 Ubuntu 18.04

Run the following commands:

sudo apt-get update
sudo apt-get install git-core build-essential binutils-dev cmake flex \
zlib1g-dev qt4-dev-tools libqt4-dev libncurses5-dev \
libxt-dev rpm mercurial graphviz python python-dev  gcc-5 g++-5

Then follow the instructions on the previous page, subsection Get the source code, but keep in mind to run a few additional commands before you run source etc/bashrc... More specifically, the commands should be executed something like this:

cd ~/foam/foam-extend-4.0
 
echo export WM_THIRD_PARTY_USE_BISON_27=1  >> etc/prefs.sh
echo export QT_SELECT=qt4  >> etc/prefs.sh
echo "export WM_CC='gcc-5'"  >> etc/prefs.sh
echo "export WM_CXX='g++-5'"  >> etc/prefs.sh
echo "export QT_BIN_DIR=/usr/bin/" >> etc/prefs.sh
 
source etc/bashrc

Then before running Allwmake.firstInstall, run the following commands:

sed -i -e 's=rpmbuild --define=rpmbuild --define "_build_id_links none" --define=' ThirdParty/tools/makeThirdPartyFunctionsForRPM
sed -i -e 's/gcc/\$(WM_CC)/' wmake/rules/linux64Gcc/c
sed -i -e 's/g++/\$(WM_CXX)/' wmake/rules/linux64Gcc/c++