I need to run the following command:
screen -dmS RealmD top
Essentially invoking GNU screen in the background with the session title 'RealmD' with the top command being run inside screen. The command MUST be invoked this way so there can't be a substitute for screen at this time until the server is re-tooled. (Another project for another time)
I've subbed in the top command for the server binary that needs to run. But top is a decent substitute while the code is being debugged for this python module.
What I really need is a way to execute screen with the above parameters in Python.