Update home authored by Odunlami Marc's avatar Odunlami Marc
......@@ -6,7 +6,28 @@ Welcome to the Bilbo cluster documentation homepage.
[Calendar](https://partage.univ-pau.fr/home/%20Cluster_de_calcul_Enseignement@univ-pau.fr/Calendar.html?view=week&tz=Europe%2FBrussels)
## Job script examples
## Connexion
Open a terminal and use one the following commands:
```
# Without graphic redirection:
ssh username@bilbo.univ-pau.fr
# With graphic redirection:
ssh -Y username@bilbo.univ-pau.fr
```
where *username* is your UPPA login. Then enter your UPPA password.
## Interactive job
Once connected to the cluster, enter the following commands (example given for the Gaussview software):
```
# Without graphic redirection:
ssh username@bilbo.univ-pau.fr
# With graphic redirection:
ssh -Y username@bilbo.univ-pau.fr
```
where *username* is your UPPA login. Then enter your UPPA password.
## Batch job script examples
Slurm job scripts contains two parts:
1. Slurm directives: starting with `#SBATCH`, they specify Slurm options.
......
......