Using Screens

To keep the bot running even after closing the terminal, we will use screen:

Going into a Screen Session

To go into the NotArb bot screen

screen -r notarb

or to go into the Jupiter screen:

screen -r jupiter

Detach from the Screen

Press Ctrl + A, then D.

Fully Close the Screen Session

Kill the notarb Screen

screen -XS notarb kill

Kill the Jupiter Screen

screen -XS jupiter kill

Stop the NotArb Platform

It's time to kill all the screens because the bot is not configured to run properly yet.

Kill the Jupiter Session

Multiple Instances of the Same Name?

If for some reason there are multiple notarb or jupiter screen sessions, you will have to kill the session using their PID. Get the list of screen sessions running:

You may see:

If you wanted to kill the latest one with the PID of 6969696, execute the following:


Last updated