|
|
#1 |
|
MVP
Join Date: Jan 2002
Posts: 1,562
|
Terminal sharing?
Is it possible to setup a terminal window for sharing?
What I need to do is do some live tutorials for someone in a remote location. Completely CLI oriented. What I would like to do is offer the ability to have the remote user (trusted user) login via ssh then be able to watch what I do in the terminal. Possibly chatting about the actions taking place in another terminal window. Is this even feasible? |
|
|
|
|
|
#2 |
|
Triple-A Player
Join Date: Jan 2002
Location: Toronto, Canada
Posts: 185
|
VNC
Get the VNC server and VNC clients from versiontracker.com and set them up to share the screen. You set up the server on your machine, the client could connect to your computer in read-only mode and watch what you do.
|
|
|
|
|
|
#3 |
|
MVP
Join Date: Jan 2002
Posts: 1,562
|
Yes - I thought about that and I do use VNC already. I was hoping for something with a little less overhead/bandwidth usage. I figured a straight telnet/CLI session would be lightning fast over even a modem connection.
|
|
|
|
|
|
#4 |
|
Prospect
Join Date: Jan 2002
Location: Ottawa, Ontario, Canada
Posts: 10
|
Another use for Screen!
look at the man pages for screen <which you can install with fink or compile it yourself from gnu.org>
"-x Attach to a not detached screen session. (Multi display mode)." This works, across multiple machines... you will need to be using the same userid for it though! So make a special user just for training purposes. Take a look as well at the options for multiple screens at once, and attaching and detaching screens. There are articles online at places like samag.com and linuxdoc.org. Have fun! dAVE |
|
|
|
|
|
#5 |
|
MVP
Join Date: Jan 2002
Posts: 1,562
|
thx davidro - that sounds great. Matter of fact the person I am tutoring will be in Linux. I am helping them get up an running in Linux, the basics of unix , stuff, etc. - hence I want to be able to share terminal session for teaching.
|
|
|
|
|
|
#6 |
|
Triple-A Player
Join Date: Apr 2002
Location: Restaurant at the End of the Universe
Posts: 171
|
Another Option
Kool usage of screen. If your without screen, here's another way. I can't quite remember the syntax but I think this is correct. I'll try and test at school(I don't have 2 computers at home).
Code:
Pseudo code: script something | tee oneMonitor@host:DISPLAY another@host:DISPLAY ...
__________________
—bakaDeshi Caution! Mac User at the Command Line. |
|
|
|
|
|
#7 | |||||||||||||||||||
|
MVP
Join Date: Jun 2002
Location: Tucson, Arizona
Posts: 1,236
|
Re: Another Option
Yeah, but how do you type the into the Terminal? ![]() Yep, I'm a smart-aleck. Feel free to ignore me. |
|||||||||||||||||||
|
|
|
|
|
#8 | |||||||||||||||||||
|
Triple-A Player
Join Date: Jan 2002
Location: Sweden
Posts: 122
|
Re: Another use for Screen!
You can attach to another users screen if that user has a .screenrc file in it's home directory containing: multisuer on addacl someuser Replace "someuser" with your username. Example: Code:
Tue 23:19 [erik @ /Users/erik] % cat .screenrc multisuer on addacl root |
|||||||||||||||||||
|
|
|
![]() |
|
|