<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://lwpwiki.webhosting.rug.nl/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Lwpadmin</id>
	<title>LWP-Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://lwpwiki.webhosting.rug.nl/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Lwpadmin"/>
	<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=Special:Contributions/Lwpadmin"/>
	<updated>2026-04-29T16:58:32Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.3</generator>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=Docker_rootless&amp;diff=988</id>
		<title>Docker rootless</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=Docker_rootless&amp;diff=988"/>
		<updated>2022-04-28T13:05:52Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Docker-faq]]&lt;br /&gt;
&lt;br /&gt;
We have made it possible to run docker containers rootless now. Ie. as a normal user, without root access (for in depth info see: https://docs.docker.com/engine/security/rootless).&lt;br /&gt;
&lt;br /&gt;
You need to prepare your system:&lt;br /&gt;
  $ dockerd-rootless-setuptool.sh&lt;br /&gt;
&lt;br /&gt;
By default this will store docker images in &amp;lt;kbd&amp;gt;~/.local/share/docker&amp;lt;/kbd&amp;gt;. Unfortunately this does not work correctly with a network mounted homedisk. There are 2 ways of resolving this, but only use one of them, because they conflict with each other.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution 1&#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To solve this you need to find a suitable location on your local disk to store files. Usually &amp;lt;kbd&amp;gt;/mnt/D&amp;lt;/kbd&amp;gt; is a good location.&lt;br /&gt;
You set this by editing the &amp;lt;kbd&amp;gt;data-root&amp;lt;/kbd&amp;gt; in &amp;lt;kbd&amp;gt;~/.config/docker/daemon.json&amp;lt;/kbd&amp;gt;. Example:&lt;br /&gt;
  $ d=/mnt/D/docker; f=~/.config/docker/daemon.json&lt;br /&gt;
  $ mkdir -p $d&lt;br /&gt;
  $ echo &amp;quot;$((cat $f || echo {}) | jq &#039;.&amp;quot;data-root&amp;quot; = &amp;quot;&#039;$d&#039;&amp;quot;&#039;)&amp;quot; &amp;gt; $f&lt;br /&gt;
  $ systemctl --user restart docker&lt;br /&gt;
&lt;br /&gt;
You can also edit this file with a text editor.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution 2&#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
An alternative approach is to store a small ext4 formatted diskimage in your homedir:&lt;br /&gt;
  $ truncate -s 25G ~/.docker.img&lt;br /&gt;
  $ nfs4_setfacl -a &#039;A::nobody@rug.nl:X&#039; ~&lt;br /&gt;
  $ nfs4_setfacl -a &#039;A::nobody@rug.nl:RWX&#039; ~/.docker.img &lt;br /&gt;
  $ mkfs.ext4 -E root_owner -m0 -L docker ~/.docker.img&lt;br /&gt;
  $ chmod 755 ~/.local/share&lt;br /&gt;
Now you need to make sure this disk image is mounted when you login:&lt;br /&gt;
  $ cat ~/.pam_mount.conf.xml &amp;lt;&amp;lt;EOF&lt;br /&gt;
  &amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;&lt;br /&gt;
  &amp;lt;!DOCTYPE pam_mount SYSTEM &amp;quot;pam_mount.conf.xml.dtd&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;pam_mount&amp;gt;&lt;br /&gt;
    &amp;lt;volume fstype=&amp;quot;ext4&amp;quot; mountpoint=&amp;quot;~/.local/share/docker&amp;quot; options=&amp;quot;async,nosuid,loop,exec,noatime,nodev&amp;quot; path=&amp;quot;~/.docker.img&amp;quot; /&amp;gt;&lt;br /&gt;
  &amp;lt;/pam_mount&amp;gt;&lt;br /&gt;
  EOF&lt;br /&gt;
Then logout and login again (or do &amp;lt;kbd&amp;gt;ssh 127.0.0.1 exit&amp;lt;/kbd&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
=== testing docker ===&lt;br /&gt;
&lt;br /&gt;
 $ docker run hello-world&lt;br /&gt;
 $ docker run -it ubuntu bash&lt;br /&gt;
 $ docker run -d -p 8881:8080 inanimate/echo-server&lt;br /&gt;
Then check in your browser &amp;lt;kbd&amp;gt;localhost:8881&amp;lt;/kbd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Standard docker installation ==&lt;br /&gt;
&lt;br /&gt;
It is still possible to request a standard docker installation (ie. the docker daemon runs as root) for your personal LWP (ie. not for any shared system such as systems in the computer labs or https://vlwp.rug.nl).&lt;br /&gt;
&lt;br /&gt;
=== Personal use: ===&lt;br /&gt;
 - just send a message to mailto:lwp@rug.nl stating your intentions&lt;br /&gt;
 - by default you will be able to run any container but will not be able to mount a local path into the container.&lt;br /&gt;
 - these limitations can be lifted on a case by case basis (ie. we have to know about it)&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=985</id>
		<title>OpenFOAM</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=985"/>
		<updated>2022-04-05T09:51:32Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Both openFOAM repositories (org &amp;amp; com) are available on the LWP. Instructions on how to install packages on the LWP can be found [[install packages| here]]. Students do not have permission to install software, because the PCs in the computer rooms need to diverge as little as possible, but you can send us a request to install it on your system, by using the &amp;quot;support request&amp;quot; icon on the desktop or selecting it from the menu.  &lt;br /&gt;
&lt;br /&gt;
Since there are quite a few versions of openFOAM(com/org) and it&#039;s extensions floating around, installing a version on a system can cause conflicts for other users on that system. Thankfully it&#039;s possible to install a version or extensions into your own home directory without requiring elevated privileges. This way multiple users on the same system can use their own versions and extensions. Compilation of some of these will take some time.  &lt;br /&gt;
&lt;br /&gt;
The FOAM extensions described here have been verified to work for unprivileged users.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Install (&#039;&#039;or request we install if you login with a S#&#039;&#039;) the following packages on your system&#039;&#039;&#039;:&lt;br /&gt;
 $ sudo apt install openfoam2112 openfoam2112-dev&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Requirements for openFOAM&#039;&#039;&#039;:&lt;br /&gt;
 cd ~&lt;br /&gt;
 mkdir foam&lt;br /&gt;
 cd foam&lt;br /&gt;
 echo &amp;quot;source /usr/lib/openfoam/openfoam2112/etc/bashrc&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 openfoam2112&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing foam-extend-4.1&#039;&#039;&#039;:&amp;lt;br&amp;gt;&lt;br /&gt;
If you&#039;ve skipped the &amp;quot;Requirements&amp;quot; part then run the following commands first:&lt;br /&gt;
 source /usr/lib/openfoam/openfoam2112/etc/bashrc&lt;br /&gt;
 fe41&lt;br /&gt;
&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 git clone git://git.code.sf.net/p/foam-extend/foam-extend-4.1&lt;br /&gt;
 cd foam-extend-4.1&lt;br /&gt;
 source etc/bashrc&lt;br /&gt;
 echo &amp;quot;alias fe41=&#039;. ~/foam/foam-extend-4.1/etc/bashrc&#039;&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 ./Allwmake.firstInstall -j8   &#039;&#039;# the -j&amp;lt;number&amp;gt; refers to the number of CPU cores to use for compiling the software (more = faster)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
 # You will be asked to proceed WITHOUT compiling Paraview; Choose &#039;&#039;yes&#039;&#039;. The supplied version is much older then the one currently installed.&lt;br /&gt;
 Proceed without compiling ParaView [Y/n] y&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;To use the latest version of Paraview, follow the instructions [[Paraview| here]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing OlaFlow&#039;&#039;&#039;:&amp;lt;br&amp;gt;&lt;br /&gt;
If you&#039;ve skipped the &amp;quot;Requirements&amp;quot; part then run the following command first:&lt;br /&gt;
 source /usr/lib/openfoam/openfoam2112/etc/bashrc&lt;br /&gt;
&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 git clone https://github.com/phicau/olaFlow.git&lt;br /&gt;
 cd olaFlow&lt;br /&gt;
 ./allMake -j8&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing solids4foam&#039;&#039;&#039;:&amp;lt;br&amp;gt;&lt;br /&gt;
If you&#039;ve skipped the &amp;quot;Requirements&amp;quot; part then run the following command first:&lt;br /&gt;
 source /usr/lib/openfoam/openfoam2112/etc/bashrc&lt;br /&gt;
&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 mkdir -p $FOAM_RUN&lt;br /&gt;
 cd $FOAM_RUN/..&lt;br /&gt;
 git clone https://bitbucket.org/philip_cardiff/solids4foam-release.git&lt;br /&gt;
 cd solids4foam-release&lt;br /&gt;
 ./Allwmake -j8&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=984</id>
		<title>OpenFOAM</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=984"/>
		<updated>2022-03-31T10:35:59Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Both openFOAM repositories (org &amp;amp; com) are available on the LWP. Instructions on how to install packages on the LWP can be found [[install packages| here]]. Students do not have permission to install software, because the PCs in the computer rooms need to diverge as little as possible, but you can send us a request to install it on your system, by using the &amp;quot;support request&amp;quot; icon on the desktop or selecting it from the menu.  &lt;br /&gt;
&lt;br /&gt;
Since there are quite a few versions of openFOAM(com/org) and it&#039;s extensions floating around, installing a version on a system can cause conflicts for other users on that system. Thankfully it&#039;s possible to install a version or extensions into your own home directory without requiring elevated privileges. This way multiple users on the same system can use their own versions and extensions. Compilation of some of these will take some time.  &lt;br /&gt;
&lt;br /&gt;
The FOAM extensions described here have been verified to work for unprivileged users.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Install (&#039;&#039;or request we install if you login with a S#&#039;&#039;) the following packages on your system&#039;&#039;&#039;:&lt;br /&gt;
 $ sudo apt install openfoam2112 openfoam2112-dev&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Requirements for openFOAM&#039;&#039;&#039;:&lt;br /&gt;
 cd ~&lt;br /&gt;
 mkdir foam&lt;br /&gt;
 cd foam&lt;br /&gt;
 echo &amp;quot;source /usr/lib/openfoam/openfoam2112/etc/bashrc&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 openfoam2112&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing foam-extend-4.1&#039;&#039;&#039;:&amp;lt;br&amp;gt;&lt;br /&gt;
If you&#039;ve skipped the &amp;quot;Requirements&amp;quot; part then run the following command first:&lt;br /&gt;
 source /usr/lib/openfoam/openfoam2112/etc/bashrc&lt;br /&gt;
&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 git clone git://git.code.sf.net/p/foam-extend/foam-extend-4.1&lt;br /&gt;
 cd foam-extend-4.1&lt;br /&gt;
 source etc/bashrc&lt;br /&gt;
 echo &amp;quot;alias fe41=&#039;. ~/foam/foam-extend-4.1/etc/bashrc&#039;&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 ./Allwmake.firstInstall -j8   &#039;&#039;# the -j&amp;lt;number&amp;gt; refers to the number of CPU cores to use for compiling the software (more = faster)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
 # You will be asked to proceed WITHOUT compiling Paraview; Choose &#039;&#039;yes&#039;&#039;. The supplied version is much older then the one currently installed.&lt;br /&gt;
 Proceed without compiling ParaView [Y/n] y&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;To use the latest version of Paraview, follow the instructions [[Paraview| here]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing OlaFlow&#039;&#039;&#039;:&amp;lt;br&amp;gt;&lt;br /&gt;
If you&#039;ve skipped the &amp;quot;Requirements&amp;quot; part then run the following command first:&lt;br /&gt;
 source /usr/lib/openfoam/openfoam2112/etc/bashrc&lt;br /&gt;
&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 git clone https://github.com/phicau/olaFlow.git&lt;br /&gt;
 cd olaFlow&lt;br /&gt;
 ./allMake -j8&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing solids4foam&#039;&#039;&#039;:&amp;lt;br&amp;gt;&lt;br /&gt;
If you&#039;ve skipped the &amp;quot;Requirements&amp;quot; part then run the following command first:&lt;br /&gt;
 source /usr/lib/openfoam/openfoam2112/etc/bashrc&lt;br /&gt;
&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 mkdir -p $FOAM_RUN&lt;br /&gt;
 cd $FOAM_RUN/..&lt;br /&gt;
 git clone https://bitbucket.org/philip_cardiff/solids4foam-release.git&lt;br /&gt;
 ./Allwmake -j8&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=983</id>
		<title>OpenFOAM</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=983"/>
		<updated>2022-03-31T10:34:59Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Both openFOAM repositories (org &amp;amp; com) are available on the LWP. Instructions on how to install packages on the LWP can be found [[install packages| here]]. Students do not have permission to install software, because the PCs in the computer rooms need to diverge as little as possible, but you can send us a request to install it on your system, by using the &amp;quot;support request&amp;quot; icon on the desktop or selecting it from the menu.  &lt;br /&gt;
&lt;br /&gt;
Since there are quite a few versions of openFOAM(com/org) and it&#039;s extensions floating around, installing a version on a system can cause conflicts for other users on that system. Thankfully it&#039;s possible to install a version or extensions into your own home directory without requiring elevated privileges. This way multiple users on the same system can use their own versions and extensions. Compilation of some of these will take some time.  &lt;br /&gt;
&lt;br /&gt;
The FOAM extensions described here have been verified to work for unprivileged users.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Install (&#039;&#039;or request we install if you login with a S#&#039;&#039;) the following packages on your system&#039;&#039;&#039;:&lt;br /&gt;
 $ sudo apt install openfoam2112 openfoam2112-dev&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Set up the requirements for openFOAM&#039;&#039;&#039;:&lt;br /&gt;
 cd ~&lt;br /&gt;
 mkdir foam&lt;br /&gt;
 cd foam&lt;br /&gt;
 echo &amp;quot;source /usr/lib/openfoam/openfoam2112/etc/bashrc&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 openfoam2112&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing foam-extend-4.1&#039;&#039;&#039;:&amp;lt;br&amp;gt;&lt;br /&gt;
If you&#039;ve skipped the part &amp;quot;Set up the requirements&amp;quot; then run the following command first:&lt;br /&gt;
 source /usr/lib/openfoam/openfoam2112/etc/bashrc&lt;br /&gt;
&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 git clone git://git.code.sf.net/p/foam-extend/foam-extend-4.1&lt;br /&gt;
 cd foam-extend-4.1&lt;br /&gt;
 source etc/bashrc&lt;br /&gt;
 echo &amp;quot;alias fe41=&#039;. ~/foam/foam-extend-4.1/etc/bashrc&#039;&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 ./Allwmake.firstInstall -j8   &#039;&#039;# the -j&amp;lt;number&amp;gt; refers to the number of CPU cores to use for compiling the software (more = faster)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
 # You will be asked to proceed WITHOUT compiling Paraview; Choose &#039;&#039;yes&#039;&#039;. The supplied version is much older then the one currently installed.&lt;br /&gt;
 Proceed without compiling ParaView [Y/n] y&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;To use the latest version of Paraview, follow the instructions [[Paraview| here]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing OlaFlow&#039;&#039;&#039;:&amp;lt;br&amp;gt;&lt;br /&gt;
If you&#039;ve skipped the part &amp;quot;Set up the requirements&amp;quot; then run the following command first:&lt;br /&gt;
 source /usr/lib/openfoam/openfoam2112/etc/bashrc&lt;br /&gt;
&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 git clone https://github.com/phicau/olaFlow.git&lt;br /&gt;
 cd olaFlow&lt;br /&gt;
 ./allMake -j8&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing solids4foam&#039;&#039;&#039;:&amp;lt;br&amp;gt;&lt;br /&gt;
If you&#039;ve skipped the part &amp;quot;Set up the requirements&amp;quot; then run the following command first:&lt;br /&gt;
 source /usr/lib/openfoam/openfoam2112/etc/bashrc&lt;br /&gt;
&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 mkdir -p $FOAM_RUN&lt;br /&gt;
 cd $FOAM_RUN/..&lt;br /&gt;
 git clone https://bitbucket.org/philip_cardiff/solids4foam-release.git&lt;br /&gt;
 ./Allwmake -j8&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=982</id>
		<title>OpenFOAM</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=982"/>
		<updated>2022-03-31T10:33:54Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Both openFOAM repositories (org &amp;amp; com) are available on the LWP. Instructions on how to install packages on the LWP can be found [[install packages| here]]. Students do not have permission to install software, because the PCs in the computer rooms need to diverge as little as possible, but you can send us a request to install it on your system, by using the &amp;quot;support request&amp;quot; icon on the desktop or selecting it from the menu.  &lt;br /&gt;
&lt;br /&gt;
Since there are quite a few versions of openFOAM(com/org) and it&#039;s extensions floating around, installing a version on a system can cause conflicts for other users on that system. Thankfully it&#039;s possible to install a version or extensions into your own home directory without requiring elevated privileges. This way multiple users on the same system can use their own versions and extensions. Compilation of some of these will take some time.  &lt;br /&gt;
&lt;br /&gt;
The FOAM extensions described here have been verified to work for unprivileged users.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Install (&#039;&#039;or request we install if you login with a S#&#039;&#039;) the following packages on your system&#039;&#039;&#039;:&lt;br /&gt;
 $ sudo apt install openfoam2112 openfoam2112-dev&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Set up the requirements for openFOAM&#039;&#039;&#039;:&lt;br /&gt;
 cd ~&lt;br /&gt;
 mkdir foam&lt;br /&gt;
 cd foam&lt;br /&gt;
 echo &amp;quot;source /usr/lib/openfoam/openfoam2112/etc/bashrc&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 openfoam2112&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing foam-extend-4.1&#039;&#039;&#039;:  &lt;br /&gt;
If you&#039;ve skipped the part &amp;quot;Set up the requirements&amp;quot; then run the following command first:&lt;br /&gt;
 source /usr/lib/openfoam/openfoam2112/etc/bashrc&lt;br /&gt;
&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 git clone git://git.code.sf.net/p/foam-extend/foam-extend-4.1&lt;br /&gt;
 cd foam-extend-4.1&lt;br /&gt;
 source etc/bashrc&lt;br /&gt;
 echo &amp;quot;alias fe41=&#039;. ~/foam/foam-extend-4.1/etc/bashrc&#039;&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 ./Allwmake.firstInstall -j8   &#039;&#039;# the -j&amp;lt;number&amp;gt; refers to the number of CPU cores to use for compiling the software (more = faster)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
 # You will be asked to proceed WITHOUT compiling Paraview; Choose &#039;&#039;yes&#039;&#039;. The supplied version is much older then the one currently installed.&lt;br /&gt;
 Proceed without compiling ParaView [Y/n] y&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;To use the latest version of Paraview, follow the instructions [[Paraview| here]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing OlaFlow&#039;&#039;&#039;:  &lt;br /&gt;
If you&#039;ve skipped the part &amp;quot;Set up the requirements&amp;quot; then run the following command first:&lt;br /&gt;
 source /usr/lib/openfoam/openfoam2112/etc/bashrc&lt;br /&gt;
&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 git clone https://github.com/phicau/olaFlow.git&lt;br /&gt;
 cd olaFlow&lt;br /&gt;
 ./allMake -j8&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing solids4foam&#039;&#039;&#039;:  &lt;br /&gt;
If you&#039;ve skipped the part &amp;quot;Set up the requirements&amp;quot; then run the following command first:&lt;br /&gt;
 source /usr/lib/openfoam/openfoam2112/etc/bashrc&lt;br /&gt;
&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 mkdir -p $FOAM_RUN&lt;br /&gt;
 cd $FOAM_RUN/..&lt;br /&gt;
 git clone https://bitbucket.org/philip_cardiff/solids4foam-release.git&lt;br /&gt;
 ./Allwmake -j8&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=981</id>
		<title>OpenFOAM</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=981"/>
		<updated>2022-03-31T10:31:21Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Both openFOAM repositories (org &amp;amp; com) are available on the LWP. Instructions on how to install packages on the LWP can be found [[install packages| here]]. Students do not have permission to install software, because the PCs in the computer rooms need to diverge as little as possible, but you can send us a request to install it on your system, by using the &amp;quot;support request&amp;quot; icon on the desktop or selecting it from the menu.  &lt;br /&gt;
&lt;br /&gt;
Since there are quite a few versions of openFOAM(com/org) and it&#039;s extensions floating around, installing a version on a system can cause conflicts for other users on that system. Thankfully it&#039;s possible to install a version or extensions into your own home directory without requiring elevated privileges. This way multiple users on the same system can use their own versions and extensions. Compilation of some of these will take some time.  &lt;br /&gt;
&lt;br /&gt;
The FOAM extensions described here have been verified to work for unprivileged users.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Install (&#039;&#039;or request we install if you login with a S#&#039;&#039;) the following packages on your system&#039;&#039;&#039;:&lt;br /&gt;
 $ sudo apt install openfoam2112 openfoam2112-dev&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Set up the requirements for openFOAM&#039;&#039;&#039;:&lt;br /&gt;
 cd ~&lt;br /&gt;
 mkdir foam&lt;br /&gt;
 cd foam&lt;br /&gt;
 echo &amp;quot;source /usr/lib/openfoam/openfoam2112/etc/bashrc&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 openfoam2112&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing foam-extend-4.1&#039;&#039;&#039;:&lt;br /&gt;
 # If you&#039;ve skipped the part &amp;quot;Set up the requirements&amp;quot; then run the following command first:&lt;br /&gt;
 source /usr/lib/openfoam/openfoam2112/etc/bashrc&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 git clone git://git.code.sf.net/p/foam-extend/foam-extend-4.1&lt;br /&gt;
 cd foam-extend-4.1&lt;br /&gt;
 source etc/bashrc&lt;br /&gt;
 echo &amp;quot;alias fe41=&#039;. ~/foam/foam-extend-4.1/etc/bashrc&#039;&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 ./Allwmake.firstInstall -j8   &#039;&#039;# the -j&amp;lt;number&amp;gt; refers to the number of CPU cores to use for compiling the software (more = faster)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
 # You will be asked to proceed WITHOUT compiling Paraview; Choose &#039;&#039;yes&#039;&#039;. The supplied version is much older then the one currently installed.&lt;br /&gt;
 Proceed without compiling ParaView [Y/n] y&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;To use the latest version of Paraview, follow the instructions [[Paraview| here]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing OlaFlow&#039;&#039;&#039;:&lt;br /&gt;
If you&#039;ve skipped the part &amp;quot;Set up the requirements&amp;quot; then run the following command first:&lt;br /&gt;
 source /usr/lib/openfoam/openfoam2112/etc/bashrc&lt;br /&gt;
&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 git clone https://github.com/phicau/olaFlow.git&lt;br /&gt;
 cd olaFlow&lt;br /&gt;
 ./allMake -j8&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing solids4foam&#039;&#039;&#039;:&lt;br /&gt;
If you&#039;ve skipped the part &amp;quot;Set up the requirements&amp;quot; then run the following command first:&lt;br /&gt;
 source /usr/lib/openfoam/openfoam2112/etc/bashrc&lt;br /&gt;
&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 mkdir -p $FOAM_RUN&lt;br /&gt;
 cd $FOAM_RUN/..&lt;br /&gt;
 git clone https://bitbucket.org/philip_cardiff/solids4foam-release.git&lt;br /&gt;
 ./Allwmake -j8&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=980</id>
		<title>OpenFOAM</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=980"/>
		<updated>2022-03-31T10:27:21Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Both openFOAM repositories (org &amp;amp; com) are available on the LWP. Instructions on how to install packages on the LWP can be found [[install packages| here]]. Students do not have permission to install software, because the PCs in the computer rooms need to diverge as little as possible, but you can send us a request to install it on your system, by using the &amp;quot;support request&amp;quot; icon on the desktop or selecting it from the menu.  &lt;br /&gt;
&lt;br /&gt;
Since there are quite a few versions of openFOAM(com/org) and it&#039;s extensions floating around, installing a version on a system can cause conflicts for other users on that system. Thankfully it&#039;s possible to install a version or extensions into your own home directory without requiring elevated privileges. This way multiple users on the same system can use their own versions and extensions. Compilation of some of these will take some time.  &lt;br /&gt;
&lt;br /&gt;
The FOAM extensions described here have been verified to work for unprivileged users.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Install (&#039;&#039;or request we install if you login with a S#&#039;&#039;) the following packages on your system&#039;&#039;&#039;:&lt;br /&gt;
 $ sudo apt install openfoam2112 openfoam2112-dev&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Set up the requirements for openFOAM&#039;&#039;&#039;:&lt;br /&gt;
 cd ~&lt;br /&gt;
 mkdir foam&lt;br /&gt;
 cd foam&lt;br /&gt;
 echo &amp;quot;source /usr/lib/openfoam/openfoam2112/etc/bashrc&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 openfoam2112&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing foam-extend-4.1&#039;&#039;&#039;:&lt;br /&gt;
 # If you&#039;ve skipped the previous steps run ththe following command:&lt;br /&gt;
 source /usr/lib/openfoam/openfoam2112/etc/bashrc&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 git clone git://git.code.sf.net/p/foam-extend/foam-extend-4.1&lt;br /&gt;
 cd foam-extend-4.1&lt;br /&gt;
 source etc/bashrc&lt;br /&gt;
 echo &amp;quot;alias fe41=&#039;. ~/foam/foam-extend-4.1/etc/bashrc&#039;&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 ./Allwmake.firstInstall -j8   &#039;&#039;# the -j&amp;lt;number&amp;gt; refers to the number of CPU cores to use for compiling the software (more = faster)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
 # You will be asked to proceed WITHOUT compiling Paraview; Choose &#039;&#039;yes&#039;&#039;. The supplied version is much older then the one currently installed.&lt;br /&gt;
 Proceed without compiling ParaView [Y/n] y&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;To use the latest version of Paraview, follow the instructions [[Paraview| here]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing OlaFlow&#039;&#039;&#039;:&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 git clone https://github.com/phicau/olaFlow.git&lt;br /&gt;
 cd olaFlow&lt;br /&gt;
 ./allMake -j8&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing solids4foam&#039;&#039;&#039;:&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 mkdir -p $FOAM_RUN&lt;br /&gt;
 cd $FOAM_RUN/..&lt;br /&gt;
 git clone https://bitbucket.org/philip_cardiff/solids4foam-release.git&lt;br /&gt;
 ./Allwmake -j8&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=979</id>
		<title>OpenFOAM</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=979"/>
		<updated>2022-03-31T10:05:43Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Both openFOAM repositories (org &amp;amp; com) are available on the LWP. Instructions on how to install packages on the LWP can be found [[install packages| here]]. Students do not have permission to install software, because the PCs in the computer rooms need to diverge as little as possible, but you can send us a request to install it on your system, by using the &amp;quot;support request&amp;quot; icon on the desktop or selecting it from the menu.  &lt;br /&gt;
&lt;br /&gt;
Since there are quite a few versions of openFOAM(com/org) and it&#039;s extensions floating around, installing a version on a system can cause conflicts for other users on that system. Thankfully it&#039;s possible to install a version or extensions into your own home directory without requiring elevated privileges. This way multiple users on the same system can use their own versions and extensions. Compilation of some of these will take some time.  &lt;br /&gt;
&lt;br /&gt;
The FOAM extensions described here have been verified to work for unprivileged users.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Install (&#039;&#039;or request we install if you login with a S#&#039;&#039;) the following packages on your system&#039;&#039;&#039;:&lt;br /&gt;
 $ sudo apt install openfoam2112 openfoam2112-dev&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Set up the requirements for openFOAM&#039;&#039;&#039;:&lt;br /&gt;
 cd ~&lt;br /&gt;
 mkdir foam&lt;br /&gt;
 cd foam&lt;br /&gt;
 echo &amp;quot;source /usr/lib/openfoam/openfoam2112/etc/bashrc&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 openfoam2112&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing foam-extend-4.1&#039;&#039;&#039;:&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 git clone git://git.code.sf.net/p/foam-extend/foam-extend-4.1&lt;br /&gt;
 cd foam-extend-4.1&lt;br /&gt;
 source etc/bashrc&lt;br /&gt;
 echo &amp;quot;alias fe41=&#039;. ~/foam/foam-extend-4.1/etc/bashrc&#039;&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 ./Allwmake.firstInstall -j8   &#039;&#039;# the -j&amp;lt;number&amp;gt; refers to the number of CPU cores to use for compiling the software (more = faster)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
 # You will be asked to proceed WITHOUT compiling Paraview; Choose &#039;&#039;yes&#039;&#039;. The supplied version is much older then the one currently installed.&lt;br /&gt;
 Proceed without compiling ParaView [Y/n] y&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;To use the latest version of Paraview, follow the instructions [[Paraview| here]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing OlaFlow&#039;&#039;&#039;:&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 git clone https://github.com/phicau/olaFlow.git&lt;br /&gt;
 cd olaFlow&lt;br /&gt;
 ./allMake -j8&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing solids4foam&#039;&#039;&#039;:&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 mkdir -p $FOAM_RUN&lt;br /&gt;
 cd $FOAM_RUN/..&lt;br /&gt;
 git clone https://bitbucket.org/philip_cardiff/solids4foam-release.git&lt;br /&gt;
 ./Allwmake -j8&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=978</id>
		<title>OpenFOAM</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=978"/>
		<updated>2022-03-31T09:55:36Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Both openFOAM repositories (org &amp;amp; com) are available on the LWP. Instructions on how to install packages on the LWP can be found [[install packages| here]]. Students do not have permission to install software, because the PCs in the computer rooms need to diverge as little as possible, but you can send us a request to install it on your system, by using the &amp;quot;support request&amp;quot; icon on the desktop or selecting it from the menu.  &lt;br /&gt;
&lt;br /&gt;
Since there are quite a few versions of openFOAM(com/org) and it&#039;s extensions floating around, installing a version on a system can cause conflicts for other users on that system. Thankfully it&#039;s possible to install a version or extensions into your own home directory without requiring elevated privileges. This way multiple users on the same system can use their own versions and extensions. Compilation of some of these will take some time.  &lt;br /&gt;
&lt;br /&gt;
The FOAM extensions described here have been verified to work for unprivileged users.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Install (&#039;&#039;or request we install if you login with a S#&#039;&#039;) the following packages on your system&#039;&#039;&#039;:&lt;br /&gt;
 $ sudo apt install openfoam2112 openfoam2112-dev&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Set up the requirements for openFOAM&#039;&#039;&#039;:&lt;br /&gt;
 cd ~&lt;br /&gt;
 mkdir foam&lt;br /&gt;
 cd foam&lt;br /&gt;
 echo &amp;quot;source /usr/lib/openfoam/openfoam2112/etc/bashrc&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 openfoam2112&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing foam-extend-4.1&#039;&#039;&#039;:&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 git clone git://git.code.sf.net/p/foam-extend/foam-extend-4.1&lt;br /&gt;
 cd foam-extend-4.1&lt;br /&gt;
 source etc/bashrc&lt;br /&gt;
 echo &amp;quot;alias fe41=&#039;. ~/foam/foam-extend-4.1/etc/bashrc&#039;&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 ./Allwmake.firstInstall -j8   &#039;&#039;# the -j&amp;lt;number&amp;gt; refers to the number of CPU cores to use for compiling the software (more = faster)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
 # You will be asked to proceed WITHOUT compiling Paraview; Choose &#039;&#039;yes&#039;&#039;. The supplied version is much older then the one currently installed.&lt;br /&gt;
 Proceed without compiling ParaView [Y/n] y&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;To use the latest version of Paraview, follow the instructions [[Paraview| here]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing OlaFlow&#039;&#039;&#039;:&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 git clone git://github.com/phicau/olaFlow.git&lt;br /&gt;
 cd olaFlow&lt;br /&gt;
 ./allMake -j8&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing solids4foam&#039;&#039;&#039;:&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 mkdir -p $FOAM_RUN&lt;br /&gt;
 cd $FOAM_RUN/..&lt;br /&gt;
 git clone https://bitbucket.org/philip_cardiff/solids4foam-release.git&lt;br /&gt;
 ./Allwmake -j8&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=Paraview&amp;diff=977</id>
		<title>Paraview</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=Paraview&amp;diff=977"/>
		<updated>2022-03-31T09:51:37Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Using the latest version of Paraview ==&lt;br /&gt;
&lt;br /&gt;
Depending on your graphics card you&#039;ll need an OpenGL variant for Paraview to work:&lt;br /&gt;
 sudo apt install libopengl0&lt;br /&gt;
&lt;br /&gt;
Download the latest version of the [https://www.paraview.org/download/ full suite of ParaView tools].  &lt;br /&gt;
 cd ~&lt;br /&gt;
 mkdir opt&lt;br /&gt;
 cd opt&lt;br /&gt;
 tar xzf ~/Downloads/ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz&lt;br /&gt;
 echo &amp;quot;export PATH=~/opt/ParaView-5.10.1-MPI-Linux-Python3.9-x86_64/bin:$PATH&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=Paraview&amp;diff=976</id>
		<title>Paraview</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=Paraview&amp;diff=976"/>
		<updated>2022-03-31T08:43:42Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: Created page with &amp;quot;Using the latest version of Paraview  Download the latest &amp;quot;full suite&amp;quot; of [https://www.paraview.org/download/ Paraview]  curl https://www.paraview.org/paraview-downloads/downl...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Using the latest version of Paraview&lt;br /&gt;
&lt;br /&gt;
Download the latest &amp;quot;full suite&amp;quot; of [https://www.paraview.org/download/ Paraview]&lt;br /&gt;
 curl https://www.paraview.org/paraview-downloads/download.php\?submit=Download\&amp;amp;version=v5.10\&amp;amp;type=binary\&amp;amp;os=Linux\&amp;amp;downloadFile=ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz -o ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
cd /opt&lt;br /&gt;
sudo tar xvfz ~/Downloads/ParaView-5.7.0-MPI-Linux-Python3.7-64bit.tar.gz&lt;br /&gt;
&lt;br /&gt;
and then add&lt;br /&gt;
&lt;br /&gt;
# Paraview&lt;br /&gt;
export PATH=/opt/ParaView-5.7.0-MPI-Linux-Python3.7-64bit/bin:$PATH&lt;br /&gt;
&lt;br /&gt;
to the end of ~/.bashrc&lt;br /&gt;
&lt;br /&gt;
Depending on your graphics card you&#039;ll need an OpenGL variant for paraview to work:&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
sudo apt install libopengl0&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=Software&amp;diff=975</id>
		<title>Software</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=Software&amp;diff=975"/>
		<updated>2022-03-31T08:40:21Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:software-faq]]&lt;br /&gt;
* [[choose packages| How to figure out which package to install/request]]&lt;br /&gt;
* [[install packages| How to install packages from the available repositories]]&lt;br /&gt;
* [[Using LWP software from a non-LWP]]&lt;br /&gt;
* [[software arb|Using &amp;quot;ARB&amp;quot; (microbiology software)]]&lt;br /&gt;
* [[software gurobi|Using &amp;quot;Gurobi&amp;quot; (mathematical programming optimization software)]]&lt;br /&gt;
* [[Using the Intel Fortran compiler]]&lt;br /&gt;
* [[How to disable the emacs splash screen]]&lt;br /&gt;
* [[Using newer gcc in /opt/netapps]]&lt;br /&gt;
* [[Skype can&#039;t hear me]]&lt;br /&gt;
* [[Subversion (svn) authentication fails]]&lt;br /&gt;
* [[GSI-software| Configure your LWP for use with Global GSI-software system]]&lt;br /&gt;
* [[How to set a default program]]&lt;br /&gt;
* [[Gromacs 2016.3 on /opt/netapps]]&lt;br /&gt;
* [[VOTCA on /opt/netapps]]&lt;br /&gt;
* [[DAMASK on /opt/netapps]]&lt;br /&gt;
* [[code::blocks on /opt/netapps]]&lt;br /&gt;
* [[Dropbox]]&lt;br /&gt;
* [[Paraview]]&lt;br /&gt;
* [[OpenFOAM]]&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=974</id>
		<title>OpenFOAM</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=974"/>
		<updated>2022-03-31T08:39:19Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Both openFOAM repositories (org &amp;amp; com) are available on the LWP. Instructions on how to install packages on the LWP can be found [[install packages| here]]. Students do not have permission to install software, because the PCs in the computer rooms need to diverge as little as possible, but you can send us a request to install it on your system, by using the &amp;quot;support request&amp;quot; icon on the desktop or selecting it from the menu.  &lt;br /&gt;
&lt;br /&gt;
Since there are quite a few versions of openFOAM(com/org) and it&#039;s extensions floating around, installing a version on a system can cause conflicts for other users on that system. Thankfully it&#039;s possible to install a version or extensions into your own home directory without requiring elevated privileges. This way multiple users on the same system can use their own versions and extensions. Compilation of some of these will take some time.  &lt;br /&gt;
&lt;br /&gt;
The FOAM extensions described here have been verified to work for unprivileged users.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Install (&#039;&#039;or request we install if you login with a S#&#039;&#039;) the following packages on your system&#039;&#039;&#039;:&lt;br /&gt;
 $ sudo apt install openfoam2112 openfoam2112-dev&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Set up the requirements for openFOAM&#039;&#039;&#039;:&lt;br /&gt;
 cd ~&lt;br /&gt;
 mkdir foam&lt;br /&gt;
 cd foam&lt;br /&gt;
 echo &amp;quot;source /usr/lib/openfoam/openfoam2112/etc/bashrc&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 openfoam2112&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing foam-extend-4.1&#039;&#039;&#039;:&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 git clone git://git.code.sf.net/p/foam-extend/foam-extend-4.1&lt;br /&gt;
 cd foam-extend-4.1&lt;br /&gt;
 source etc/bashrc&lt;br /&gt;
 echo &amp;quot;alias fe41=&#039;. ~/foam/foam-extend-4.1/etc/bashrc&#039;&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 ./Allwmake.firstInstall -j8   &#039;&#039;# the -j&amp;lt;number&amp;gt; refers to the number of CPU cores to use for compiling the software (more = faster)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
 # You will be asked to proceed WITHOUT compiling Paraview; Choose &#039;&#039;yes&#039;&#039;. The supplied version is much older then the one currently installed.&lt;br /&gt;
 Proceed without compiling ParaView [Y/n] y&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing OlaFlow&#039;&#039;&#039;:&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 git clone git://github.com/phicau/olaFlow.git&lt;br /&gt;
 cd olaFlow&lt;br /&gt;
 ./allMake -j8&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing solids4foam&#039;&#039;&#039;:&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 mkdir -p $FOAM_RUN&lt;br /&gt;
 cd $FOAM_RUN/..&lt;br /&gt;
 git clone https://bitbucket.org/philip_cardiff/solids4foam-release.git&lt;br /&gt;
 ./Allwmake -j8&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=973</id>
		<title>OpenFOAM</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=973"/>
		<updated>2022-03-31T08:31:16Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Both openFOAM repositories (org &amp;amp; com) are available on the LWP. Instructions on how to install packages on the LWP can be found [[install packages| here]]. Students do not have permission to install software, because the PCs in the computer rooms need to diverge as little as possible, but you can send us a request to install it on your system, by using the &amp;quot;support request&amp;quot; icon on the desktop or selecting it from the menu.  &lt;br /&gt;
&lt;br /&gt;
Since there are quite a few versions of openFOAM(com/org) and it&#039;s extensions floating around, installing a version on a system can cause conflicts for other users on that system. Thankfully it&#039;s possible to install a version or extensions into your own home directory without requiring elevated privileges. This way multiple users on the same system can use their own versions and extensions. Compilation of some of these will take some time.  &lt;br /&gt;
&lt;br /&gt;
The FOAM extensions described here have been verified to work for unprivileged users.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Install (&#039;&#039;or request we install&#039;&#039;) the following packages on your system&#039;&#039;&#039;:&lt;br /&gt;
 $ sudo apt install openfoam2112 openfoam2112-dev&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Set up the requirements for openFOAM&#039;&#039;&#039;:&lt;br /&gt;
 cd ~&lt;br /&gt;
 mkdir foam&lt;br /&gt;
 cd foam&lt;br /&gt;
 echo &amp;quot;source /usr/lib/openfoam/openfoam2112/etc/bashrc&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 openfoam2112&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing foam-extend-4.1&#039;&#039;&#039;:&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 git clone git://git.code.sf.net/p/foam-extend/foam-extend-4.1&lt;br /&gt;
 cd foam-extend-4.1&lt;br /&gt;
 source etc/bashrc&lt;br /&gt;
 echo &amp;quot;alias fe41=&#039;. ~/foam/foam-extend-4.1/etc/bashrc&#039;&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 ./Allwmake.firstInstall -j8   &#039;&#039;# the -j&amp;lt;number&amp;gt; refers to the number of CPU cores to use for compiling the software (more = faster)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
 # You will be asked a question:&lt;br /&gt;
 Proceed without compiling ParaView [Y/n] y&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing OlaFlow&#039;&#039;&#039;:&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 git clone git://github.com/phicau/olaFlow.git&lt;br /&gt;
 cd olaFlow&lt;br /&gt;
 ./allMake -j8&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing solids4foam&#039;&#039;&#039;:&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 mkdir -p $FOAM_RUN&lt;br /&gt;
 cd $FOAM_RUN/..&lt;br /&gt;
 git clone https://bitbucket.org/philip_cardiff/solids4foam-release.git&lt;br /&gt;
 ./Allwmake -j8&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=972</id>
		<title>OpenFOAM</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=972"/>
		<updated>2022-03-30T15:50:39Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Both openFOAM repositories (org &amp;amp; com) are available on the LWP. Instructions on how to install packages on the LWP can be found [[install packages| here]]. Students do not have permission to install software, because the PCs in the computer rooms need to diverge as little as possible, but you can send us a request to install it on your system, by using the &amp;quot;support request&amp;quot; icon on the desktop or selecting it from the menu.&lt;br /&gt;
&lt;br /&gt;
Since there are quite a few versions of openFOAM(com/org) and it&#039;s extensions floating around, installing a version on a system can cause conflicts for other users on that system. Thankfully the foam developers recognize this and have made it possible to install a version or extensions into your own home directory without requiring elevated privileges. This way multiple users on the same system can use their own versions and extensions. Compilation of some of these will take some time.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The FOAM extensions described here have been verified to work for unprivileged users.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Install (&#039;&#039;or request we install&#039;&#039;) the following packages on your system&#039;&#039;&#039;:&lt;br /&gt;
 $ sudo apt install openfoam2112 openfoam2112-dev&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Set up the requirements for openFOAM&#039;&#039;&#039;:&lt;br /&gt;
 cd ~&lt;br /&gt;
 mkdir foam&lt;br /&gt;
 cd foam&lt;br /&gt;
 echo &amp;quot;source /usr/lib/openfoam/openfoam2112/etc/bashrc&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 openfoam2112&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing foam-extend-4.1&#039;&#039;&#039;:&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 git clone git://git.code.sf.net/p/foam-extend/foam-extend-4.1&lt;br /&gt;
 cd foam-extend-4.1&lt;br /&gt;
 source etc/bashrc&lt;br /&gt;
 echo &amp;quot;alias fe41=&#039;. ~/foam/foam-extend-4.1/etc/bashrc&#039;&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 ./Allwmake.firstInstall -j8   &#039;&#039;# the -j&amp;lt;number&amp;gt; refers to the number of CPU cores to use for compiling the software (more = faster)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
 # You will be asked a question:&lt;br /&gt;
 Proceed without compiling ParaView [Y/n] y&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing OlaFlow&#039;&#039;&#039;:&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 git clone git://github.com/phicau/olaFlow.git&lt;br /&gt;
 cd olaFlow&lt;br /&gt;
 ./allMake -j8&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing solids4foam&#039;&#039;&#039;:&lt;br /&gt;
 cd ~/foam/&lt;br /&gt;
 mkdir -p $FOAM_RUN&lt;br /&gt;
 cd $FOAM_RUN/..&lt;br /&gt;
 git clone https://bitbucket.org/philip_cardiff/solids4foam-release.git&lt;br /&gt;
 ./Allwmake -j8&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=971</id>
		<title>OpenFOAM</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=971"/>
		<updated>2022-03-30T15:04:11Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Both openFOAM repositories (org &amp;amp; com) are available on the LWP. Instructions on how to install packages on the LWP can be found [[install packages| here]]. Students do not have permission to install software, because the PCs in the computer rooms need to diverge as little as possible, but you can send us a request to install it on your system, by using the &amp;quot;support request&amp;quot; icon on the desktop or selecting it from the menu.&lt;br /&gt;
&lt;br /&gt;
Since there are quite a few versions of openFOAM(com/org) and it&#039;s extensions floating around, installing a version on a system can cause conflicts for other users on that system. Thankfully the foam developers recognize this and have made it possible to install a version or extensions into your own home directory without requiring elevated privileges. This way multiple users on the same system can use their own versions and extensions. Compilation of some of these will take some time.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The FOAM extensions described here have been verified to work for unprivileged users.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Install (&#039;&#039;or request we install&#039;&#039;) the following packages on your system&#039;&#039;&#039;:&lt;br /&gt;
 $ sudo apt install openfoam2112 openfoam2112-dev gfortran-10&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Set up the requirements for openFOAM&#039;&#039;&#039;:&lt;br /&gt;
 cd ~&lt;br /&gt;
 mkdir foam&lt;br /&gt;
 cd foam&lt;br /&gt;
 curl https://www.paraview.org/paraview-downloads/download.php\?submit=Download\&amp;amp;version=v5.10\&amp;amp;type=binary\&amp;amp;os=Linux\&amp;amp;downloadFile=ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz -o ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz&lt;br /&gt;
 tar xzf ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz&lt;br /&gt;
 echo &amp;quot;export PATH=~/foam/ParaView-5.10.1-MPI-Linux-Python3.9-x86_64/bin:$PATH&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 echo &amp;quot;source /usr/lib/openfoam/openfoam2112/etc/bashrc&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 openfoam2112&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing foam-extend-4.1&#039;&#039;&#039;:&lt;br /&gt;
 git clone git://git.code.sf.net/p/foam-extend/foam-extend-4.1&lt;br /&gt;
 cd ~/foam/foam-extend-4.1&lt;br /&gt;
 source etc/bashrc&lt;br /&gt;
 echo &amp;quot;alias fe41=&#039;. ~/foam/foam-extend-4.1/etc/bashrc&#039;&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 ./Allwmake.firstInstall -j8 # the -j&amp;lt;number&amp;gt; refers to the number of CPU cores to use for compiling the software (more = faster)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing OlaFlow&#039;&#039;&#039;:&lt;br /&gt;
 git clone git://github.com/phicau/olaFlow.git&lt;br /&gt;
 cd olaFlow&lt;br /&gt;
 ./allMake -j8&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing solids4foam&#039;&#039;&#039;:&lt;br /&gt;
 mkdir -p $FOAM_RUN&lt;br /&gt;
 cd $FOAM_RUN/..&lt;br /&gt;
 git clone https://bitbucket.org/philip_cardiff/solids4foam-release.git&lt;br /&gt;
 ./Allwmake -j8&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=970</id>
		<title>OpenFOAM</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=970"/>
		<updated>2022-03-30T15:03:49Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Both openFOAM repositories (org &amp;amp; com) are available on the LWP. Instructions on how to install packages on the LWP can be found [[install packages| here]]. Students do not have permission to install software, because the PCs in the computer rooms need to diverge as little as possible, but you can send us a request to install it on your system, by using the &amp;quot;support request&amp;quot; icon on the desktop or selecting it from the menu.&lt;br /&gt;
&lt;br /&gt;
Since there are quite a few versions of openFOAM(com/org) and it&#039;s extensions floating around, installing a version on a system can cause conflicts for other users on that system. Thankfully the foam developers recognize this and have made it possible to install a version or extensions into your own home directory without requiring elevated privileges. This way multiple users on the same system can use their own versions and extensions. Compilation of some of these will take some time.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The FOAM extensions described here have been verified to work for unprivileged users.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Install (&#039;&#039;or request we install&#039;&#039;) the following packages on your system&#039;&#039;&#039;:&lt;br /&gt;
 $ sudo apt install openfoam2112 openfoam2112-dev gfortran-10&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Now set up the requirements for openFOAM&#039;&#039;&#039;:&lt;br /&gt;
 cd ~&lt;br /&gt;
 mkdir foam&lt;br /&gt;
 cd foam&lt;br /&gt;
 curl https://www.paraview.org/paraview-downloads/download.php\?submit=Download\&amp;amp;version=v5.10\&amp;amp;type=binary\&amp;amp;os=Linux\&amp;amp;downloadFile=ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz -o ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz&lt;br /&gt;
 tar xzf ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz&lt;br /&gt;
 echo &amp;quot;export PATH=~/foam/ParaView-5.10.1-MPI-Linux-Python3.9-x86_64/bin:$PATH&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 echo &amp;quot;source /usr/lib/openfoam/openfoam2112/etc/bashrc&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 openfoam2112&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing foam-extend-4.1&#039;&#039;&#039;:&lt;br /&gt;
 git clone git://git.code.sf.net/p/foam-extend/foam-extend-4.1&lt;br /&gt;
 cd ~/foam/foam-extend-4.1&lt;br /&gt;
 source etc/bashrc&lt;br /&gt;
 echo &amp;quot;alias fe41=&#039;. ~/foam/foam-extend-4.1/etc/bashrc&#039;&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 ./Allwmake.firstInstall -j8 # the -j&amp;lt;number&amp;gt; refers to the number of CPU cores to use for compiling the software (more = faster)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing OlaFlow&#039;&#039;&#039;:&lt;br /&gt;
 git clone git://github.com/phicau/olaFlow.git&lt;br /&gt;
 cd olaFlow&lt;br /&gt;
 ./allMake -j8&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing solids4foam&#039;&#039;&#039;:&lt;br /&gt;
 mkdir -p $FOAM_RUN&lt;br /&gt;
 cd $FOAM_RUN/..&lt;br /&gt;
 git clone https://bitbucket.org/philip_cardiff/solids4foam-release.git&lt;br /&gt;
 ./Allwmake -j8&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=969</id>
		<title>OpenFOAM</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=969"/>
		<updated>2022-03-30T15:03:23Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Both openFOAM repositories (org &amp;amp; com) are available on the LWP. Instructions on how to install packages on the LWP can be found [[install packages| here]]. Students do not have permission to install software, because the PCs in the computer rooms need to diverge as little as possible, but you can send us a request to install it on your system, by using the &amp;quot;support request&amp;quot; icon on the desktop or selecting it from the menu.&lt;br /&gt;
&lt;br /&gt;
Since there are quite a few versions of openFOAM(com/org) and it&#039;s extensions floating around, installing a version on a system can cause conflicts for other users on that system. Thankfully the foam developers recognize this and have made it possible to install a version or extensions into your own home directory without requiring elevated privileges. This way multiple users on the same system can use their own versions and extensions. Compilation of some of these will take some time.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The FOAM extensions described here have been verified to work for unprivileged users.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Install (&#039;&#039;or request we install&#039;&#039;) the following packages on your system&#039;&#039;&#039;:&lt;br /&gt;
 $ sudo apt install openfoam2112 openfoam2112-dev gfortran-10&lt;br /&gt;
&lt;br /&gt;
First set up the requirements for openFOAM:&lt;br /&gt;
 cd ~&lt;br /&gt;
 mkdir foam&lt;br /&gt;
 cd foam&lt;br /&gt;
 curl https://www.paraview.org/paraview-downloads/download.php\?submit=Download\&amp;amp;version=v5.10\&amp;amp;type=binary\&amp;amp;os=Linux\&amp;amp;downloadFile=ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz -o ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz&lt;br /&gt;
 tar xzf ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz&lt;br /&gt;
 echo &amp;quot;export PATH=~/foam/ParaView-5.10.1-MPI-Linux-Python3.9-x86_64/bin:$PATH&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 echo &amp;quot;source /usr/lib/openfoam/openfoam2112/etc/bashrc&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 openfoam2112&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing foam-extend-4.1&#039;&#039;&#039;:&lt;br /&gt;
 git clone git://git.code.sf.net/p/foam-extend/foam-extend-4.1&lt;br /&gt;
 cd ~/foam/foam-extend-4.1&lt;br /&gt;
 source etc/bashrc&lt;br /&gt;
 echo &amp;quot;alias fe41=&#039;. ~/foam/foam-extend-4.1/etc/bashrc&#039;&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 ./Allwmake.firstInstall -j8 # the -j&amp;lt;number&amp;gt; refers to the number of CPU cores to use for compiling the software (more = faster)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing OlaFlow&#039;&#039;&#039;:&lt;br /&gt;
 git clone git://github.com/phicau/olaFlow.git&lt;br /&gt;
 cd olaFlow&lt;br /&gt;
 ./allMake -j8&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing solids4foam&#039;&#039;&#039;:&lt;br /&gt;
 mkdir -p $FOAM_RUN&lt;br /&gt;
 cd $FOAM_RUN/..&lt;br /&gt;
 git clone https://bitbucket.org/philip_cardiff/solids4foam-release.git&lt;br /&gt;
 ./Allwmake -j8&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=968</id>
		<title>OpenFOAM</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=968"/>
		<updated>2022-03-30T15:02:41Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Both openFOAM repositories (org &amp;amp; com) are available on the LWP. Instructions on how to install packages on the LWP can be found [[install packages| here]]. Students do not have permission to install software, because the PCs in the computer rooms need to diverge as little as possible, but you can send us a request to install it on your system, by using the &amp;quot;support request&amp;quot; icon on the desktop or selecting it from the menu.&lt;br /&gt;
&lt;br /&gt;
Since there are quite a few versions of openFOAM(com/org) and it&#039;s extensions floating around, installing a version on a system can cause conflicts for other users on that system. Thankfully the foam developers recognize this and have made it possible to install a version or extensions into your own home directory without requiring elevated privileges. This way multiple users on the same system can use their own versions and extensions. Compilation of some of these will take some time.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The FOAM extensions described here have been verified to work for unprivileged users.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Install (or request we install) the following packages on your system:&lt;br /&gt;
 $ sudo apt install openfoam2112 openfoam2112-dev gfortran-10&lt;br /&gt;
&lt;br /&gt;
First set up the requirements for openFOAM:&lt;br /&gt;
 cd ~&lt;br /&gt;
 mkdir foam&lt;br /&gt;
 cd foam&lt;br /&gt;
 curl https://www.paraview.org/paraview-downloads/download.php\?submit=Download\&amp;amp;version=v5.10\&amp;amp;type=binary\&amp;amp;os=Linux\&amp;amp;downloadFile=ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz -o ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz&lt;br /&gt;
 tar xzf ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz&lt;br /&gt;
 echo &amp;quot;export PATH=~/foam/ParaView-5.10.1-MPI-Linux-Python3.9-x86_64/bin:$PATH&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 echo &amp;quot;source /usr/lib/openfoam/openfoam2112/etc/bashrc&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 openfoam2112&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing foam-extend-4.1&#039;&#039;&#039;:&lt;br /&gt;
 git clone git://git.code.sf.net/p/foam-extend/foam-extend-4.1&lt;br /&gt;
 cd ~/foam/foam-extend-4.1&lt;br /&gt;
 source etc/bashrc&lt;br /&gt;
 echo &amp;quot;alias fe41=&#039;. ~/foam/foam-extend-4.1/etc/bashrc&#039;&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 ./Allwmake.firstInstall -j8 # the -j&amp;lt;number&amp;gt; refers to the number of CPU cores to use for compiling the software (more = faster)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing OlaFlow&#039;&#039;&#039;:&lt;br /&gt;
 git clone git://github.com/phicau/olaFlow.git&lt;br /&gt;
 cd olaFlow&lt;br /&gt;
 ./allMake -j8&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installing solids4foam&#039;&#039;&#039;:&lt;br /&gt;
 mkdir -p $FOAM_RUN&lt;br /&gt;
 cd $FOAM_RUN/..&lt;br /&gt;
 git clone https://bitbucket.org/philip_cardiff/solids4foam-release.git&lt;br /&gt;
 ./Allwmake -j8&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=967</id>
		<title>OpenFOAM</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=967"/>
		<updated>2022-03-30T15:01:43Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Both openFOAM repositories (org &amp;amp; com) are available on the LWP. Instructions on how to install packages on the LWP can be found [[install packages| here]]. Students do not have permission to install software, because the PCs in the computer rooms need to diverge as little as possible, but you can send us a request to install it on your system, by using the &amp;quot;support request&amp;quot; icon on the desktop or selecting it from the menu.&lt;br /&gt;
&lt;br /&gt;
Since there are quite a few versions of openFOAM(com/org) and it&#039;s extensions floating around, installing a version on a system can cause conflicts for other users on that system. Thankfully the foam developers recognize this and have made it possible to install a version or extensions into your own home directory without requiring elevated privileges. This way multiple users on the same system can use their own versions and extensions. Compilation of some of these will take some time.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The FOAM extensions described here have been verified to work for unprivileged users.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Install (or request we install) the following packages on your system:&lt;br /&gt;
 $ sudo apt install openfoam2112 openfoam2112-dev gfortran-10&lt;br /&gt;
&lt;br /&gt;
First set up the requirements for openFOAM:&lt;br /&gt;
 cd ~&lt;br /&gt;
 mkdir foam&lt;br /&gt;
 cd foam&lt;br /&gt;
 curl https://www.paraview.org/paraview-downloads/download.php\?submit=Download\&amp;amp;version=v5.10\&amp;amp;type=binary\&amp;amp;os=Linux\&amp;amp;downloadFile=ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz -o ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz&lt;br /&gt;
 tar xzf ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz&lt;br /&gt;
 echo &amp;quot;export PATH=~/foam/ParaView-5.10.1-MPI-Linux-Python3.9-x86_64/bin:$PATH&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 echo &amp;quot;source /usr/lib/openfoam/openfoam2112/etc/bashrc&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 openfoam2112&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
Installing foam-extend-4.1:&lt;br /&gt;
 git clone git://git.code.sf.net/p/foam-extend/foam-extend-4.1&lt;br /&gt;
 cd ~/foam/foam-extend-4.1&lt;br /&gt;
 source etc/bashrc&lt;br /&gt;
 echo &amp;quot;alias fe41=&#039;. ~/foam/foam-extend-4.1/etc/bashrc&#039;&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 ./Allwmake.firstInstall -j8 # the -j&amp;lt;number&amp;gt; refers to the number of CPU cores to use for compiling the software (more = faster)&lt;br /&gt;
&lt;br /&gt;
# Installing OlaFlow:&lt;br /&gt;
 git clone git://github.com/phicau/olaFlow.git&lt;br /&gt;
 cd olaFlow&lt;br /&gt;
 ./allMake -j8&lt;br /&gt;
&lt;br /&gt;
# Installing solids4foam:&lt;br /&gt;
 mkdir -p $FOAM_RUN&lt;br /&gt;
 cd $FOAM_RUN/..&lt;br /&gt;
 git clone https://bitbucket.org/philip_cardiff/solids4foam-release.git&lt;br /&gt;
 ./Allwmake -j8&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=966</id>
		<title>OpenFOAM</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=966"/>
		<updated>2022-03-30T14:39:07Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Both openFOAM repositories (org &amp;amp; com) are available on the LWP. Instructions on how to install packages on the LWP can be found [[install packages| here]]. Students do not have permission to install software, because the PCs in the computer rooms need to diverge as little as possible, but you can send us a request to install it on your system, by using the &amp;quot;support request&amp;quot; icon on the desktop or selecting it from the menu.&lt;br /&gt;
&lt;br /&gt;
Since there are quite a few versions of openFOAM(com/org) and it&#039;s extensions floating around, installing a version on a system can cause conflicts for other users on that system. Thankfully the foam developers recognize this and have made it possible to install a version or extensions into your own home directory without requiring elevated privileges. This way multiple users on the same system can use their own versions and extensions. Compilation of some of these will take some time.  &lt;br /&gt;
&lt;br /&gt;
The FOAM extensions described here have been verified to work for unprivileged users.  &lt;br /&gt;
&lt;br /&gt;
Install (or request we install) the following packages on your system:&lt;br /&gt;
 $ apt install openfoam2112 openfoam2112-dev gfortran-10&lt;br /&gt;
&lt;br /&gt;
First set up the requirements for openFOAM:&lt;br /&gt;
 cd ~&lt;br /&gt;
 mkdir foam&lt;br /&gt;
 cd foam&lt;br /&gt;
 curl https://www.paraview.org/paraview-downloads/download.php\?submit=Download\&amp;amp;version=v5.10\&amp;amp;type=binary\&amp;amp;os=Linux\&amp;amp;downloadFile=ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz -o ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz&lt;br /&gt;
 tar xzf ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz&lt;br /&gt;
 echo &amp;quot;export PATH=~/foam/ParaView-5.10.1-MPI-Linux-Python3.9-x86_64/bin:$PATH&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 echo &amp;quot;source /usr/lib/openfoam/openfoam2112/etc/bashrc&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 openfoam2112&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
Installing foam-extend-4.1:&lt;br /&gt;
 git clone git://git.code.sf.net/p/foam-extend/foam-extend-4.1&lt;br /&gt;
 cd ~/foam/foam-extend-4.1&lt;br /&gt;
 source etc/bashrc&lt;br /&gt;
 echo &amp;quot;alias fe41=&#039;. ~/foam/foam-extend-4.1/etc/bashrc&#039;&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 ./Allwmake.firstInstall -j8 # the -j&amp;lt;number&amp;gt; refers to the number of CPU cores to use for compiling the software (more = faster)&lt;br /&gt;
&lt;br /&gt;
# Installing OlaFlow:&lt;br /&gt;
 git clone git://github.com/phicau/olaFlow.git&lt;br /&gt;
 cd olaFlow&lt;br /&gt;
 ./allMake -j8&lt;br /&gt;
&lt;br /&gt;
# Installing solids4foam:&lt;br /&gt;
 mkdir -p $FOAM_RUN&lt;br /&gt;
 cd $FOAM_RUN/..&lt;br /&gt;
 git clone https://bitbucket.org/philip_cardiff/solids4foam-release.git&lt;br /&gt;
 ./Allwmake -j8&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=965</id>
		<title>OpenFOAM</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=965"/>
		<updated>2022-03-30T14:37:38Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Both openFOAM repositories (org &amp;amp; com) are available on the LWP. Instructions on how to install packages on the LWP can be found [[install packages| here]]. Students do not have permission to install software, because the PCs in the computer rooms need to diverge as little as possible, but you can send us a request to install it on your system, by using the &amp;quot;support request&amp;quot; icon on the desktop or selecting it from the menu.&lt;br /&gt;
&lt;br /&gt;
Since there are quite a few versions of openFOAM(com/org) and it&#039;s extensions floating around, installing a version on a system can cause conflicts for other users on that system. Thankfully the foam developers recognize this and have made it possible to install a version or extensions into your own home directory without requiring elevated privileges. This way multiple users on the same system can use their own versions and extensions. Compilation of some of these will take some time.&lt;br /&gt;
&lt;br /&gt;
The following FOAM extensions have been verified to work for unprivileged users:&lt;br /&gt;
&lt;br /&gt;
Install (or request we install) the following packages on your system:&lt;br /&gt;
 $ apt install openfoam2112 openfoam2112-dev&lt;br /&gt;
&lt;br /&gt;
First set up the requirements for openFOAM:&lt;br /&gt;
 cd ~&lt;br /&gt;
 mkdir foam&lt;br /&gt;
 cd foam&lt;br /&gt;
 curl https://www.paraview.org/paraview-downloads/download.php\?submit=Download\&amp;amp;version=v5.10\&amp;amp;type=binary\&amp;amp;os=Linux\&amp;amp;downloadFile=ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz -o ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz&lt;br /&gt;
 tar xzf ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz&lt;br /&gt;
 echo &amp;quot;export PATH=~/foam/ParaView-5.10.1-MPI-Linux-Python3.9-x86_64/bin:$PATH&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 echo &amp;quot;source /usr/lib/openfoam/openfoam2112/etc/bashrc&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 openfoam2112&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
Installing foam-extend-4.1:&lt;br /&gt;
 git clone git://git.code.sf.net/p/foam-extend/foam-extend-4.1&lt;br /&gt;
 cd ~/foam/foam-extend-4.1&lt;br /&gt;
 source etc/bashrc&lt;br /&gt;
 echo &amp;quot;alias fe41=&#039;. ~/foam/foam-extend-4.1/etc/bashrc&#039;&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
 source ~/.bashrc&lt;br /&gt;
 ./Allwmake.firstInstall -j8 # the -j&amp;lt;number&amp;gt; refers to the number of CPU cores to use for compiling the software (more = faster)&lt;br /&gt;
&lt;br /&gt;
# Installing OlaFlow:&lt;br /&gt;
 git clone git://github.com/phicau/olaFlow.git&lt;br /&gt;
 cd olaFlow&lt;br /&gt;
 ./allMake -j8&lt;br /&gt;
&lt;br /&gt;
# Installing solids4foam:&lt;br /&gt;
 mkdir -p $FOAM_RUN&lt;br /&gt;
 cd $FOAM_RUN/..&lt;br /&gt;
 git clone https://bitbucket.org/philip_cardiff/solids4foam-release.git&lt;br /&gt;
 ./Allwmake -j8&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=964</id>
		<title>OpenFOAM</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=OpenFOAM&amp;diff=964"/>
		<updated>2022-03-30T13:44:43Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: Created page with &amp;quot;OpenFOAM cnd this can cause conflicts with extensions and/or versions. The people creating the foam extensions are aware of this thankfully and have made it so that you can in...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;OpenFOAM cnd this can cause conflicts with extensions and/or versions. The people creating the foam extensions are aware of this thankfully and have made it so that you can install the extensions into your own home directory without requiring elevated privileges. This way multiple users on the same system can use their own versions and extensions. I&#039;ve just verified that it works, with an unprivileged account, on your system. I&#039;ve added the actual commands I&#039;ve used for the installation below, which are pretty much the instructions from the links you&#039;ve sent. Compilation of the extensions will take some time. Run the following commands to make it happen.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
# apt install openfoam2112 openfoam2112-dev gfortran-10&lt;br /&gt;
&lt;br /&gt;
# First set up the requirements for openFOAM:&lt;br /&gt;
cd ~&lt;br /&gt;
mkdir foam&lt;br /&gt;
cd foam&lt;br /&gt;
curl https://www.paraview.org/paraview-downloads/download.php\?submit=Download\&amp;amp;version=v5.10\&amp;amp;type=binary\&amp;amp;os=Linux\&amp;amp;downloadFile=ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz -o ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz&lt;br /&gt;
tar xzf ParaView-5.10.1-MPI-Linux-Python3.9-x86_64.tar.gz&lt;br /&gt;
echo &amp;quot;export PATH=~/foam/ParaView-5.10.1-MPI-Linux-Python3.9-x86_64/bin:$PATH&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
echo &amp;quot;source /usr/lib/openfoam/openfoam2112/etc/bashrc&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
source ~/.bashrc&lt;br /&gt;
openfoam2112&lt;br /&gt;
exit&lt;br /&gt;
&lt;br /&gt;
# Installing foam-extend-4.1:&lt;br /&gt;
cd ~&lt;br /&gt;
mkdir foam&lt;br /&gt;
cd foam&lt;br /&gt;
git clone git://git.code.sf.net/p/foam-extend/foam-extend-4.1&lt;br /&gt;
cd ~/foam/foam-extend-4.1&lt;br /&gt;
source etc/bashrc&lt;br /&gt;
echo &amp;quot;alias fe41=&#039;. ~/foam/foam-extend-4.1/etc/bashrc&#039;&amp;quot; &amp;gt;&amp;gt; ~/.bashrc&lt;br /&gt;
source ~/.bashrc&lt;br /&gt;
./Allwmake.firstInstall -j8&lt;br /&gt;
&lt;br /&gt;
# Installing OlaFlow:&lt;br /&gt;
git clone git://github.com/phicau/olaFlow.git&lt;br /&gt;
cd olaFlow&lt;br /&gt;
./allMake -j8&lt;br /&gt;
&lt;br /&gt;
# Installing solids4foam:&lt;br /&gt;
mkdir -p $FOAM_RUN&lt;br /&gt;
cd $FOAM_RUN/..&lt;br /&gt;
git clone https://bitbucket.org/philip_cardiff/solids4foam-release.git&lt;br /&gt;
./Allwmake -j8&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=Software&amp;diff=963</id>
		<title>Software</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=Software&amp;diff=963"/>
		<updated>2022-03-30T08:43:44Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:software-faq]]&lt;br /&gt;
* [[choose packages| How to figure out which package to install/request]]&lt;br /&gt;
* [[install packages| How to install packages from the available repositories]]&lt;br /&gt;
* [[Using LWP software from a non-LWP]]&lt;br /&gt;
* [[software arb|Using &amp;quot;ARB&amp;quot; (microbiology software)]]&lt;br /&gt;
* [[software gurobi|Using &amp;quot;Gurobi&amp;quot; (mathematical programming optimization software)]]&lt;br /&gt;
* [[Using the Intel Fortran compiler]]&lt;br /&gt;
* [[How to disable the emacs splash screen]]&lt;br /&gt;
* [[Using newer gcc in /opt/netapps]]&lt;br /&gt;
* [[Skype can&#039;t hear me]]&lt;br /&gt;
* [[Subversion (svn) authentication fails]]&lt;br /&gt;
* [[GSI-software| Configure your LWP for use with Global GSI-software system]]&lt;br /&gt;
* [[How to set a default program]]&lt;br /&gt;
* [[Gromacs 2016.3 on /opt/netapps]]&lt;br /&gt;
* [[VOTCA on /opt/netapps]]&lt;br /&gt;
* [[DAMASK on /opt/netapps]]&lt;br /&gt;
* [[code::blocks on /opt/netapps]]&lt;br /&gt;
* [[Dropbox]]&lt;br /&gt;
* [[OpenFOAM]]&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
	<entry>
		<id>https://lwpwiki.webhosting.rug.nl/index.php?title=FAQ&amp;diff=186</id>
		<title>FAQ</title>
		<link rel="alternate" type="text/html" href="https://lwpwiki.webhosting.rug.nl/index.php?title=FAQ&amp;diff=186"/>
		<updated>2015-02-11T08:55:46Z</updated>

		<summary type="html">&lt;p&gt;Lwpadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:faq]]&lt;br /&gt;
Here we try to write down solutions to most common issues. If you think something is missing, please let [mailto:lwp@rug.nl us] know.&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
* [[Installing]]&lt;br /&gt;
* [[Remote access]]&lt;br /&gt;
* [[Software]]&lt;br /&gt;
* [[Printing]]&lt;br /&gt;
* [[Graphics]]&lt;br /&gt;
* [[Miscellaneous]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lwpadmin</name></author>
	</entry>
</feed>