Skip to content
This repository was archived by the owner on Mar 2, 2021. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sessionVI/lessons/more_bash.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ Now, open a new Terminal window, and try these out! You will still need to add y
You can now create an alias to run an interactive session on O2!

```bash
alias interactive=`srun --pty -p interactive bash`
alias interactive=`srun --pty -p interactive -t 0-12:00 --mem 1G /bin/bash`

# and/OR

alias interactive6='srun --pty -p interactive -n 6 --mem 8G bash'
alias interactive6='srun --pty -p interactive -t 0-12:00 -c 6 --mem 6G /bin/bash'
```

You can not try one of them out from the login node.
Expand Down