|
[Sponsors] |
[foam-extend.org] Having trouble following the installation instructions for foam-extend 3.1 |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
February 8, 2015, 06:40 |
foam-extend 3.1
|
#21 | |
Member
mojtaba
Join Date: Dec 2014
Location: iran
Posts: 41
Rep Power: 11 |
Quote:
|
||
February 8, 2015, 07:49 |
|
#22 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
OK, finally, we now have a clear picture of what went wrong.
The problem is that you're not able to access the website sourceforge.net. If you open the file "make.log" with a simple text editor, search for the following error message: Code:
ERROR 504: Gateway Time-out. Code:
Download openmpi-1.6.5.tar.gz from : http://downloads.sourceforge.net/project/openfoam-extend/foam-extend-3.1/ThirdParty/openmpi-1.6.5.tar.gz --2015-02-07 20:32:46-- http://downloads.sourceforge.net/project/openfoam-extend/foam-extend-3.1/ThirdParty/openmpi-1.6.5.tar.gz Resolving downloads.sourceforge.net (downloads.sourceforge.net)... 216.34.181.59 Connecting to downloads.sourceforge.net (downloads.sourceforge.net)|216.34.181.59|:80... connected. HTTP request sent, awaiting response... 504 Gateway Time-out 2015-02-07 20:33:01 ERROR 504: Gateway Time-out. For example, for this first file, you need to search online for the file "openmpi-1.6.5.tar.gz", download it and place it inside the folder "~/foam/foam-extend-3.1/ThirdParty/rpmBuild/SOURCES". Then do the same for all other files that have been reported in "make.log" that were not downloaded. |
|
February 8, 2015, 09:04 |
foam-extend 3.1
|
#23 | |
Member
mojtaba
Join Date: Dec 2014
Location: iran
Posts: 41
Rep Power: 11 |
Quote:
openmpi-1.6.5.tar.gz metis-5.1.0.tar.gz mesquite-2.1.2.tar.gz scotch-6.0.0.tar.gz PyFoam-0.6.1.tar.gz hwloc-1.7.2.tar.gz i downloaded them from this link http://sourceforge.net/projects/open....0/ThirdParty/ and copied to that direction. Please tell me the next step. |
||
February 8, 2015, 09:19 |
|
#24 | |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
OK, now it's the same as before, namely:
Quote:
|
||
February 8, 2015, 09:29 |
foam-extend 3.1
|
#25 |
Member
mojtaba
Join Date: Dec 2014
Location: iran
Posts: 41
Rep Power: 11 |
||
February 8, 2015, 09:47 |
|
#27 |
Member
mojtaba
Join Date: Dec 2014
Location: iran
Posts: 41
Rep Power: 11 |
It seems like compiling is done after 10 minutes.
This time just last command gave nothing. Here is my terminal window: sepinood@sepinood-Inspiron-N5010:~$ source $HOME/foam/foam-extend-3.1/etc/bashrc sepinood@sepinood-Inspiron-N5010:~$ foam sepinood@sepinood-Inspiron-N5010:~/foam/foam-extend-3.1$ ./Allwmake.firstInstall > log.make 2>&1 sepinood@sepinood-Inspiron-N5010:~/foam/foam-extend-3.1$ source $HOME/foam/foam-extend-3.1/etc/bashrc sepinood@sepinood-Inspiron-N5010:~/foam/foam-extend-3.1$ which icoFoam /home/sepinood/foam/foam-extend-3.1/applications/bin/linuxGccDPOpt/icoFoam sepinood@sepinood-Inspiron-N5010:~/foam/foam-extend-3.1$ which paraview sepinood@sepinood-Inspiron-N5010:~/foam/foam-extend-3.1$ |
|
February 8, 2015, 09:50 |
|
#28 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Have a look into the file "log.make" to try and see where the error is now.
If you cannot understand what the error is, compress the latest file and attach it or provide a link for it. |
|
February 8, 2015, 10:00 |
foam-extend 3.1
|
#29 | |
Member
mojtaba
Join Date: Dec 2014
Location: iran
Posts: 41
Rep Power: 11 |
Quote:
|
||
February 8, 2015, 10:15 |
|
#30 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
OK, here we go, another lap around the block... hopefully this time ParaView will build... run the following commands:
Code:
export QT_SELECT=qt4 export QT_BIN_DIR=$(which qmake) echo "export QT_BIN_DIR=$QT_BIN_DIR" >> etc/prefs.sh source $HOME/foam/foam-extend-3.1/etc/bashrc foam ./Allwmake.firstInstall > log.make 2>&1 source $HOME/foam/foam-extend-3.1/etc/bashrc which icoFoam which paraview |
|
February 8, 2015, 10:21 |
foam-extend 3.1
|
#31 | |
Member
mojtaba
Join Date: Dec 2014
Location: iran
Posts: 41
Rep Power: 11 |
Quote:
Terminal window: sepinood@sepinood-Inspiron-N5010:~$ export QT_SELECT=qt4 sepinood@sepinood-Inspiron-N5010:~$ export QT_BIN_DIR=$(which qmake) sepinood@sepinood-Inspiron-N5010:~$ echo "export QT_BIN_DIR=$QT_BIN_DIR" >> etc/prefs.sh bash: etc/prefs.sh: No such file or directory sepinood@sepinood-Inspiron-N5010:~$ |
||
February 8, 2015, 10:29 |
|
#32 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Sorry, I forgot that the shell environment had to already be readied... try this:
Code:
source $HOME/foam/foam-extend-3.1/etc/bashrc foam export QT_SELECT=qt4 export QT_BIN_DIR=$(which qmake) echo "export QT_BIN_DIR=$QT_BIN_DIR" >> etc/prefs.sh source $HOME/foam/foam-extend-3.1/etc/bashrc ./Allwmake.firstInstall > log.make 2>&1 source $HOME/foam/foam-extend-3.1/etc/bashrc which icoFoam which paraview |
|
February 8, 2015, 10:40 |
foam-extend 3.1
|
#33 | |
Member
mojtaba
Join Date: Dec 2014
Location: iran
Posts: 41
Rep Power: 11 |
Quote:
Terminal window: sepinood@sepinood-Inspiron-N5010:~$ source $HOME/foam/foam-extend-3.1/etc/bashrc sepinood@sepinood-Inspiron-N5010:~$ foam sepinood@sepinood-Inspiron-N5010:~/foam/foam-extend-3.1$ export QT_SELECT=qt4 sepinood@sepinood-Inspiron-N5010:~/foam/foam-extend-3.1$ export QT_BIN_DIR=$(which qmake) sepinood@sepinood-Inspiron-N5010:~/foam/foam-extend-3.1$ echo "export QT_BIN_DIR=$QT_BIN_DIR" >> etc/prefs.sh sepinood@sepinood-Inspiron-N5010:~/foam/foam-extend-3.1$ source $HOME/foam/foam-extend-3.1/etc/bashrc sepinood@sepinood-Inspiron-N5010:~/foam/foam-extend-3.1$ ./Allwmake.firstInstall > log.make 2>&1 sepinood@sepinood-Inspiron-N5010:~/foam/foam-extend-3.1$ source $HOME/foam/foam-extend-3.1/etc/bashrc sepinood@sepinood-Inspiron-N5010:~/foam/foam-extend-3.1$ which icoFoam /home/sepinood/foam/foam-extend-3.1/applications/bin/linuxGccDPOpt/icoFoam sepinood@sepinood-Inspiron-N5010:~/foam/foam-extend-3.1$ which paraview sepinood@sepinood-Inspiron-N5010:~/foam/foam-extend-3.1$ |
||
February 8, 2015, 11:01 |
foam-extend 3.1
|
#35 |
Member
mojtaba
Join Date: Dec 2014
Location: iran
Posts: 41
Rep Power: 11 |
Here it is.
log.make.tar.gz |
|
February 8, 2015, 11:24 |
|
#36 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
What do the following commands give you?
Code:
which qmake which qmake-qt4 Code:
sudo apt-get install qt4-dev-tools libqt4-dev libqtwebkit-dev |
|
February 8, 2015, 11:28 |
foam-extend 3.1
|
#37 | |
Member
mojtaba
Join Date: Dec 2014
Location: iran
Posts: 41
Rep Power: 11 |
Quote:
Terminal window: sepinood@sepinood-Inspiron-N5010:~/foam/foam-extend-3.1$ which qmake /usr/bin/qmake sepinood@sepinood-Inspiron-N5010:~/foam/foam-extend-3.1$ which qmake-qt4 /usr/bin/qmake-qt4 sepinood@sepinood-Inspiron-N5010:~/foam/foam-extend-3.1$ |
||
February 8, 2015, 11:51 |
foam-extend 3.1
|
#39 | |
Member
mojtaba
Join Date: Dec 2014
Location: iran
Posts: 41
Rep Power: 11 |
Quote:
sepinood@sepinood-Inspiron-N5010:~/foam/foam-extend-3.1$ cat etc/prefs.sh export QT_BIN_DIR=/path/to/qmake export CUDA_ARCH=sm_30 export CUDA_ARCH=sm_30 export QT_BIN_DIR=/path/to/qmake export CUDA_ARCH=sm_30 export CUDA_ARCH=sm_30 export QT_BIN_DIR=/path/to/qmake export CUDA_ARCH=sm_30 export QT_BIN_DIR=/usr/bin/qmake sepinood@sepinood-Inspiron-N5010:~/foam/foam-extend-3.1$ |
||
February 8, 2015, 12:00 |
|
#40 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
OK, try this:
Code:
source $HOME/foam/foam-extend-3.1/etc/bashrc foam export QT_SELECT=qt4 echo "export QT_BIN_DIR=/usr/bin/qmake" > etc/prefs.sh source $HOME/foam/foam-extend-3.1/etc/bashrc ./Allwmake.firstInstall > log.make 2>&1 source $HOME/foam/foam-extend-3.1/etc/bashrc which icoFoam which paraview |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
[foam-extend.org] A problem about installation of open foam extend 3.1 | Toalchemist | OpenFOAM Installation | 1 | May 31, 2018 09:58 |
[foam-extend.org] Foam extend 3.2 wrong installation directory | geop | OpenFOAM Installation | 0 | May 11, 2016 06:52 |
[foam-extend.org] Error during the installation of foam-extend 3.1 | shipman | OpenFOAM Installation | 6 | April 18, 2016 07:37 |
ParaView-4.0.1 did not compile for foam extend 3.0 installation | mhkenergy | OpenFOAM Installation | 8 | June 4, 2014 03:26 |
64bitrhel5 OF installation instructions | mirko | OpenFOAM Installation | 2 | August 12, 2008 19:07 |