drew einhorn wrote: > Hi, > > I'm getting started with cobbler on a remote Xen box from my laptop. > > I ssh into dom0: > > koan --virt ... > virsh ... to get the console > > looks like I have issues with dhcp and the install hangs, > > if xen was running on a local box I would use Ctl-Alt-Fn to see logs, > get get a shell, etc. > > but this gets me alternate virtual consoles on the laptop, > not on the remote domU that has gone astray.
You haven't actually asked a question here, so I'm guessing what you're asking... Are you using --nogfx with koan? If yes, "virsh console ..." will show you the DomU console. If not, you need to use vnc to connect to the guest. Check the port that the guest is using using something like: lsof -i TCP | grep :59 This will show you a list of the ports vnc is listening on. You can set up an ssh tunnel from your laptop to the remote server using something like: ssh -f [EMAIL PROTECTED] -L 5900:localhost:5900 -N Then use a vnc client to connect to localhost:5900 on your laptop. HTH R. _______________________________________________ cobbler mailing list [email protected] https://fedorahosted.org/mailman/listinfo/cobbler
