I''m having some trouble working out how to make the SDL interface for HVM domUs appear. The documentation simply says "it will appear" when you start the domU, but doesn''t state what packages or libraries are needed in order for this magic to happen, or explain how to debug it if it doesn''t happen. All that I''m getting at the moment is a domU (running WinXP -- I installed with the VNC interface) starting up, and no way of interacting with it. I''m using Xen from hg of last week, and Debian testing as the Dom0. Is there some documentation that I''ve missed, or could anyone shed some light on this issue for me? Thanks, Hugo. -- === Hugo Mills: hugo@... carfax.org.uk | darksatanic.net | lug.org.uk == PGP key: 1C335860 from wwwkeys.eu.pgp.net or http://www.carfax.org.uk --- Anyone who says their system is completely secure understands --- neither systems nor security. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
I''m having some trouble working out how to make the SDL interface for HVM domUs appear. The documentation simply says "it will appear" when you start the domU, but doesn''t state what packages or libraries are needed in order for this magic to happen, or explain how to debug it if it doesn''t happen. All that I''m getting at the moment is a domU (running WinXP -- I installed with the VNC interface) starting up, and no way of interacting with it. I''m using Xen from hg of last week, and Debian testing as the Dom0. Is there some documentation that I''ve missed, or could anyone shed some light on this issue for me? Thanks, Hugo. -- === Hugo Mills: hugo@... carfax.org.uk | darksatanic.net | lug.org.uk == PGP key: 1C335860 from wwwkeys.eu.pgp.net or http://www.carfax.org.uk --- I hate housework. You make the beds, you wash the dishes, and --- six months later you have to start all over again. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Do you have the "sdl=1" option set in your domU''s config file? Hugo Mills-6 wrote:> > I''m having some trouble working out how to make the SDL interface > for HVM domUs appear. The documentation simply says "it will appear" > when you start the domU, but doesn''t state what packages or libraries > are needed in order for this magic to happen, or explain how to debug > it if it doesn''t happen. All that I''m getting at the moment is a domU > (running WinXP -- I installed with the VNC interface) starting up, and > no way of interacting with it. > > I''m using Xen from hg of last week, and Debian testing as the Dom0. > > Is there some documentation that I''ve missed, or could anyone shed > some light on this issue for me? > > Thanks, > Hugo. > > -- > === Hugo Mills: hugo@... carfax.org.uk | darksatanic.net | lug.org.uk ==> PGP key: 1C335860 from wwwkeys.eu.pgp.net or http://www.carfax.org.uk > --- I hate housework. You make the beds, you wash the dishes, and --- > six months later you have to start all over again. > > > _______________________________________________ > Xen-users mailing list > Xen-users@lists.xensource.com > http://lists.xensource.com/xen-users >-- View this message in context: http://www.nabble.com/SDL-display-of-HVMs----how--tf2494566.html#a6961304 Sent from the Xen - User mailing list archive at Nabble.com. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
On Mon, Oct 23, 2006 at 01:22:28PM -0700, billbaird3 wrote:> > Do you have the "sdl=1" option set in your domU''s config file?Yes. Config file attached below.> Hugo Mills-6 wrote: > > > > I''m having some trouble working out how to make the SDL interface > > for HVM domUs appear. The documentation simply says "it will appear" > > when you start the domU, but doesn''t state what packages or libraries > > are needed in order for this magic to happen, or explain how to debug > > it if it doesn''t happen. All that I''m getting at the moment is a domU > > (running WinXP -- I installed with the VNC interface) starting up, and > > no way of interacting with it. > > > > I''m using Xen from hg of last week, and Debian testing as the Dom0. > > > > Is there some documentation that I''ve missed, or could anyone shed > > some light on this issue for me?----- Config file ----- # -*- mode: python; -*- #===========================================================================# Python configuration setup for ''xm create''. # This script sets the parameters used when a domain is created using ''xm create''. # You use a separate script for each domain you want to create, or # you can set the parameters for the domain on the xm command line. #=========================================================================== import os, re arch = os.uname()[4] if re.search(''64'', arch): arch_libdir = ''lib64'' else: arch_libdir = ''lib'' #---------------------------------------------------------------------------- # Kernel image file. kernel = "/usr/lib/xen/boot/hvmloader" # The domain build function. HVM domain uses ''hvm''. builder=''hvm'' # Initial memory allocation (in megabytes) for the new domain. # # WARNING: Creating a domain with insufficient memory may cause out of # memory errors. The domain needs enough memory to boot kernel # and modules. Allocating less than 32MBs is not recommended. memory = 512 # Shadow pagetable memory for the domain, in MB. # Should be at least 2KB per MB of domain memory, plus a few MB per vcpu. shadow_memory = 8 # A name for your domain. All domains must have different names. name = "winxp" # 128-bit UUID for the domain. The default behavior is to generate a new UUID # on each call to ''xm create''. #uuid = "06ed00fe-1162-4fc4-b5d8-11993ee4a8b9" #----------------------------------------------------------------------------- # the number of cpus guest platform has, default=1 vcpus=1 # enable/disable HVM guest PAE, default=0 (disabled) pae=0 # enable/disable HVM guest ACPI, default=0 (disabled) acpi=0 # enable/disable HVM guest APIC, default=0 (disabled) apic=0 # List of which CPUS this domain is allowed to use, default Xen picks #cpus = "" # leave to Xen to pick #cpus = "0" # all vcpus run on CPU0 #cpus = "0-3,5,^1" # run on cpus 0,2,3,5 # Optionally define mac and/or bridge for the network interfaces. # Random MACs are assigned if not given. #vif = [ ''type=ioemu, mac=00:16:3e:00:00:11, bridge=xenbr0, model=ne2k_pci'' ] # type=ioemu specify the NIC is an ioemu device not netfront vif = [ ''type=ioemu, mac=00:16:3e:4a:fd:d8'' ] #---------------------------------------------------------------------------- # Define the disk devices you want the domain to have access to, and # what you want them accessible as. # Each disk entry is of the form phy:UNAME,DEV,MODE # where UNAME is the device, DEV is the device name the domain will see, # and MODE is r for read-only, w for read-write. #disk = [ ''phy:hda1,hda1,r'' ] disk = [ ''phy:/dev/primary/winxp,hda,w'' ] #=========================================================================== # New stuff device_model = ''/usr/'' + arch_libdir + ''/xen/bin/qemu-dm'' #----------------------------------------------------------------------------- # boot on floppy (a), hard disk (c) or CD-ROM (d) # default: hard disk, cd-rom, floppy boot="cda" #----------------------------------------------------------------------------- # write to temporary files instead of disk image files #snapshot=1 #---------------------------------------------------------------------------- # enable SDL library for graphics, default = 0 sdl=1 #---------------------------------------------------------------------------- # enable VNC library for graphics, default = 1 vnc=0 #---------------------------------------------------------------------------- # address that should be listened on for the VNC server if vnc is set. # default is to use ''vnc-listen'' setting from /etc/xen/xend-config.sxp #vnclisten="127.0.0.1" #---------------------------------------------------------------------------- # set VNC display number, default = domid #vncdisplay=1 #---------------------------------------------------------------------------- # try to find an unused port for the VNC server, default = 1 #vncunused=1 #---------------------------------------------------------------------------- # enable spawning vncviewer for domain''s console # (only valid when vnc=1), default = 0 #vncconsole=0 #---------------------------------------------------------------------------- # no graphics, use serial port #nographic=0 #---------------------------------------------------------------------------- # enable stdvga, default = 0 (use cirrus logic device model) stdvga=0 #----------------------------------------------------------------------------- # serial port re-direct to pty deivce, /dev/pts/n # then xm console or minicom can connect serial=''pty'' #----------------------------------------------------------------------------- # enable sound card support, [sb16|es1370|all|..,..], default none #soundhw=''sb16'' #----------------------------------------------------------------------------- # set the real time clock to local time [default=0 i.e. set to utc] #localtime=1 #----------------------------------------------------------------------------- # start in full screen #full-screen=1 #----------------------------------------------------------------------------- # Enable USB support (specific devices specified at runtime through the # monitor window) #usb=1 # Enable USB mouse support (only enable one of the following, `mouse'' for # PS/2 protocol relative mouse, `tablet'' for # absolute mouse) #usbdevice=''mouse'' #usbdevice=''tablet'' ----- Config file ends ----- -- === Hugo Mills: hugo@... carfax.org.uk | darksatanic.net | lug.org.uk == PGP key: 1C335860 from wwwkeys.eu.pgp.net or http://www.carfax.org.uk --- Great oxymorons of the world, no. 8: The Latest --- In Proven Technology _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
billbaird3 <billbaird3@gmail.com> wrote on 10/23/2006 03:22:28 PM:> > Do you have the "sdl=1" option set in your domU''s config file?Also make sure you have "vnc=0"> Hugo Mills-6 wrote: > > > > I''m having some trouble working out how to make the SDL interface > > for HVM domUs appear. The documentation simply says "it will appear" > > when you start the domU, but doesn''t state what packages or libraries > > are needed in order for this magic to happenMake sure you have the SDL-devel package installed. Steve D. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
On Tue, Oct 24, 2006 at 03:30:31PM -0500, Steve Dobbelstein wrote:> billbaird3 <billbaird3@gmail.com> wrote on 10/23/2006 03:22:28 PM: > > Do you have the "sdl=1" option set in your domU''s config file? > > Also make sure you have "vnc=0"Yes, I have both of these settings. (Not quite sure what happened to my original reply to billbaird3 -- it seems to have gone astray).> > Hugo Mills-6 wrote: > > > > > > I''m having some trouble working out how to make the SDL interface > > > for HVM domUs appear. The documentation simply says "it will appear" > > > when you start the domU, but doesn''t state what packages or libraries > > > are needed in order for this magic to happen > > Make sure you have the SDL-devel package installed.I''m running Debian, so I don''t have SDL-devel, but I''ve installed every sdl development package I can find, and rebuilt and reinstalled all the Xen tools and hypervisor from an updated copy of the hg repo. Still no luck. Where should I be looking for errors or diagnostics? There''s nothing I can see obviously in the xend log file, for example. What program/task is responsible for running the SDL display? Is there some way of determining what configuration / build options were picked by the make process? Hugo. -- === Hugo Mills: hugo@... carfax.org.uk | darksatanic.net | lug.org.uk == PGP key: 1C335860 from wwwkeys.eu.pgp.net or http://www.carfax.org.uk --- "You got very nice eyes, Deedee. Never noticed them --- before. They real?" _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Hugo Mills wrote:> I''m having some trouble working out how to make the SDL interface > for HVM domUs appear. The documentation simply says "it will appear" > when you start the domU, but doesn''t state what packages or libraries > are needed in order for this magic to happen, or explain how to debug > it if it doesn''t happen. All that I''m getting at the moment is a domU > (running WinXP -- I installed with the VNC interface) starting up, and > no way of interacting with it. > > I''m using Xen from hg of last week, and Debian testing as the Dom0. > > Is there some documentation that I''ve missed, or could anyone shed > some light on this issue for me? > > Thanks, > Hugo. >I don''t think installing SDL-devel after Xen is installed will do anything for you. You need to install SDL-devel (or more specifically the development header files) before compiling Xen from source. -- James Holmes Programmer/SysAdmin RTDS Technologies Inc. -- http://www.rtds.com _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
On Wed, Oct 25, 2006 at 04:19:21PM -0500, James Holmes wrote:> Hugo Mills wrote: > > I''m having some trouble working out how to make the SDL interface > > for HVM domUs appear. The documentation simply says "it will appear" > > when you start the domU, but doesn''t state what packages or libraries > > are needed in order for this magic to happen, or explain how to debug > > it if it doesn''t happen. All that I''m getting at the moment is a domU > > (running WinXP -- I installed with the VNC interface) starting up, and > > no way of interacting with it. > > > > I''m using Xen from hg of last week, and Debian testing as the Dom0. > > > > Is there some documentation that I''ve missed, or could anyone shed > > some light on this issue for me? > > I don''t think installing SDL-devel after Xen is installed will do > anything for you. You need to install SDL-devel (or more specifically > the development header files) before compiling Xen from source.See my later mails -- I''ve done this: installed as many SDL -dev packages as I can find, and recompiled Xen. Still no luck. How does Xen determine whether to build with SDL support or not? Hugo. -- === Hugo Mills: hugo@... carfax.org.uk | darksatanic.net | lug.org.uk == PGP key: 1C335860 from wwwkeys.eu.pgp.net or http://www.carfax.org.uk --- Hey, Virtual Memory! Now I can have a *really big* ramdisk! --- _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Hugo Mills <hugo-xen@carfax.org.uk> wrote on 10/25/2006 11:43:14 AM:> I''m running Debian, so I don''t have SDL-devel, but I''ve installed > every sdl development package I can find, and rebuilt and reinstalled > all the Xen tools and hypervisor from an updated copy of the hg repo. > Still no luck. Where should I be looking for errors or diagnostics? > There''s nothing I can see obviously in the xend log file, for example. > > What program/task is responsible for running the SDL display? Is > there some way of determining what configuration / build options were > picked by the make process?SDL is built into qemu, so it is qemu that launches the SDL screen. Looking at xen-unstable.hg/tools/ioemu/sdl.c I see that it includes SDL.h. Also check out xen-unstable.hg/tools/ioemu/configure to see how it determines if the system has the necessary SDL components for building SDL support. Steve D. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
On Wed, Oct 25, 2006 at 05:03:31PM -0500, Steve Dobbelstein wrote:> Hugo Mills <hugo-xen@carfax.org.uk> wrote on 10/25/2006 11:43:14 AM: > > > I''m running Debian, so I don''t have SDL-devel, but I''ve installed > > every sdl development package I can find, and rebuilt and reinstalled > > all the Xen tools and hypervisor from an updated copy of the hg repo. > > Still no luck. Where should I be looking for errors or diagnostics? > > There''s nothing I can see obviously in the xend log file, for example. > > > > What program/task is responsible for running the SDL display? Is > > there some way of determining what configuration / build options were > > picked by the make process? > > SDL is built into qemu, so it is qemu that launches the SDL screen. > > Looking at xen-unstable.hg/tools/ioemu/sdl.c I see that it includes SDL.h. > > Also check out xen-unstable.hg/tools/ioemu/configure to see how it > determines if the system has the necessary SDL components for building SDL > support.OK, thanks. I''ll look into that when I next get time to poke this (probably Friday). Hugo. -- === Hugo Mills: hugo@... carfax.org.uk | darksatanic.net | lug.org.uk == PGP key: 1C335860 from wwwkeys.eu.pgp.net or http://www.carfax.org.uk --- "Your problem is that you have a negative personality." --- "No, I don''t!" _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
> -----Original Message----- > From: xen-users-bounces@lists.xensource.com > [mailto:xen-users-bounces@lists.xensource.com] On Behalf Of Hugo Mills > Sent: 23 October 2006 12:04 > To: xen-users@lists.xensource.com > Subject: [Xen-users] SDL display of HVMs -- how? > > I''m having some trouble working out how to make the SDL interface > for HVM domUs appear. The documentation simply says "it will appear" > when you start the domU, but doesn''t state what packages or libraries > are needed in order for this magic to happen, or explain how to debug > it if it doesn''t happen. All that I''m getting at the moment is a domU > (running WinXP -- I installed with the VNC interface) starting up, and > no way of interacting with it. > > I''m using Xen from hg of last week, and Debian testing as the Dom0. > > Is there some documentation that I''ve missed, or could anyone shed > some light on this issue for me?If you go to $(XEN_ROOT)/tools/ioemu and do "./configure" followed by "make", then copy the resulting qemu-dm (in i386-dm directory) to the /usr/lib{64}/xen/bin. Also after "./configure", do "grep -r CONFIG_SDL". You should find it in target-i386-dm/config.h [or something like that]. I struggled since I rebuilt by build-machine, at first I didn''t have the right files installed, and then when I finally got everything in place, I had vnc=1 also on the machine, and that didn''t work out right. Also, have a look at /var/log/xen/qemu-dm.<pid>.log (find the current one with "ls -ltr /var/log/xen/qemu*" (the newest one is at the bottom. [One can probably use "cat `ls -tr /var/log/xen/qemu*`" to show the latest one, actually - but I haven''t tried that]. -- Mats> > Thanks, > Hugo. > > -- > === Hugo Mills: hugo@... carfax.org.uk | darksatanic.net | > lug.org.uk ==> PGP key: 1C335860 from wwwkeys.eu.pgp.net or > http://www.carfax.org.uk > --- Anyone who says their system is completely secure > understands --- > neither systems nor security. > >_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
On Fri, Oct 27, 2006 at 10:37:35AM +0200, Petersson, Mats wrote:> > -----Original Message----- > > From: xen-users-bounces@lists.xensource.com > > [mailto:xen-users-bounces@lists.xensource.com] On Behalf Of Hugo Mills > > Sent: 23 October 2006 12:04 > > To: xen-users@lists.xensource.com > > Subject: [Xen-users] SDL display of HVMs -- how? > > > > I''m having some trouble working out how to make the SDL interface > > for HVM domUs appear. The documentation simply says "it will appear" > > when you start the domU, but doesn''t state what packages or libraries > > are needed in order for this magic to happen, or explain how to debug > > it if it doesn''t happen. All that I''m getting at the moment is a domU > > (running WinXP -- I installed with the VNC interface) starting up, and > > no way of interacting with it. > > > > I''m using Xen from hg of last week, and Debian testing as the Dom0. > > > > Is there some documentation that I''ve missed, or could anyone shed > > some light on this issue for me? > > If you go to $(XEN_ROOT)/tools/ioemu and do "./configure" followed by > "make", then copy the resulting qemu-dm (in i386-dm directory) to the > /usr/lib{64}/xen/bin. Also after "./configure", do "grep -r CONFIG_SDL". > You should find it in target-i386-dm/config.h [or something like that].That seems to have done it, finally, after also reconfiguring the device_model parameter in the domain''s config file. Many thanks. Hugo. -- === Hugo Mills: hugo@... carfax.org.uk | darksatanic.net | lug.org.uk == PGP key: 1C335860 from wwwkeys.eu.pgp.net or http://www.carfax.org.uk --- Nothing right in my left brain. Nothing left in --- my right brain. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
On 10/29/06, Hugo Mills <hugo-xen@carfax.org.uk> wrote:> > > I''m having some trouble working out how to make the SDL interface > > > for HVM domUs appear. The documentation simply says "it will appear" > > > when you start the domU, but doesn''t state what packages or libraries > > > are needed in order for this magic to happen, or explain how to debug > > > it if it doesn''t happen....> > If you go to $(XEN_ROOT)/tools/ioemu and do "./configure" followed by > > "make", then copy the resulting qemu-dm (in i386-dm directory) to the > > /usr/lib{64}/xen/bin. Also after "./configure", do "grep -r CONFIG_SDL". > > You should find it in target-i386-dm/config.h [or something like that]. > > That seems to have done it, finally, after also reconfiguring the > device_model parameter in the domain''s config file. Many thanks.Related question - is it possible to make the SDL window reappear after it''s closed? Regards, David -- David L. Parsley Linux Systems Engineer, James Madison University "If I have seen further, it is by standing on ye shoulders of giants" - Isaac Newton _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
On Sun, Oct 29, 2006 at 08:18:35PM -0500, David Parsley wrote:> On 10/29/06, Hugo Mills <hugo-xen@carfax.org.uk> wrote: > >> > I''m having some trouble working out how to make the SDL interface > >> > for HVM domUs appear. The documentation simply says "it will appear" > >> > when you start the domU, but doesn''t state what packages or libraries > >> > are needed in order for this magic to happen, or explain how to debug > >> > it if it doesn''t happen. > ... > >> If you go to $(XEN_ROOT)/tools/ioemu and do "./configure" followed by > >> "make", then copy the resulting qemu-dm (in i386-dm directory) to the > >> /usr/lib{64}/xen/bin. Also after "./configure", do "grep -r CONFIG_SDL". > >> You should find it in target-i386-dm/config.h [or something like that]. > > > > That seems to have done it, finally, after also reconfiguring the > >device_model parameter in the domain''s config file. Many thanks. > > Related question - is it possible to make the SDL window reappear > after it''s closed?My brief experimentation with this seems to indicate that when you close the SDL window, the VM gets destroyed. Hugo. -- === Hugo Mills: hugo@... carfax.org.uk | darksatanic.net | lug.org.uk == PGP key: 1C335860 from wwwkeys.eu.pgp.net or http://www.carfax.org.uk --- Jenkins! Chap with the wings there! Five rounds rapid! --- _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
> -----Original Message----- > From: xen-users-bounces@lists.xensource.com > [mailto:xen-users-bounces@lists.xensource.com] On Behalf Of Hugo Mills > Sent: 30 October 2006 10:32 > To: David Parsley > Cc: xen-users@lists.xensource.com > Subject: Re: [Xen-users] SDL display of HVMs -- how? > > On Sun, Oct 29, 2006 at 08:18:35PM -0500, David Parsley wrote: > > On 10/29/06, Hugo Mills <hugo-xen@carfax.org.uk> wrote: > > >> > I''m having some trouble working out how to make the > SDL interface > > >> > for HVM domUs appear. The documentation simply says > "it will appear" > > >> > when you start the domU, but doesn''t state what > packages or libraries > > >> > are needed in order for this magic to happen, or > explain how to debug > > >> > it if it doesn''t happen. > > ... > > >> If you go to $(XEN_ROOT)/tools/ioemu and do > "./configure" followed by > > >> "make", then copy the resulting qemu-dm (in i386-dm > directory) to the > > >> /usr/lib{64}/xen/bin. Also after "./configure", do "grep > -r CONFIG_SDL". > > >> You should find it in target-i386-dm/config.h [or > something like that]. > > > > > > That seems to have done it, finally, after also > reconfiguring the > > >device_model parameter in the domain''s config file. Many thanks. > > > > Related question - is it possible to make the SDL window reappear > > after it''s closed? > > My brief experimentation with this seems to indicate that when you > close the SDL window, the VM gets destroyed.That is my experience too - I''m not 100% sure if that''s intended or not. However, I have also managed to "sink" the window in other ways (like on machine0 you ssh to machine1, then ssh to machine2, do "xm create windows" which pops up a window on machine0, then reboot machine1 for some reason, and now machine2 has a running windows that you can''t get to the display of... Most annoying (and it doesn''t take a reboot either, just some sort of link loss...). -- Mats> > Hugo. > > -- > === Hugo Mills: hugo@... carfax.org.uk | darksatanic.net | > lug.org.uk ==> PGP key: 1C335860 from wwwkeys.eu.pgp.net or > http://www.carfax.org.uk > --- Jenkins! Chap with the wings there! Five rounds > rapid! --- >_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users