Using GNU screen’s multiuser feature

Sometimes it’s useful to let someone see what you are doing in a console sessison. GNU screen is the tool for the job and lets a remote user follow on-screen what you are doing, great feature when you try to explain something over the phone.

To share your session you must start screen on the command line. Then enter

^A:multiuser on

That is, type Ctrl-A to enter the command mode, then type : to enter the screen’s build-in command line. You can now activate the multiuser mode by entering multiuser on in the screen’s command line that appears in reverse color at the bottom of the console window. To execute, hit Return.

The other person just have to log in with the same username, type

screen -x

to connect to your screen session running in multiuser mode and follow what you do.