Changes
Page history
Update home
authored
Jul 21, 2019
by
Odunlami Marc
Show whitespace changes
Inline
Side-by-side
home.md
View page @
f1038616
...
...
@@ -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.
...
...
...
...