Good guide! I stumbled onto this while looking for screen session help. I've been scavenging the internet trying to figure this out:
Is there any way to make a simple, purely miner (no overclock) startup script that puts each miner into its own screen? I've been experimenting with something like:
#!/bin/sh
screen -d -m -S "gpu0"
screen -d -m -S "gpu1"
screen -p gpu0 -X python pheonix.py -blah -blah
screen -p gpu1 -X python pheonix.py -blah -blah
Thanks!