There is what's need to be done in order to launch the docker container I need for my these.
- Fedora 29
- That's all
From the docker docs.
| #!/bin/bash | |
| # Script for installing Fish Shell on systems without root access. | |
| # Fish Shell will be installed in $HOME/local/bin. | |
| # It's assumed that wget and a C/C++ compiler are installed. | |
| # exit on error | |
| set -e | |
| FHISH_SHELL_VERSION=2.7.0 |
| sudo vim /usr/share/applications/org.gnome.Evolution.desktop -c %s/Exec=/Exec=env GTK_THEME=Adwaita:light /g |
| #!/usr/bin/env python3 | |
| """This module helps to inspect an executable. | |
| In particulare: | |
| 1. If it has been compiled with debug option `_g` | |
| Author: Antoine Tavant, email: antoinetavant <at> hotmail . fr | |
| Summary: | |
| We use and grep the `gdb` call for the presence of the debugging symbols. | |
| Retrun True if the flag `-g` has been used |
| find . -type f -name "*.h5" -cmin +10 -exec rm {} \; |
There is what's need to be done in order to launch the docker container I need for my these.
From the docker docs.
| echo "pulling LPPic !" | |
| git clone https://[email protected]/rhodecode/GIT_REPOSITORIES/LPP/LPPic2D/LPPic | |
| cd LPPic | |
| git checkout FIX_Diel | |
| mkdir -p build | |
| cd build | |
| module load mpi/openmpi-x86_64 | |
| export libinfo=SHARED && cmake .. | |
| make -j |