similar to: Runaway vncviewer processes

Displaying 20 results from an estimated 80000 matches similar to: "Runaway vncviewer processes"

2006 Jul 13
3
[PATCH] Update new qemu-dm to spawn vncviewer
This patch does 3 things to the new device model, qemu-dm: 1) Add `vncviewer'' as an option to `qemu-dm'' to spawn a `vncviewer'' process. 2) Have the `vncviewer'' config parameter translate to the `vncviewer'' flag to `qemu-dm''. 3) Add a new config parameter, `vncconnect'', that spawns a `vncviewer'' process that looks for a
2008 Sep 17
2
[Xen-ia64-devel] [PATCH] xm: Don''t spawn vncviewer twice.
Hi. I found this issue with IA64 box while looking at the c/s of 18204:21dd1fdb73d8, but I believe the things is same with x86 box. I''m not sure whether this patch coexist with the old ioemu which is to be removed soon. So it might be desirable to apply this patch after deleting the internal ioemu tree. thanks, xm: Don''t spawn vncviewer twice. Without this patch, vncviewer
2006 Jul 28
0
vncviewer: ListenAtTcpPort: bind: Address already in use
Hello, if I start a unmodified Guest Already working on A SLES Installation now I get under gentoo: VNC= 1 vncviewer: ListenAtTcpPort: bind: Address already in use vncviewer: ListenAtTcpPort: bind: Address already in use The config: disk = [ ''file:/var/lib/xen/images/win/hda,ioemu:hda,w'' ] memory = 512 vcpus = 1 builder = ''hvm'' device_model =
2008 Dec 28
1
vncviewer <defunct> under HVM
Unable to connect to my HVM # xm list Name ID Mem VCPUs State Time(s) Domain-0 0 3869 2 r----- 368.6 vm00 45 128 1 -b---- 62.3 The vm00 changes state from "r" to "b" after about a minute. (I have a fedora dvd in the drive.) #cat
2005 Aug 15
0
[PATCH][VT]Don''t leave vncviewer processes running if xm create fails
this patch kill the created vncviewer process if xm create fails. _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2006 Sep 26
0
black screen when booting ubuntu cd in hvm
Hi folks, i have a problem to boot an Ubuntu CD in a hvm-enabled machine. I get a black screen when connecting via vnc to the virtual machine. When i change the line cdrom= to some other CD (grml Live CD, Windows CD, other ones) it runs fine. But any Ubuntu CD (kubuntu alternative, ubuntu server, ubuntu desktop) i get the mentioned error. I tried using sdl (no window opens) and with
2012 Mar 20
5
[PATCH] Add vncviewer xm compatibility options the 'xl create' command
I''ve attached the preliminary patch to add vncviewer options to the ''xl create''. It applies cleanly against c/s 4e1d091d10d8. All feedback is welcome. Goncalo # HG changeset patch # User Goncalo Gomes <goncalo.gomes@eu.citrix.com> # Date 1332257809 0 # Node ID 46f8afe643dee8de2c592c65204567fbad657616 # Parent 4e1d091d10d83130842170cd61f1194e5459f2aa Add
2008 Oct 26
9
vncviewer reporting connection refused (146)
I''m running snv93. I''m trying to install a windows hvm domU using the virt-install command: /usr/bin/virt-install -n windowsts -r 2048 -s 20 -f /data/domU/windowsts --hvm --vnc -c /dev/dsk/c0t0d0s2 The vncviewer is unable to open a connection to the xend VNC server and is failing with the Connection refused (146) error message. xend is set up with the following properties:
2008 Feb 08
1
Re: xenconsole: Could not read tty from store: No suchfile or directory
On Thursday 07 February 2008 05:19:26 pm Hamid Majidy wrote: > When I start guest with "xm create clientdom", I get: > xm create clientdom > Using config file "./clientdom". > VNC= 3 > Started domain clientdom >   > But when I try to connect to it with "vncviewer 192.168.122.1:5900" I get: > VNC Viewer Free Edition 4.1.2 for X - built Mar 14
2008 Feb 13
3
Qemu vnc WMVi support
Hi all, the patch "qemu-vnc-wmvi.patch" adds support for the WMVi pseudoencoding in qemu vnc server. If the client implements it, it is supposed to be able to change colour depth when receiving a WMVi message. Since I didn''t know any client that supports it and I wanted to test the implementation before submitting any patch I also modified vncviewer to support WMVi. The
2005 Jun 21
0
[PATCH] novnc-dryrun.patch
Don''t start VNC on a dry run. Signed-off-by: Arun Sharma <arun.sharma@intel.com> --- a/tools/python/xen/xm/create.py Tue Jun 21 19:12:48 2005 +++ b/tools/python/xen/xm/create.py Tue Jun 21 13:50:09 2005 @@ -618,6 +618,7 @@ config = opts.vals.config else: opts.load_defconfig() + opts.vals.vnc = not opts.vals.dryrun preprocess(opts, opts.vals)
2008 Jul 30
1
[PATCH] Allow xm to spawn vnc viewer
The new merged qemu no longer has the ability to spawn a vnc viewer process in the bowels of the xend/qemu stack. In this patch we provide support for this use case in a different manner - one more akin to the mechanism used for `xm console'' and `xm create -c''. We introduce new xm options: xm create --vncviewer [--vncviewer-autopass] xm vncviewer [--vncviewer-autopass]
2008 Jul 15
2
vncviewer via gateway option question
the man page for vncviewer presents the -via gateway option to use ssh through a gateway. I understand if I want a secure vnc connection to server.foo.com I can use the command: vncviewer localhost -via server.foo.com But I have moved my SSHD services from port 22 to port n. So according to the man pages, I need an environment variable of VNC_VIA_CMD and override the default command with:
2011 Oct 26
4
Automatic vncviewer startup
Hello, is there a way to start automatically the vncviewer when a domU starts? When I was using the xm toolstack I could use "xm create domain.cfg -vncviewer" or something similar (if I''m not wrong), but I don''t know how to do it with the xl toolstack. At the moment, I have to create the domain using xl create domU.cfg, then xl list to see the domU id and then xl
2005 Aug 11
0
[PATCH][VT][1/15] Fix config file parsing for VMX domains.
Fix config file parsing for VMX domains. If we define "vif" in the config file, image.py will raise error "vmx: missing vbd configuration". The reason is "vif" is dealt with as a "vbd" device. This patch fixes this issue by dealing with "vbd" and "vif " separately, removing "macaddr" arg and parsing mac address from
2005 Jun 23
5
[PATCH] Fix vnc-dryrun option interaction
A patch that was applied yesterday tried to turn the vnc option off if dryrun was set. Unfortunately, the way it was actually coded turned vnc ON if dryrun was not set! I think this patch should fix it (someone who actually uses vnc & dryrun should test it, though). -George +-------------------+---------------------------------------- | dunlapg@umich.edu |
2007 Apr 11
0
windows 2003 install trhough vnc problem
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
2009 Dec 19
1
guest OS installation ERROR!
Hi, all I was trying to install Xen on CentOS5.4. The OS has a "virtualization" option, and I choose to install, so I get the 3.0 version of Xen. When I trying to install a higher version 3.4.1, the make world and make install process went ok, and the "xm list" command could show the domain 0. So I created a guest OS in virtual machine manager and wanted to install a guest
2011 Oct 13
2
XCP: problem connecting to VNC for first VM installation
Hello, I''ve launched my first guest installation on XCP and I would like to know how to see the installation process through VNC. On the XCP: # netstat -lnatp |grep vnc tcp 0 0 127.0.0.1:5900 0.0.0.0:* LISTEN 7867/vncterm tcp 0 0 127.0.0.1:5901 0.0.0.0:* LISTEN 8928/vncterm So, there is something listening for
2006 Nov 11
1
HVM: Could not initialize SDL - exiting
Hello, I''m trying to get my first HVM domU installed (another Debian domU is already working under the same dom0). I intend to install the guest OS from a bootable CD-ROM. But when I create the new HVM domU with ''xm create xp1-cd.cfg'' , I don''t get the expected installation-window and find this in /var/log/xen/qemu-dm.6575.log: domid: 6 qemu: the number