Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining
by
UberDaemon
on 27/06/2017, 01:36:14 UTC
Hi fullzero,
I followed this guild(https://bitcointalk.org/index.php?topic=1854250.msg19503300#msg19503300) to use SSH, it works well.
But I don't know how to exit the screen session and restart it. So I googled and found a stackoverflow thread https://stackoverflow.com/questions/1509677/kill-detached-screen-session, there are multiple methods, could you update your "official" way to the origin guide?

thanks.

To detach from a screen (i.e. you want to close the SSH connection while mining continues afterwards) it's
Code:
CTRL + a + d

To reattach to a screen (resume connection) it's
Code:
screen -x [name you gave the screen session]  # once you've typed 3-4 characters hit the tab key and it will fill out the rest and save you some typing

If you can't remember what you named the session use:

Code:
screen -ls

If you're new to screen you may not know you can open a 2nd shell and switch back and forth (i.e. your miner is running on one shell and you open a 2nd to run nvidia-smi):

once in screen you create a 2nd shell (or 3rd, 4th, etc) with
Code:
CTRL + a + c

To switch back and forth use:
Code:
CTRL + a + n