Linux Screen command

From AllStarLink Wiki
Revision as of 23:07, 26 January 2019 by imported>N8THN (created page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


Using "screen" to show someone how to do something

ACID (and soon Limey Linux) have the screen program available so that you can share an ssh session with someone and show them how to change a setting, or fix a problem. The screen program links 2 ssh users logged in under the same user name so that they can both see what is going on on the system, and can both send commands to change the operation of the system.

In order for this to work, the "teacher" logs in as root on the node, and executes the following command at the shell prompt:

screen -S showu The "student" then logs in as root and executes the following command:

screen -x showu From this point forward, both login sessions are linked.

When you need to sever the link, the screen can be detached by pressing the control+A and then the control+K key. You'll be prompted with "Really kill this window?" Type y, and the linked session will be killed.