Comparaison des versions

Légende

  • Ces lignes ont été ajoutées. Ce mot a été ajouté.
  • Ces lignes ont été supprimées. Ce mot a été supprimé.
  • La mise en forme a été modifiée.

...

Volet
cat > ~/.profile <<+
umask 022
type module 2>/dev/null 1>/dev/null || . /etc/profile
taskset -cp 0-128 \$\$
module swap intel/2018.3 gcc/7.3.0 2>/dev/null
. /home/armnssm/ssm-domains-base/ssm_10.151/etc/ssm.d/profile
. env-setup.dot
module list 2>&1 | grep '[()]'
+

On Narval :

Either...

Volet

Use environment created by Michel Valin but using /scratch, which is often not working. When this environment is used and when /scratch is NOT working one will not be able to log on to Narval and simulations are not able to start.

Volet
cat > ~/.profile <<+
source ~armnssm/narval/bin/.profile_base
+


...or...

Volet

Use environment avoiding /scratch. This environment should not be affected by a not working /scratch but is still in test phase.
To use this environment you first need to define a space which will get used instead of /scratch as default temporary disk space, ${TMPDIR}:

1) Create a directory which you would like to make your default temporary directory. I suggest you use the default directory of your PI, for example:
    mkdir ~/projects/def-professor/${USER}/tmp
Replace 'professor' by the name of your PI.

2) Create a directory in your home called 'tmp':
    mkdir ~/tmp

3) Inside this new directory create a link called 'narval' which points to the directory you created under 1). For example:
    ln -s ~/projects/def-pausata/${USER}/tmp ~/tmp/narval

4) In your ~/.profile you have to put:

Volet
cat > ~/.profile <<+
source ~armnssm/narval/bin/.profile_no_scratch
+


Log out and back in.

Then I suggest you create a link to our common '.group_profile'.
This will give you some basic aliases I find quite useful. I suggest you have a look at them to see which ones are available.
I will keep adding aliases and exports to this file.

...