From b5aa5edae1f297c16abb036b035e689db134d6a4 Mon Sep 17 00:00:00 2001 From: rkhetani Date: Tue, 24 Sep 2019 16:07:37 -0400 Subject: [PATCH] changed srun command --- sessionVI/lessons/more_bash.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sessionVI/lessons/more_bash.md b/sessionVI/lessons/more_bash.md index f09f8e6..e6e88ff 100644 --- a/sessionVI/lessons/more_bash.md +++ b/sessionVI/lessons/more_bash.md @@ -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.