How to do a screen share wiht Linux Terminal Bash using Screen :
1) Create a screen
screen
2) list the all available screens using below command
screen -list
3) Now you can see all available screens, use the desired screen name on other client
screen -x <name>
Here is the one example :
# screen
# screen -list
There is a screen on:
9025.pts-4.Ubuntu-Server (Tuesday 24 March 2015 06:57:53 IST) (Attached)
use the 9025.pts-4.Ubuntu-Server name on other server like this
# screen -x 9025.pts-4.Ubuntu-Server
That's it.
0 comments: