>--- Thomas Mueller <thomas <at> chaschperli.ch> wrote: > >> On Mon, 28 Jul 2008 15:06:17 +0800, Stephen Liu wrote: >> >> >> >> >> >> >> >> > On running >> >> > # kvm -m 750 -cdrom /dev/scd0 -boot d ubuntu6.06.img >> >> >> >> add -vnc :<number> >> >> >> >> or disable graphics completly (see kvm --help) >> > >> > >> > Hi Thomas, >> > >> > >> > Thanks for your advice. >> > >> > >> > There is no graphic running on the server which is headless. I >> > configure the server remotely via ssh connection on a workstation. >> > >> > >> > Please explain in more detail. The CD running on /dev/scd0 is an >> > installer to install Ubuntu 6.06 NOT an ISO image. >> >> so if you want to access the "vga monitor" of the virtual machine, >> you >> have to add "-vnc :0" and then connect with a vnc to >> "physical-host-ip-or- >> dnsname:0"
> Hi Thomas, > >Thanks for your advice and URL. > >Performed following test but failed. > ># kvm -hda ubuntu6.06.img -cdrom /dev/scd0 -m 512 -boot d -vnc IP:0 >Could not parse VNC address > ># kvm -hda ubuntu6.06.img -cdrom /dev/scd0 -m 512 -boot d -vnc IP:1 >Could not parse VNC address You should run it as: # kvm -hda ubuntu6.06.img -cdrom /dev/scd0 -m 512 -boot d -vnc :0 qemu contains a built in vnc-server. Thomas meant that you should then connect with a vncviewer to this machines ip:0. /Henrik Holst -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html
