If you want to share the screen with another worker during remote work, mainly using Linux, this is an easy way to share.
By editing /etc/xrdp/xrdp.ini
and fixing the port, the logged-in user shares the same session, so the result screen can be shared.
/etc/xrdp/xrdp.ini
[xrdp1]
name=sesman
lib=libvnc.so
username=ask
password=ask
ip=127.0.0.1
#port=-1 #xrdp searches for a port for connection
port=5912 #By making it a fixed port, logged-in users share the same session
If you are logged in to the same server in a terminal, another user can peek at the screen session to share the result terminal.
You don't have to give it a screen name, but give it a descriptive name and start a screen session.
[userA]$ screen -S my-screen ← screen name
You can log in to the same server and share the screen of the attached screen.
[userB]$ screen -ls
There is a screen on:
50534.my-screen (Attached)← Screen session you want to peep
[userB]$ screen -x my-screen ← disturb the attached screen session
Recommended Posts