Launch a new screen session (Use -S to give the new screen a custom name)
screen -S myScreen
Detach from a screen session
Ctrl-A + D
List all screen sessions
screen -ls
Attach to an existing session
screen -r myScreen
Attach to a screen that is still in the attached state (like if your SSH session disconnects before you could detach)
screen -r -d myScreen