search for: vncunus

Displaying 20 results from an estimated 282 matches for "vncunus".

Did you mean: vncunused
2008 Mar 06
3
static vnc port
...39;'file:/vm/domains/suse-10.3-hfuchs-testcups/suse-10.3-testcups.img,xvda,w'', ''file:/vm/domains/suse-10.3--testcups/suse-10.3-testcups.swap,xvdb,w'', ] 15 vif = [ ''mac=53:1b:e8:31:0d:ba'', ] 16 vfb = [''type=vnc,vncunused=1,vncdisplay=10''] But it doesnt work, is there something wrong in my configfile? I''m using Xen on SLES 10. Regards Marcus _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2007 May 15
4
[PATCH] [xm] Fix vncdisplay for hvm guests
''vncdisplay=N'' in hvm config file is ignored when building qemu-dm arguments. xm create or xm new -> xm start with hvm config file containing vnc=1 vncdisplay=5 results in ''-vncunused'' being passed to qemu-dm. There are several approaches for a fix - this patch defaults vncdisplay to None in xm options. It currently defaults to 1 and is always included in the image config created by configure_hvm() in tools/python/xen/xm/create.py. In xend (tools/python/xen/xend/im...
2011 Aug 24
2
how to list vnc port in xen 4.1
Hi all, I try xen 4.1, but in my domU''s HVM don''t appear vnc port. I used in my domU.cfg the parameter ''vncunused=1''. How to get vnc port specified domU? In another Xen (4.0.2), I get vnc port with ''xm list --long domU''. (vfb (vncunused 1) (vnc 1) (uuid cb20995f-55ae-55ce-143d-dd6a2ecc5969) (location 0.0.0.0:5909) )...
2010 May 10
0
[PATCH] xl: vncunused should default to ''1''
"vncunused" is documented to default to 1. Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> diff -r 71a0257ed7d2 tools/libxl/xl_cmdimpl.c --- a/tools/libxl/xl_cmdimpl.c Mon May 10 15:51:49 2010 -0700 +++ b/tools/libxl/xl_cmdimpl.c Mon May 10 16:02:27 2010 -0700 @@ -209,7 +209...
2012 Feb 08
7
[PATCH] libxl: Set VNC password through QMP
...@@ -287,13 +285,16 @@ static char ** libxl__build_device_model_args_new(libxl__gc *gc, } if (strchr(listen, '':'') != NULL) - flexarray_append(dm_args, - libxl__sprintf(gc, "%s%s", listen, - info->vncunused ? ",to=99" : "")); + vncarg = libxl__sprintf(gc, "%s", listen); else - flexarray_append(dm_args, - libxl__sprintf(gc, "%s:%d%s", listen, display, - info->vncunused ? ",to=99&qu...
2008 Mar 05
0
vncunused always allocating port 0
I think the xen vncunused guest configuration parameter has a bug. I expected that setting it to 1 would cause xen to allocate the first available port to each guest in turn for vnc server to service. However, it always allocates port 0. The result it that all guests are allocated port 0, but only the first guest alloc...
2008 Apr 11
2
vncdisplay #
How does this setting work? I was hoping to use it to make connections predictable. I have vncunused = 1 as well, but xen never starts the server on the expected port (dom-u id). Thanks! jlc _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2008 Aug 21
7
vnc port selection
Hi folks, Xen''s qemu-dm version has a ''-vncunused'' command line switch which asks the internal vnc server to pick any unused tcp port to listen on. The actual port is communicated to the outside world via xenstore. I''m looking for a reasonable way to implement that functionality in upstream qemu. First, I think it shouldn...
2012 Aug 22
4
config file conflict??
...39;'phy:/dev/md3,hda,w'' ] device_model = ''/usr/lib64/xen/bin/qemu-dm'' #--------------------------------------------------------------------------- -- # boot on floppy (a), hard disk (c) or CD-ROM (d) # default: hard disk, cd-rom, floppy boot="dc" vncunused=0 sdl=0 serial=''pty'' usbdevice=''tablet'' vcpus=1 cpus = [''3''] localtime = 1 usb = 1 2012: kernel = "/usr/lib/xen/boot/hvmloader" builder=''hvm'' memory = 1024 # Should be at least 2KB per MB of dom...
2008 May 08
0
[Patch] Fixed typos about vncunused in xmexamples
Fixed typos in xmexamples. Signed-off-by: Hiroya INAKOSHI <inakoshi.hiroya@jp.fujitsu.com> _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2007 Sep 27
0
Migration failing (xen 3.0.3 on RHEL 5) with "not a valid guest state file: pfn count read"
...64/xen/bin/qemu-dm''], [''pae'', ''1''], [''vcpus'', ''1''], [''boot'', ''c''], [''serial'', ''pty''], [''vnc'', ''1''], [''vncunused'', ''1''], [''xauthority'', ''/root/.Xauthority''], [''acpi'', ''1''], [''apic'', ''1''], [''vncpasswd'', ''None'']]], [''device''...
2011 Aug 28
1
Hanging boot of solaris 11 install image as HVM
...9;' ] disk = [ ''phy:/dev/vg_xen/solaris11,ioemu:hda,w'',''file:/ftp/sol-11-exp-201011-text-x86.iso,ioemu:hdc:cdrom,r''] vcpus = ''4'' memory = ''4096'' boot = ''d'' vfb = [ ''vnc=1,vncunused=1,vncdisplay=3''] serial = ''pty'' usb = 1 usbdevice = ''tablet'' # --- kernel 3.0.1 / xen 4.1.2* http://www.it-infrastrukturen.com/fileadmin/linux/debian-live-xen/config-3.0.1 xend.log messages: # --- [2011-08-28 20:15:38 3036] DEBUG (Xen...
2008 Mar 18
0
[PATCH] vfb: Add opengl option
...tools/python/xen/xend/XendConfig.py --- a/tools/python/xen/xend/XendConfig.py Tue Mar 18 14:36:27 2008 +0000 +++ b/tools/python/xen/xend/XendConfig.py Tue Mar 18 15:16:47 2008 +0000 @@ -165,7 +165,7 @@ # Xen API console ''other_config'' keys. XENAPI_CONSOLE_OTHER_CFG = [''vncunused'', ''vncdisplay'', ''vnclisten'', ''vncpasswd'', ''type'', ''display'', ''xauthority'', - ''keymap''] +...
2008 Mar 26
5
[Xen-users] xend (12, ''Cannot allocate memory'')
...], [''device_model'', ''/usr/lib64/xen/bin/qemu-dm''], [''pae'', 1], [''vcpus'', 6], [''boot'', ''cda''], [''serial'', ''pty''], [''vnc'', 1], [''vncunused'', 1], [''xauthority'', ''/root/.Xauthority''], [''keymap'', ''en-us'']]], [''device'', [''vbd'', [''uname'', ''file:/xen/domains2/centos-5.1_core_image/new_disk.img...
2008 Mar 20
1
xend (12, ''Cannot allocate memory'')
...], [''device_model'', ''/usr/lib64/xen/bin/qemu-dm''], [''pae'', 1], [''vcpus'', 6], [''boot'', ''cda''], [''serial'', ''pty''], [''vnc'', 1], [''vncunused'', 1], [''xauthority'', ''/root/.Xauthority''], [''keymap'', ''en-us'']]], [''device'', [''vbd'', [''uname'', ''file:/xen/domains2/centos-5.1_core_image/new_disk.img...
2011 Jan 18
4
Error bringing up VMs with Xen 4.0.1 + 2.6.18-194.32.1.el5xen CentOS Dom0
I am running Xen 4.0.1 with a 2.6.18-194.32.1.el5xen CentOS Dom0. I built and installed the Xen binaries from source. The systems boot successfully however I am having issues bring up DomUs. Here is config: name = ''xyz'' memory = 256 vcpus = 1 pae = 1 vnc = 1 vncunused = 1 disk = [ ''phy:/dev/vg1/xyz,hda,w'' ] vif = [ ''type=netfront,bridge=xenbr0,mac=04:01:3e:00:04:62'' ] builder = ''hvm'' kernel = ''/usr/sbin/hvmloader'' boot = ''c'' device_model = ''/usr/sbin/qemu-d...
2008 Jan 23
2
VNC port confusion
Hi, I''m trying to figure out how XEN decides which VNC port a particular VM will associate with. From what little there is in the documentation, it indicates that XEN will choose 5900+DomainID. From experience, this doesn''e seem to happen. When I start a guest domain, and do "xm list" its domainID shows as "22", however, when I netstat -a , it shows listening
2007 Nov 28
0
[Xen-ia64-devel] [PATCH] Add guest_os_type domain config option
...''usb'', ''usbdevice'', ''vnc'', ''vncconsole'', ''vncdisplay'', ''vnclisten'', ''timer_mode'', - ''vncpasswd'', ''vncunused'', ''xauthority'', ''pci'', ''vhpt''] + ''vncpasswd'', ''vncunused'', ''xauthority'', ''pci'', ''vhpt'', + '...
2006 Nov 17
1
debian amd64 etch hvm xp sp2 problem black screen frozen.
...le:/root/win.iso,hdc:cdrom,r'' ] #disk = [ ''phy:/dev/mapper/VG0-WinXP,ioemu:hda,w''], ''phy:/dev/hda,ioemu:hdc:cdrom,r'' ] device_model = ''qemu-dm'' boot="dca" #snapshot=1 sdl=1 vnc=0 #vnclisten="127.0.0.1" #vncdisplay=1 #vncunused=1 #vncconsole=0 #nographic=0 stdvga=0 #serial=''pty'' #soundhw=''sb16'' #localtime=1 #full-screen=1 #usb=1 #usbdevice=''mouse'' #usbdevice=''tablet'' ================== xend.log =========================== [2006-11-17 10:29:53 xend...
2010 Jun 13
9
pygrub error booting iso
...disk = "/boot/initrd.img-2.6.32.13" disk = [     ''phy:/dev/loop0,hdc:cdrom,r'',     "tap:aio:/var/lib/xen/images/CLOUD-CC-1.img,xvda,w" ] on_poweroff = "destroy" on_reboot = "restart" on_crash = "restart" vfb = [ ''type=vnc,vncunused=1'' ] ------------------------------------------- Then I tried to create: ------------------------------------------- # xm create test.py Using config file "./test.py". Error: Boot loader didn''t return any data! ------------------------------------------- Is there so...