Advertisement
Guest User

Arbi help

a guest
Jul 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. if your version of mono is the correct one (5.10.xxxx):
  2.  
  3. then you can start arbi bot by typing:
  4. mono Arbi.exe
  5.  
  6. HOWEVER if you close your SSH client it will stop running, so we will install screen so it continues to run after you close your ssh client:
  7.  
  8. sudo apt install screen
  9.  
  10. now run mono like this:
  11.  
  12. screen -dmS arbi mono Arbi.exe
  13. | | |
  14. | | |-> Runs the program
  15. | |-> names the screen session
  16. |-> tells screen to detach the session
  17.  
  18.  
  19. to view the running session type: screen -r arbi
  20. | |
  21. | |-> name of the session
  22. |-> means re-attach
  23.  
  24. to exit out but keep arbi running, hold down ctrl + a + d
  25. to exit arbi and stop it, hit ctrl + c
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement