WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-users

[Xen-users] windows 2003 install trhough vnc problem

To: xen-users@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-users] windows 2003 install trhough vnc problem
From: "Jordi Segues" <jordisd.mailing@xxxxxxxxx>
Date: Wed, 11 Apr 2007 13:05:00 +0200
Delivery-date: Wed, 11 Apr 2007 04:03:55 -0700
Dkim-signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=DhEjT9FbE80M+7PzAM7TYHEzJvFL4NmsIYmi8wsug666BZzvvX4MiUSSiUOvBcEQ08a9TheZIz8M21V6Zk98oWTqKNzJbIJ9GIytyRcSr4EBVD6Ydgv1YkdUqPqCs87CzReTdcT0jeACZNeuERgBkpRqkBfGCMNVeMiy4+YZg2Q=
Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Z+Mmqy9i3nPtxzRHRTDr/gQQXKo1g88YV0AcI2C+2S5rxARFr0uad3F0IOfH2Y4dD6SdFioWLmjuRQB3OR/h753q8/shgy6/gJU7QShoHGfST7sP6MAOw+JZ3GNlynfL8i2eIaY+8jsSTuR0oDAbqlCcP46zxsWdkHkcAleep6w=
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-users-request@lists.xensource.com?subject=help>
List-id: Xen user discussion <xen-users.lists.xensource.com>
List-post: <mailto:xen-users@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-users>, <mailto:xen-users-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-users>, <mailto:xen-users-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-users-bounces@xxxxxxxxxxxxxxxxxxx
Hello,

I want to install a 2003 guest on a Debian Etch with xen binary
packages (apt-get install), but through a vnc console (no graphical
interface). So I launch the xm create in an ssh connection, and want
to connect through vnc to complete the installation of windows.

So the domain gets created with xm create but no VNC port is displayed:
-----
Using config file "2003.hvm".
VNC= 1
Started domain 2003-1
----

Moreover with an xm list -l" I see:
----
(hvm
           (kernel /usr/lib/xen-3.0.3-1/boot/hvmloader)
           (args 'VNC_VIEWER=172.16.100.4:5501 ')
----

So theorically VNC is listenning on port 5501, but netstat -l doesn't
show it, and all VNC connections fail (Connection refused: connect()).

When I do "xm list", the hvm guest have no state, its strange:
--
Name                                      ID Mem(MiB) VCPUs State   Time(s)
2003-1                                     4      512     1 ------      0.0
Domain-0                                   0     5323     4 r-----     25.8
--


Here's my config file 2003.hvm:
-----
import os, re
arch = os.uname()[4]
if re.search('64', arch):
   arch_libdir = 'lib64'
else:
   arch_libdir = 'lib'
kernel = "/usr/lib/xen-3.0.3-1/boot/hvmloader"
builder='hvm'
memory = 512
name = "2003-1"
vif = [ 'type=ioemu, mac=00:16:3e:00:00:94, bridge=xenbr1' ]
disk = [ 'phy:LVM/2003-1,ioemu:sda,w' ]
device_model = '/usr/' + arch_libdir + '/xen/bin/qemu-dm'
cdrom="/templates/Iso/en_windows_server_2003_standard.iso"
boot="d"
sdl=0
vnc=1
vncviewer=1
ne2000=0
stdvga=0
-----

I have vncviewer installed in the host.
Here is the xend-config.xsp file:
--
(network-script 'network-bridge netdev=eth1')
(vif-script vif-bridge)
(dom0-min-mem 196)
(dom0-cpus 0)
(vnc-listen '0.0.0.0')
--

And here's a "xm dmesg":
---
(XEN) Xen trace buffers: disabled
(XEN) Xen is relinquishing VGA console.
(XEN) *** Serial input -> DOM0 (type 'CTRL-a' three times to switch
input to Xen).
---

So any help would be appreciated :)
Thanks in advance!

_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-users] windows 2003 install trhough vnc problem, Jordi Segues <=