View previous topic :: View next topic |
Author |
Message |
jeffk l33t
Joined: 13 Sep 2003 Posts: 671
|
Posted: Sun Apr 18, 2004 7:24 pm Post subject: Let local user watch my ssh while I install gentoo remotely? |
|
|
After much prodding, I have two colleagues who will be installing Gentoo in the next week or so. I'd like to have them boot a livecd, start sshd and let me go through my stage-1 install routine while they view my ssh command activity, for a guided 'lesson'.
It would be great if I could just connect to their console this way, so the commands could be issued by myself or them, as appropriate. Sort of like a VNC for ssh.
Does anyone know of a console broadcaster that would work this way? It only makes sense if it can be used with the environment of a basic LiveCD, and will survive the chroot step of a stage-1 install. Thanks. |
|
Back to top |
|
|
EliasP Guru
Joined: 06 Dec 2002 Posts: 318 Location: South-West Germany
|
Posted: Sun Apr 18, 2004 7:56 pm Post subject: |
|
|
There should be "screen" at the Live-CDs.
1.) Start a screen session by just typing
Code: |
screen -S installation
|
2.) Let your colleagues do a login and watching your session by typing
Code: |
screen -x ${PID}.installation
|
${PID} is the pid of the current screen sessions.
tells you the complete name you have to use.
3.) Start inside the screen session your installation
Greetings
Elias P. |
|
Back to top |
|
|
jeffk l33t
Joined: 13 Sep 2003 Posts: 671
|
Posted: Sun Apr 18, 2004 8:37 pm Post subject: |
|
|
Thanks, I had been reading about screen very recently, nice of them to include it on the livecds.
I presume step '0' is to have the user:
- boot the LiveCD
- change the root password
- /etc/init.d/ssh start
- I then ssh into the box.
Thanks again. |
|
Back to top |
|
|
|