Hey all, My issue here is that when trying to boot from .iso image to install windows 2008 r2, I get message saying "A required cd/dvd drive device driver is missing". Where can I get this driver? Below is the config. ernel = "/usr/lib/xen/boot/hvmloader" builder=''hvm'' memory = ''1024'' device_model = ''/usr/lib/xen/bin/qemu-dm'' # Should be at least 2KB per MB of domain memory, plus a few MB per vcpu. name = "windows" vif = [ ''ip=192.168.5.5,mac=00:16:3E:FE:C2:02,vifname=windows'' ] disk = [ ''file:/windows/xenwin2008.img,hda,w'', ''file:/windows/winxpSP2.iso,ioemu:hdc:cdrom,r'' ] #--------------------------------------------------------------------------- -- # boot on floppy (a), hard disk (c) or CD-ROM (d) # default: hard disk, cd-rom, floppy boot="dc" sdl=0 vnc=1 vncconsole=1 vncpasswd='''' #serial=''pty'' usbdevice=''tablet'' _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
> My issue here is that when trying to boot from .iso image to install windows 2008 r2, I get message saying > “A required cd/dvd drive device driver is missing”. Where can I get this driver?. . . .> disk = [ ''file:/windows/xenwin2008.img,hda,w'', ''file:/windows/winxpSP2.iso,ioemu:hdc:cdrom,r'' ]This is just a guess here, but what about puttin an ioemu:hda instead of just hda. So the line would read: disk = [''file:/windows/xenwin2008.img,ioemu:hda,w'',''file:/windows/winxpSP2.iso,ioemu:hdc:cdrom,r''] It was my understanding that the ioemu is required for all HVM windows domain disks (whether CDROM or HDD). Also, what version of xen are you running? _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Hello, I have made the changed you requested and below is my config file. I''m using xen 3.4.1 with kernel of 2.6.18.8-xen. The problem is still there for me. import os, re arch = os.uname()[4] if re.search(''64'', arch): arch_libdir = ''lib64'' else: arch_libdir = ''lib'' kernel = "/usr/lib/xen/boot/hvmloader" builder=''hvm'' memory = ''1024'' device_model = ''/usr/lib/xen/bin/qemu-dm'' # Should be at least 2KB per MB of domain memory, plus a few MB per vcpu. name = "windows" vif = [ ''ip=204.124.181.89,mac=00:16:3E:FE:C2:02,vifname=windows'' ] disk [''file:/windows/xenwin2008.img,ioemu:hda,w'',''file:/windows/winxpSP2.iso,ioem u:hdc:cdrom,r''] #--------------------------------------------------------------------------- -- # boot on floppy (a), hard disk (c) or CD-ROM (d) # default: hard disk, cd-rom, floppy boot="dc" sdl=0 vnc=1 vncconsole=1 vncpasswd='''' #serial=''pty'' usbdevice=''tablet'' acpi=1 apic=1 pae=1 usb=1 viridian=1 -----Original Message----- From: xen-users-bounces@lists.xensource.com [mailto:xen-users-bounces@lists.xensource.com] On Behalf Of Tait Clarridge Sent: Friday, August 14, 2009 3:00 PM To: ''Robbie Garrett''; xen-users@lists.xensource.com Subject: RE: [Xen-users] windows 2008 x64 no cdrom.> My issue here is that when trying to boot from .iso image to installwindows 2008 r2, I get message saying> A required cd/dvd drive device driver is missing. Where can I get thisdriver? . . . .> disk = [ ''file:/windows/xenwin2008.img,hda,w'',''file:/windows/winxpSP2.iso,ioemu:hdc:cdrom,r'' ] This is just a guess here, but what about puttin an ioemu:hda instead of just hda. So the line would read: disk [''file:/windows/xenwin2008.img,ioemu:hda,w'',''file:/windows/winxpSP2.iso,ioem u:hdc:cdrom,r''] It was my understanding that the ioemu is required for all HVM windows domain disks (whether CDROM or HDD). Also, what version of xen are you running? _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
> -----Original Message----- > From: Robbie Garrett [mailto:rgarrett@hostourweb.com] > Sent: Friday, August 14, 2009 3:07 PM > To: Tait Clarridge; xen-users@lists.xensource.com > Subject: RE: [Xen-users] windows 2008 x64 no cdrom. > > Hello, > > I have made the changed you requested and below is my config file. > > I''m using xen 3.4.1 with kernel of 2.6.18.8-xen. The problem is still there > for me. > > import os, re > arch = os.uname()[4] > if re.search(''64'', arch): > arch_libdir = ''lib64'' > else: > arch_libdir = ''lib'' >The above code has sometimes caused some problems for us... remove it and change the device_model line to have lib64 instead of lib in the path. First verify that /usr/lib64/xen/bin/qemu-dm exists...> > kernel = "/usr/lib/xen/boot/hvmloader" > builder=''hvm'' > memory = ''1024'' > device_model = ''/usr/lib/xen/bin/qemu-dm'' > > # Should be at least 2KB per MB of domain memory, plus a few MB per vcpu. > name = "windows" > vif = [ ''ip=204.124.181.89,mac=00:16:3E:FE:C2:02,vifname=windows'' ] > disk > [''file:/windows/xenwin2008.img,ioemu:hda,w'',''file:/windows/winxpSP2.is > o,ioem > u:hdc:cdrom,r''] > #--------------------------------------------------------------------------- > -- > # boot on floppy (a), hard disk (c) or CD-ROM (d) > # default: hard disk, cd-rom, floppy > boot="dc" > sdl=0 > vnc=1 > vncconsole=1Try removing both the above and below lines as well...> vncpasswd='''' > > #serial=''pty'' > usbdevice=''tablet'' > > acpi=1 > apic=1 > pae=1 > usb=1Try removing the viridian=1 line as well.> viridian=1Are there any log entries from qemu-dm or xend that say anything about missing files? _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Hello. Made your changes and the new file is below. Still the same issue. import os, re arch = os.uname()[4] kernel = "/usr/lib/xen/boot/hvmloader" builder=''hvm'' memory = ''1024'' device_model = ''/usr/lib64/xen/bin/qemu-dm'' # Should be at least 2KB per MB of domain memory, plus a few MB per vcpu. name = "windows" vif = [ ''ip=204.124.181.89,mac=00:16:3E:FE:C2:02,vifname=windows'' ] disk [''file:/windows/xenwin2008.img,ioemu:hda,w'',''file:/windows/winxpSP2.iso,ioem u:hdc:cdrom,r''] #--------------------------------------------------------------------------- -- # boot on floppy (a), hard disk (c) or CD-ROM (d) # default: hard disk, cd-rom, floppy boot="dc" sdl=0 vnc=1 vncconsole=1 vncpasswd='''' #serial=''pty'' usbdevice=''tablet'' acpi=1 apic=1 pae=1 usb=1 xend.log file output since command issued xm create windows.cfg [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:92) XendDomainInfo.create([''vm'', [''name'', ''windows''], [''memory'', ''1024''], [''vcpus'', 1], [''on_xend_start'', ''ignore''], [''on_xend_stop'', ''ignore''], [''image'', [''hvm'', [''kernel'', ''/usr/lib/xen/boot/hvmloader''], [''videoram'', 4], [''device_model'', ''/usr/lib64/xen/bin/qemu-dm''], [''pae'', 1], [''vcpus'', 1], [''boot'', ''dc''], [''fda'', ''''], [''fdb'', ''''], [''timer_mode'', 1], [''localtime'', 0], [''serial'', ''''], [''stdvga'', 0], [''isa'', 0], [''nographic'', 0], [''soundhw'', ''''], [''vnc'', 1], [''vncunused'', 1], [''vncconsole'', 1], [''sdl'', 0], [''xauthority'', ''/root/.Xauthority''], [''rtc_timeoffset'', 0], [''monitor'', 0], [''acpi'', 1], [''apic'', 1], [''usb'', 1], [''usbdevice'', ''tablet''], [''keymap'', ''''], [''pci'', []], [''hpet'', 0], [''guest_os_type'', ''default''], [''hap'', 1], [''cpuid'', []], [''cpuid_check'', []], [''viridian'', 0], [''pci_msitranslate'', 1], [''vpt_align'', 1], [''pci_power_mgmt'', 0], [''xen_platform_pci'', 1], [''vncpasswd'', ''XXXXXXXX'']]], [''s3_integrity'', 1], [''device'', [''vbd'', [''uname'', ''file:/windows/xenwin2008.img''], [''dev'', ''ioemu:hda''], [''mode'', ''w'']]], [''device'', [''vbd'', [''uname'', ''file:/windows/winxpSP2.iso''], [''dev'', ''ioemu:hdc:cdrom''], [''mode'', ''r'']]], [''device'', [''vif'', [''ip'', ''204.124.181.89''], [''mac'', ''00:16:3E:FE:C2:02''], [''vifname'', ''windows'']]]]) [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:2296) XendDomainInfo.constructDomain [2009-08-14 15:29:34 2776] DEBUG (balloon:166) Balloon: 1071836 KiB free; need 4096; done. [2009-08-14 15:29:34 2776] DEBUG (XendDomain:452) Adding Domain: 8 [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:2497) XendDomainInfo.initDomain: 8 256 [2009-08-14 15:29:34 2776] DEBUG (image:322) No VNC passwd configured for vfb access [2009-08-14 15:29:34 2776] DEBUG (image:809) args: boot, val: dc [2009-08-14 15:29:34 2776] DEBUG (image:809) args: fda, val: None [2009-08-14 15:29:34 2776] DEBUG (image:809) args: fdb, val: None [2009-08-14 15:29:34 2776] DEBUG (image:809) args: soundhw, val: None [2009-08-14 15:29:34 2776] DEBUG (image:809) args: localtime, val: 0 [2009-08-14 15:29:34 2776] DEBUG (image:809) args: serial, val: None [2009-08-14 15:29:34 2776] DEBUG (image:809) args: std-vga, val: 0 [2009-08-14 15:29:34 2776] DEBUG (image:809) args: isa, val: 0 [2009-08-14 15:29:34 2776] DEBUG (image:809) args: acpi, val: 1 [2009-08-14 15:29:34 2776] DEBUG (image:809) args: usb, val: 1 [2009-08-14 15:29:34 2776] DEBUG (image:809) args: usbdevice, val: tablet [2009-08-14 15:29:34 2776] INFO (image:745) Need to create platform device.[domid:8] [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:2521) _initDomain:shadow_memory=0x0, memory_static_max=0x40000000, memory_static_min=0x0. [2009-08-14 15:29:34 2776] DEBUG (balloon:166) Balloon: 1070424 KiB free; need 1065984; done. [2009-08-14 15:29:34 2776] INFO (image:173) buildDomain os=hvm dom=8 vcpus=1 [2009-08-14 15:29:34 2776] DEBUG (image:862) domid = 8 [2009-08-14 15:29:34 2776] DEBUG (image:863) image /usr/lib/xen/boot/hvmloader [2009-08-14 15:29:34 2776] DEBUG (image:864) store_evtchn = 2 [2009-08-14 15:29:34 2776] DEBUG (image:865) memsize = 1024 [2009-08-14 15:29:34 2776] DEBUG (image:866) target = 1024 [2009-08-14 15:29:34 2776] DEBUG (image:867) vcpus = 1 [2009-08-14 15:29:34 2776] DEBUG (image:868) acpi = 1 [2009-08-14 15:29:34 2776] DEBUG (image:869) apic = 1 [2009-08-14 15:29:34 2776] INFO (XendDomainInfo:2160) createDevice: vfb : {''vncunused'': 1, ''other_config'': {''vncunused'': 1, ''vnc'': ''1''}, ''vnc'': ''1'', ''uuid'': ''d5521524-f898-0ece-fea0-34f87eb278eb''} [2009-08-14 15:29:34 2776] DEBUG (DevController:95) DevController: writing {''state'': ''1'', ''backend-id'': ''0'', ''backend'': ''/local/domain/0/backend/vfb/8/0''} to /local/domain/8/device/vfb/0. [2009-08-14 15:29:34 2776] DEBUG (DevController:97) DevController: writing {''vncunused'': ''1'', ''domain'': ''windows'', ''frontend'': ''/local/domain/8/device/vfb/0'', ''uuid'': ''d5521524-f898-0ece-fea0-34f87eb278eb'', ''frontend-id'': ''8'', ''state'': ''1'', ''online'': ''1'', ''vnc'': ''1''} to /local/domain/0/backend/vfb/8/0. [2009-08-14 15:29:34 2776] INFO (XendDomainInfo:2160) createDevice: vbd : {''uuid'': ''5c474d98-2d59-91ff-7d0d-0d864ae161dc'', ''bootable'': 1, ''driver'': ''ioemu'', ''dev'': ''ioemu:hda'', ''uname'': ''file:/windows/xenwin2008.img'', ''mode'': ''w''} [2009-08-14 15:29:34 2776] DEBUG (DevController:95) DevController: writing {''backend-id'': ''0'', ''virtual-device'': ''768'', ''device-type'': ''disk'', ''state'': ''1'', ''backend'': ''/local/domain/0/backend/vbd/8/768''} to /local/domain/8/device/vbd/768. [2009-08-14 15:29:34 2776] DEBUG (DevController:97) DevController: writing {''domain'': ''windows'', ''frontend'': ''/local/domain/8/device/vbd/768'', ''uuid'': ''5c474d98-2d59-91ff-7d0d-0d864ae161dc'', ''bootable'': ''1'', ''dev'': ''hda'', ''state'': ''1'', ''params'': ''/windows/xenwin2008.img'', ''mode'': ''w'', ''online'': ''1'', ''frontend-id'': ''8'', ''type'': ''file''} to /local/domain/0/backend/vbd/8/768. [2009-08-14 15:29:34 2776] INFO (XendDomainInfo:2160) createDevice: vbd : {''uuid'': ''7dc5970c-8e68-3435-1b6d-176309c78acf'', ''bootable'': 0, ''driver'': ''ioemu'', ''dev'': ''ioemu:hdc:cdrom'', ''uname'': ''file:/windows/winxpSP2.iso'', ''mode'': ''r''} [2009-08-14 15:29:34 2776] DEBUG (DevController:95) DevController: writing {''backend-id'': ''0'', ''virtual-device'': ''5632'', ''device-type'': ''cdrom'', ''state'': ''1'', ''backend'': ''/local/domain/0/backend/vbd/8/5632''} to /local/domain/8/device/vbd/5632. [2009-08-14 15:29:34 2776] DEBUG (DevController:97) DevController: writing {''domain'': ''windows'', ''frontend'': ''/local/domain/8/device/vbd/5632'', ''uuid'': ''7dc5970c-8e68-3435-1b6d-176309c78acf'', ''bootable'': ''0'', ''dev'': ''hdc'', ''state'': ''1'', ''params'': ''/windows/winxpSP2.iso'', ''mode'': ''r'', ''online'': ''1'', ''frontend-id'': ''8'', ''type'': ''file''} to /local/domain/0/backend/vbd/8/5632. [2009-08-14 15:29:34 2776] INFO (XendDomainInfo:2160) createDevice: vif : {''ip'': ''204.124.181.89'', ''mac'': ''00:16:3E:FE:C2:02'', ''vifname'': ''windows'', ''uuid'': ''2103a4f8-dd0c-aecc-3510-c07bb51ff5dd''} [2009-08-14 15:29:34 2776] DEBUG (DevController:95) DevController: writing {''backend-id'': ''0'', ''mac'': ''00:16:3E:FE:C2:02'', ''handle'': ''0'', ''state'': ''1'', ''backend'': ''/local/domain/0/backend/vif/8/0''} to /local/domain/8/device/vif/0. [2009-08-14 15:29:34 2776] DEBUG (DevController:97) DevController: writing {''domain'': ''windows'', ''handle'': ''0'', ''uuid'': ''2103a4f8-dd0c-aecc-3510-c07bb51ff5dd'', ''script'': ''/etc/xen/scripts/vif-bridge'', ''ip'': ''204.124.181.89'', ''mac'': ''00:16:3E:FE:C2:02'', ''frontend-id'': ''8'', ''state'': ''1'', ''vifname'': ''windows'', ''online'': ''1'', ''frontend'': ''/local/domain/8/device/vif/0''} to /local/domain/0/backend/vif/8/0. [2009-08-14 15:29:34 2776] INFO (image:394) spawning device models: /usr/lib64/xen/bin/qemu-dm [''/usr/lib64/xen/bin/qemu-dm'', ''-d'', ''8'', ''-domain-name'', ''windows'', ''-videoram'', ''4'', ''-vnc'', ''127.0.0.1:0'', ''-vncunused'', ''-vcpus'', ''1'', ''-boot'', ''dc'', ''-acpi'', ''-usb'', ''-usbdevice'', ''tablet'', ''-net'', ''nic,vlan=1,macaddr=00:16:3E:FE:C2:02,model=rtl8139'', ''-net'', ''tap,vlan=1,ifname=tap8.0,bridge=xenbr0'', ''-M'', ''xenfv''] [2009-08-14 15:29:34 2776] INFO (image:443) device model pid: 7965 [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:3052) Storing VM details: {''on_xend_stop'': ''ignore'', ''shadow_memory'': ''9'', ''uuid'': ''ed3bbbbc-1e34-27cd-c0eb-c3b203b5e6f8'', ''on_reboot'': ''restart'', ''start_time'': ''1250278174.7'', ''on_poweroff'': ''destroy'', ''bootloader_args'': '''', ''on_xend_start'': ''ignore'', ''on_crash'': ''restart'', ''xend/restart_count'': ''0'', ''vcpus'': ''1'', ''vcpu_avail'': ''1'', ''bootloader'': '''', ''image'': ''(hvm (kernel ) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (vncconsole 1) (vncunused 1) (xen_platform_pci 1) (boot dc) (rtc_timeoffset 0) (pci ()) (pae 1) (vpt_align 1) (hap 1) (viridian 0) (acpi 1) (localtime 0) (timer_mode 1) (vnc 1) (nographic 0) (guest_os_type default) (pci_msitranslate 1) (apic 1) (sdl 0) (monitor 0) (usbdevice tablet) (device_model /usr/lib64/xen/bin/qemu-dm) (pci_power_mgmt 0) (usb 1) (xauthority /root/.Xauthority) (isa 0) (notes (SUSPEND_CANCEL 1)))'', ''name'': ''windows''} [2009-08-14 15:29:34 2776] INFO (image:531) waiting for sentinel_fifo [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:1622) Storing domain details: {''console/port'': ''3'', ''name'': ''windows'', ''console/limit'': ''1048576'', ''store/port'': ''2'', ''vm'': ''/vm/ed3bbbbc-1e34-27cd-c0eb-c3b203b5e6f8'', ''domid'': ''8'', ''image/suspend-cancel'': ''1'', ''cpu/0/availability'': ''online'', ''memory/target'': ''1048576'', ''control/platform-feature-multiprocessor-suspend'': ''1'', ''store/ring-ref'': ''1044476'', ''console/type'': ''ioemu''} [2009-08-14 15:29:34 2776] DEBUG (DevController:95) DevController: writing {''state'': ''1'', ''backend-id'': ''0'', ''backend'': ''/local/domain/0/backend/console/8/0''} to /local/domain/8/device/console/0. [2009-08-14 15:29:34 2776] DEBUG (DevController:97) DevController: writing {''domain'': ''windows'', ''frontend'': ''/local/domain/8/device/console/0'', ''uuid'': ''fee8beff-7fed-6e8c-caca-a03e0069774c'', ''frontend-id'': ''8'', ''state'': ''1'', ''location'': ''3'', ''online'': ''1'', ''protocol'': ''vt100''} to /local/domain/0/backend/console/8/0. [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:1709) XendDomainInfo.handleShutdownWatch [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices vif. [2009-08-14 15:29:34 2776] DEBUG (DevController:144) Waiting for 0. [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback /local/domain/0/backend/vif/8/0/hotplug-status. [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback /local/domain/0/backend/vif/8/0/hotplug-status. [2009-08-14 15:29:34 2776] DEBUG (DevController:643) hotplugStatusCallback 1. [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices vscsi. [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices vbd. [2009-08-14 15:29:34 2776] DEBUG (DevController:144) Waiting for 768. [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback /local/domain/0/backend/vbd/8/768/hotplug-status. [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback /local/domain/0/backend/vbd/8/768/hotplug-status. [2009-08-14 15:29:34 2776] DEBUG (DevController:643) hotplugStatusCallback 1. [2009-08-14 15:29:34 2776] DEBUG (DevController:144) Waiting for 5632. [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback /local/domain/0/backend/vbd/8/5632/hotplug-status. [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback /local/domain/0/backend/vbd/8/5632/hotplug-status. [2009-08-14 15:29:34 2776] DEBUG (DevController:643) hotplugStatusCallback 1. [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices irq. [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices vkbd. [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices vfb. [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices console. [2009-08-14 15:29:34 2776] DEBUG (DevController:144) Waiting for 0. [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices pci. [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices ioports. [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices tap. [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices vtpm. [2009-08-14 15:29:35 2776] INFO (XendDomain:1180) Domain windows (8) unpaused. -----Original Message----- From: Tait Clarridge [mailto:Tait.Clarridge@lavalife.com] Sent: Friday, August 14, 2009 3:14 PM To: ''Robbie Garrett''; xen-users@lists.xensource.com Subject: RE: [Xen-users] windows 2008 x64 no cdrom.> -----Original Message----- > From: Robbie Garrett [mailto:rgarrett@hostourweb.com] > Sent: Friday, August 14, 2009 3:07 PM > To: Tait Clarridge; xen-users@lists.xensource.com > Subject: RE: [Xen-users] windows 2008 x64 no cdrom. > > Hello, > > I have made the changed you requested and below is my config file. > > I''m using xen 3.4.1 with kernel of 2.6.18.8-xen. The problem is stillthere> for me. > > import os, re > arch = os.uname()[4] > if re.search(''64'', arch): > arch_libdir = ''lib64'' > else: > arch_libdir = ''lib'' >The above code has sometimes caused some problems for us... remove it and change the device_model line to have lib64 instead of lib in the path. First verify that /usr/lib64/xen/bin/qemu-dm exists...> > kernel = "/usr/lib/xen/boot/hvmloader" > builder=''hvm'' > memory = ''1024'' > device_model = ''/usr/lib/xen/bin/qemu-dm'' > > # Should be at least 2KB per MB of domain memory, plus a few MB per vcpu. > name = "windows" > vif = [ ''ip=204.124.181.89,mac=00:16:3E:FE:C2:02,vifname=windows'']> disk > [''file:/windows/xenwin2008.img,ioemu:hda,w'',''file:/windows/winxpSP2.is > o,ioem > u:hdc:cdrom,r''] >#---------------------------------------------------------------------------> -- > # boot on floppy (a), hard disk (c) or CD-ROM (d) > # default: hard disk, cd-rom, floppy > boot="dc" > sdl=0 > vnc=1 > vncconsole=1Try removing both the above and below lines as well...> vncpasswd='''' > > #serial=''pty'' > usbdevice=''tablet'' > > acpi=1 > apic=1 > pae=1 > usb=1Try removing the viridian=1 line as well.> viridian=1Are there any log entries from qemu-dm or xend that say anything about missing files? _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
> > My issue here is that when trying to boot from .iso image to installwindows> 2008 r2, I get message saying > > "A required cd/dvd drive device driver is missing". Where can I getthis> driver? >So the CD/DVD is detected by the BIOS and Windows starts booting, but then later gives you the error message? That really shouldn''t happen as as far as Windows is concerned it''s just a standard IDE CDROM device that has been supported since the dawn of time. Windows 2008R2 is basically Windows 7 Server, so you are obviously trailblazing here. Maybe there is a problem with the IDE CDROM emulation that is only affecting Windows 7 / 2008R2. Maybe if you re-post and ask if anyone is running Windows 2008 R2 x64 successfully you might get a response (you omitted the R2 from the subject line). Also, you need to say what version of Xen you are using. If there were any bugs in previous versions that caused this sort of problem they may well have been fixed in more recent versions. Your config looks fine btw. James _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
hello, xen version is 3.4.1. windows 2008 has been out for some time now and to my understanding is the server edition for windows vista... not windows 7. you are correct when you say that i get that message after windows boots. when I VNC into the console i can see the post, which then shows me i haev a cdrom drive. the bios is then told to boot from the cdrom. The odd thing here is that i see no hard drive, but i do see a d and x drive. since windows 2008 installs in a win pe like setup, your x drive is the ''windows'' that runs while you install the OS on the HD. so perhaps i have an issue with windows 2008 not seeing my HD? ----- Original Message ----- From: "James Harper" <james.harper@bendigoit.com.au> To: "Robbie Garrett" <rgarrett@hostourweb.com>; <xen-users@lists.xensource.com> Sent: Friday, August 14, 2009 7:32 PM Subject: RE: [Xen-users] windows 2008 x64 no cdrom.> > My issue here is that when trying to boot from .iso image to installwindows> 2008 r2, I get message saying > > "A required cd/dvd drive device driver is missing". Where can I getthis> driver? >So the CD/DVD is detected by the BIOS and Windows starts booting, but then later gives you the error message? That really shouldn''t happen as as far as Windows is concerned it''s just a standard IDE CDROM device that has been supported since the dawn of time. Windows 2008R2 is basically Windows 7 Server, so you are obviously trailblazing here. Maybe there is a problem with the IDE CDROM emulation that is only affecting Windows 7 / 2008R2. Maybe if you re-post and ask if anyone is running Windows 2008 R2 x64 successfully you might get a response (you omitted the R2 from the subject line). Also, you need to say what version of Xen you are using. If there were any bugs in previous versions that caused this sort of problem they may well have been fixed in more recent versions. Your config looks fine btw. James _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
> hello, > > xen version is 3.4.1. > > windows 2008 has been out for some time now and to my understanding isthe> server edition for windows vista... not windows 7.2008 is, more or less, the server version of Vista (2008 rtm was basically vista sp1), but the server version of Windows 7 is/will be released as R2 of 2008.> > you are correct when you say that i get that message after windowsboots.> when I VNC into the console i can see the post, which then shows me ihaev a> cdrom drive. the bios is then told to boot from the cdrom. The oddthing> here is that i see no hard drive, but i do see a d and x drive. since > windows 2008 installs in a win pe like setup, your x drive is the''windows''> that runs while you install the OS on the HD. so perhaps i have anissue> with windows 2008 not seeing my HD?Not sure where to go from there... it _should_ work, but it obviously doesn''t... have you tried to 32 bit version? James _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
There is no 32 bit 2008 r2, there is only 64 bit and I''ve had no problem installing the rtm build on xen, I''ve also installed windows 7 and that works fine too. On both I have videoram set to 8mb to enable high resolution, and viridian enabed to stop bugcheck code 101 when using multiple cpus. I don''t use any special settings for the cdrom, just file:/mnt/nas1/2008r3.iso, hdc:cdrom,r I am running xen 3.4.1 Andy On 15/08/2009, James Harper <james.harper@bendigoit.com.au> wrote:>> hello, >> >> xen version is 3.4.1. >> >> windows 2008 has been out for some time now and to my understanding is > the >> server edition for windows vista... not windows 7. > > 2008 is, more or less, the server version of Vista (2008 rtm was > basically vista sp1), but the server version of Windows 7 is/will be > released as R2 of 2008. > >> >> you are correct when you say that i get that message after windows > boots. >> when I VNC into the console i can see the post, which then shows me i > haev a >> cdrom drive. the bios is then told to boot from the cdrom. The odd > thing >> here is that i see no hard drive, but i do see a d and x drive. since >> windows 2008 installs in a win pe like setup, your x drive is the > ''windows'' >> that runs while you install the OS on the HD. so perhaps i have an > issue >> with windows 2008 not seeing my HD? > > Not sure where to go from there... it _should_ work, but it obviously > doesn''t... have you tried to 32 bit version? > > James > > _______________________________________________ > Xen-users mailing list > Xen-users@lists.xensource.com > http://lists.xensource.com/xen-users >-- Sent from my mobile device _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
The thing i do not understand here is that when i hit browse, it shows a cdrom (d drive) and an x drive(win PE virtural drive). But no hard drive. could this be a really stupid error message where windows mean to tell me that it can not find a hard drive? ----- Original Message ----- From: "Andrew Lyon" <andrew.lyon@gmail.com> To: "James Harper" <james.harper@bendigoit.com.au>; "Robbie garrett" <rgarrett@hostourweb.com>; <xen-users@lists.xensource.com> Sent: Saturday, August 15, 2009 10:14 AM Subject: Re: [Xen-users] windows 2008 x64 no cdrom.> There is no 32 bit 2008 r2, there is only 64 bit and I''ve had no > problem installing the rtm build on xen, I''ve also installed windows 7 > and that works fine too. > > On both I have videoram set to 8mb to enable high resolution, and > viridian enabed to stop bugcheck code 101 when using multiple cpus. > > I don''t use any special settings for the cdrom, just > file:/mnt/nas1/2008r3.iso, hdc:cdrom,r > > I am running xen 3.4.1 > > Andy > > On 15/08/2009, James Harper <james.harper@bendigoit.com.au> wrote: >>> hello, >>> >>> xen version is 3.4.1. >>> >>> windows 2008 has been out for some time now and to my understanding is >> the >>> server edition for windows vista... not windows 7. >> >> 2008 is, more or less, the server version of Vista (2008 rtm was >> basically vista sp1), but the server version of Windows 7 is/will be >> released as R2 of 2008. >> >>> >>> you are correct when you say that i get that message after windows >> boots. >>> when I VNC into the console i can see the post, which then shows me i >> haev a >>> cdrom drive. the bios is then told to boot from the cdrom. The odd >> thing >>> here is that i see no hard drive, but i do see a d and x drive. since >>> windows 2008 installs in a win pe like setup, your x drive is the >> ''windows'' >>> that runs while you install the OS on the HD. so perhaps i have an >> issue >>> with windows 2008 not seeing my HD? >> >> Not sure where to go from there... it _should_ work, but it obviously >> doesn''t... have you tried to 32 bit version? >> >> James >> >> _______________________________________________ >> Xen-users mailing list >> Xen-users@lists.xensource.com >> http://lists.xensource.com/xen-users >> > > -- > Sent from my mobile device >_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
what kernel version are you using? what base OS? ----- Original Message ----- From: "Andrew Lyon" <andrew.lyon@gmail.com> To: "James Harper" <james.harper@bendigoit.com.au>; "Robbie garrett" <rgarrett@hostourweb.com>; <xen-users@lists.xensource.com> Sent: Saturday, August 15, 2009 10:14 AM Subject: Re: [Xen-users] windows 2008 x64 no cdrom.> There is no 32 bit 2008 r2, there is only 64 bit and I''ve had no > problem installing the rtm build on xen, I''ve also installed windows 7 > and that works fine too. > > On both I have videoram set to 8mb to enable high resolution, and > viridian enabed to stop bugcheck code 101 when using multiple cpus. > > I don''t use any special settings for the cdrom, just > file:/mnt/nas1/2008r3.iso, hdc:cdrom,r > > I am running xen 3.4.1 > > Andy > > On 15/08/2009, James Harper <james.harper@bendigoit.com.au> wrote: >>> hello, >>> >>> xen version is 3.4.1. >>> >>> windows 2008 has been out for some time now and to my understanding is >> the >>> server edition for windows vista... not windows 7. >> >> 2008 is, more or less, the server version of Vista (2008 rtm was >> basically vista sp1), but the server version of Windows 7 is/will be >> released as R2 of 2008. >> >>> >>> you are correct when you say that i get that message after windows >> boots. >>> when I VNC into the console i can see the post, which then shows me i >> haev a >>> cdrom drive. the bios is then told to boot from the cdrom. The odd >> thing >>> here is that i see no hard drive, but i do see a d and x drive. since >>> windows 2008 installs in a win pe like setup, your x drive is the >> ''windows'' >>> that runs while you install the OS on the HD. so perhaps i have an >> issue >>> with windows 2008 not seeing my HD? >> >> Not sure where to go from there... it _should_ work, but it obviously >> doesn''t... have you tried to 32 bit version? >> >> James >> >> _______________________________________________ >> Xen-users mailing list >> Xen-users@lists.xensource.com >> http://lists.xensource.com/xen-users >> > > -- > Sent from my mobile device >_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
On Sun, Aug 16, 2009 at 2:55 PM, Robbie garrett<rgarrett@hostourweb.com> wrote:> what kernel version are you using? > what base OS?My system is Gentoo with Kernel 2.6.29-xen-r4 which is 2.6.29.3 patched with opensuse xen patches (http://code.google.com/p/gentoo-xen-kernel/downloads/list), Xen is 3.4.1. I am not using gplpv drivers as there are no windows 7 builds yet, although I noticed some code has been committed recently which mentioned windows 7, so perhaps they will be available soon.. Here is the config I used: cat /etc/xen/win7svr.cfg import os, re arch = os.uname()[4] if re.search(''64'', arch): arch_libdir = ''lib64'' else: arch_libdir = ''lib'' kernel = "/usr/lib/xen/boot/hvmloader" builder=''hvm'' memory = 2048 name = "win7svr" uuid = "573b4798-4e19-410e-881d-c8e1b2ae57f8" vcpus=8 cpuid=[''1:edx=xxx1xxxxxxxxxxxxxxxxxxxxxxxxxxxx,ebx=xxxxxxxx00010000xxxxxxxxxxxxxxxx'',''4,0:eax=001111xxxxxxxxxxxxxxxxxxxxxxxxxx''] vif = [ ''mac=00:16:73:2d:f7:bd'' ] disk = [ ''phy:/dev/sasraid1/lv_win7svr,hda,w'',''file:/mnt/store/win7svrrtm/7600.16385.090713-1255_x64fre_server_eval_en-us-GRMSXEVAL_EN_DVD.iso,hdc:cdrom,r'' ] device_model = ''/usr/'' + arch_libdir + ''/xen/bin/qemu-dm'' boot="d" sdl=0 vnc=1 vnclisten="10.0.4.2" vncdisplay=19 vncpasswd=''password'' serial=''pty'' usbdevice=''tablet'' keymap=''en-gb'' stdvga=1 videoram=16 viridian=1 Andy _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
that''s what i needed to know. so how do i upgrade my kernel? The one that comes with Xen is 2.6.18-xen and that''s from doing a make world. since the kernel is older the one that came with my system (desbian 5.0) i would like to upgrade it. doing a google search on the subject does not return much of how to upgrade a kernel from 2.6.18. ----- Original Message ----- From: "Andrew Lyon" <andrew.lyon@gmail.com> To: "Robbie garrett" <rgarrett@hostourweb.com> Cc: "James Harper" <james.harper@bendigoit.com.au>; <xen-users@lists.xensource.com> Sent: Sunday, August 16, 2009 10:33 AM Subject: Re: [Xen-users] windows 2008 x64 no cdrom.> On Sun, Aug 16, 2009 at 2:55 PM, Robbie garrett<rgarrett@hostourweb.com> > wrote: >> what kernel version are you using? >> what base OS? > > My system is Gentoo with Kernel 2.6.29-xen-r4 which is 2.6.29.3 > patched with opensuse xen patches > (http://code.google.com/p/gentoo-xen-kernel/downloads/list), Xen is > 3.4.1. > > I am not using gplpv drivers as there are no windows 7 builds yet, > although I noticed some code has been committed recently which > mentioned windows 7, so perhaps they will be available soon.. > > Here is the config I used: > > cat /etc/xen/win7svr.cfg > > import os, re > arch = os.uname()[4] > if re.search(''64'', arch): > arch_libdir = ''lib64'' > else: > arch_libdir = ''lib'' > kernel = "/usr/lib/xen/boot/hvmloader" > builder=''hvm'' > memory = 2048 > name = "win7svr" > uuid = "573b4798-4e19-410e-881d-c8e1b2ae57f8" > vcpus=8 > cpuid=[''1:edx=xxx1xxxxxxxxxxxxxxxxxxxxxxxxxxxx,ebx=xxxxxxxx00010000xxxxxxxxxxxxxxxx'',''4,0:eax=001111xxxxxxxxxxxxxxxxxxxxxxxxxx''] > > vif = [ ''mac=00:16:73:2d:f7:bd'' ] > disk = [ > ''phy:/dev/sasraid1/lv_win7svr,hda,w'',''file:/mnt/store/win7svrrtm/7600.16385.090713-1255_x64fre_server_eval_en-us-GRMSXEVAL_EN_DVD.iso,hdc:cdrom,r'' > ] > device_model = ''/usr/'' + arch_libdir + ''/xen/bin/qemu-dm'' > boot="d" > sdl=0 > vnc=1 > vnclisten="10.0.4.2" > vncdisplay=19 > vncpasswd=''password'' > serial=''pty'' > usbdevice=''tablet'' > keymap=''en-gb'' > stdvga=1 > videoram=16 > viridian=1 > > Andy >_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
On Sun, Aug 16, 2009 at 10:44:53AM -0400, Robbie garrett wrote:> that''s what i needed to know. > > so how do i upgrade my kernel? The one that comes with Xen is 2.6.18-xen > and that''s from doing a make world. > > since the kernel is older the one that came with my system (desbian 5.0) i > would like to upgrade it. > > doing a google search on the subject does not return much of how to upgrade > a kernel from 2.6.18. >linux-2.6.18-xen is the official tested/supported dom0 kernel for Xen 3.4.x. There are forward-ported patches for some newer kernels, but those are not ''official''. See here for more information: http://wiki.xensource.com/xenwiki/XenDom0Kernels -- Pasi> > ----- Original Message ----- > From: "Andrew Lyon" <andrew.lyon@gmail.com> > To: "Robbie garrett" <rgarrett@hostourweb.com> > Cc: "James Harper" <james.harper@bendigoit.com.au>; > <xen-users@lists.xensource.com> > Sent: Sunday, August 16, 2009 10:33 AM > Subject: Re: [Xen-users] windows 2008 x64 no cdrom. > > > >On Sun, Aug 16, 2009 at 2:55 PM, Robbie garrett<rgarrett@hostourweb.com> > >wrote: > >>what kernel version are you using? > >>what base OS? > > > >My system is Gentoo with Kernel 2.6.29-xen-r4 which is 2.6.29.3 > >patched with opensuse xen patches > >(http://code.google.com/p/gentoo-xen-kernel/downloads/list), Xen is > >3.4.1. > > > >I am not using gplpv drivers as there are no windows 7 builds yet, > >although I noticed some code has been committed recently which > >mentioned windows 7, so perhaps they will be available soon.. > > > >Here is the config I used: > > > >cat /etc/xen/win7svr.cfg > > > >import os, re > >arch = os.uname()[4] > >if re.search(''64'', arch): > > arch_libdir = ''lib64'' > >else: > > arch_libdir = ''lib'' > >kernel = "/usr/lib/xen/boot/hvmloader" > >builder=''hvm'' > >memory = 2048 > >name = "win7svr" > >uuid = "573b4798-4e19-410e-881d-c8e1b2ae57f8" > >vcpus=8 > >cpuid=[''1:edx=xxx1xxxxxxxxxxxxxxxxxxxxxxxxxxxx,ebx=xxxxxxxx00010000xxxxxxxxxxxxxxxx'',''4,0:eax=001111xxxxxxxxxxxxxxxxxxxxxxxxxx''] > > > >vif = [ ''mac=00:16:73:2d:f7:bd'' ] > >disk = [ > >''phy:/dev/sasraid1/lv_win7svr,hda,w'',''file:/mnt/store/win7svrrtm/7600.16385.090713-1255_x64fre_server_eval_en-us-GRMSXEVAL_EN_DVD.iso,hdc:cdrom,r'' > >] > >device_model = ''/usr/'' + arch_libdir + ''/xen/bin/qemu-dm'' > >boot="d" > >sdl=0 > >vnc=1 > >vnclisten="10.0.4.2" > >vncdisplay=19 > >vncpasswd=''password'' > >serial=''pty'' > >usbdevice=''tablet'' > >keymap=''en-gb'' > >stdvga=1 > >videoram=16 > >viridian=1 > > > >Andy > > > > > _______________________________________________ > Xen-users mailing list > Xen-users@lists.xensource.com > http://lists.xensource.com/xen-users_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
could this be a kernel problem? ----- Original Message ----- From: "Pasi Kärkkäinen" <pasik@iki.fi> To: "Robbie garrett" <rgarrett@hostourweb.com> Cc: "Andrew Lyon" <andrew.lyon@gmail.com>; "James Harper" <james.harper@bendigoit.com.au>; <xen-users@lists.xensource.com> Sent: Sunday, August 16, 2009 10:56 AM Subject: Re: [Xen-users] windows 2008 x64 no cdrom.> On Sun, Aug 16, 2009 at 10:44:53AM -0400, Robbie garrett wrote: >> that''s what i needed to know. >> >> so how do i upgrade my kernel? The one that comes with Xen is 2.6.18-xen >> and that''s from doing a make world. >> >> since the kernel is older the one that came with my system (desbian 5.0) >> i >> would like to upgrade it. >> >> doing a google search on the subject does not return much of how to >> upgrade >> a kernel from 2.6.18. >> > > linux-2.6.18-xen is the official tested/supported dom0 kernel for Xen > 3.4.x. > > There are forward-ported patches for some newer kernels, but those are not > ''official''. > > See here for more information: > http://wiki.xensource.com/xenwiki/XenDom0Kernels > > -- Pasi > >> >> ----- Original Message ----- >> From: "Andrew Lyon" <andrew.lyon@gmail.com> >> To: "Robbie garrett" <rgarrett@hostourweb.com> >> Cc: "James Harper" <james.harper@bendigoit.com.au>; >> <xen-users@lists.xensource.com> >> Sent: Sunday, August 16, 2009 10:33 AM >> Subject: Re: [Xen-users] windows 2008 x64 no cdrom. >> >> >> >On Sun, Aug 16, 2009 at 2:55 PM, Robbie garrett<rgarrett@hostourweb.com> >> >wrote: >> >>what kernel version are you using? >> >>what base OS? >> > >> >My system is Gentoo with Kernel 2.6.29-xen-r4 which is 2.6.29.3 >> >patched with opensuse xen patches >> >(http://code.google.com/p/gentoo-xen-kernel/downloads/list), Xen is >> >3.4.1. >> > >> >I am not using gplpv drivers as there are no windows 7 builds yet, >> >although I noticed some code has been committed recently which >> >mentioned windows 7, so perhaps they will be available soon.. >> > >> >Here is the config I used: >> > >> >cat /etc/xen/win7svr.cfg >> > >> >import os, re >> >arch = os.uname()[4] >> >if re.search(''64'', arch): >> > arch_libdir = ''lib64'' >> >else: >> > arch_libdir = ''lib'' >> >kernel = "/usr/lib/xen/boot/hvmloader" >> >builder=''hvm'' >> >memory = 2048 >> >name = "win7svr" >> >uuid = "573b4798-4e19-410e-881d-c8e1b2ae57f8" >> >vcpus=8 >> >cpuid=[''1:edx=xxx1xxxxxxxxxxxxxxxxxxxxxxxxxxxx,ebx=xxxxxxxx00010000xxxxxxxxxxxxxxxx'',''4,0:eax=001111xxxxxxxxxxxxxxxxxxxxxxxxxx''] >> > >> >vif = [ ''mac=00:16:73:2d:f7:bd'' ] >> >disk = [ >> >''phy:/dev/sasraid1/lv_win7svr,hda,w'',''file:/mnt/store/win7svrrtm/7600.16385.090713-1255_x64fre_server_eval_en-us-GRMSXEVAL_EN_DVD.iso,hdc:cdrom,r'' >> >] >> >device_model = ''/usr/'' + arch_libdir + ''/xen/bin/qemu-dm'' >> >boot="d" >> >sdl=0 >> >vnc=1 >> >vnclisten="10.0.4.2" >> >vncdisplay=19 >> >vncpasswd=''password'' >> >serial=''pty'' >> >usbdevice=''tablet'' >> >keymap=''en-gb'' >> >stdvga=1 >> >videoram=16 >> >viridian=1 >> > >> >Andy >> > >> >> >> _______________________________________________ >> Xen-users mailing list >> Xen-users@lists.xensource.com >> http://lists.xensource.com/xen-users >_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
I am able to use windows 2003 x64 R2 edition with no problem at all. It installs and runs with no issues what so ever. I am attempting to upgrade the kernel in hopes that it solves the issue with windows 2008 x 64 R2. -----Original Message----- From: Robbie Garrett [mailto:rgarrett@hostourweb.com] Sent: Friday, August 14, 2009 3:33 PM To: ''Tait Clarridge''; ''xen-users@lists.xensource.com'' Subject: RE: [Xen-users] windows 2008 x64 no cdrom. Hello. Made your changes and the new file is below. Still the same issue. import os, re arch = os.uname()[4] kernel = "/usr/lib/xen/boot/hvmloader" builder=''hvm'' memory = ''1024'' device_model = ''/usr/lib64/xen/bin/qemu-dm'' # Should be at least 2KB per MB of domain memory, plus a few MB per vcpu. name = "windows" vif = [ ''ip=204.124.181.89,mac=00:16:3E:FE:C2:02,vifname=windows'' ] disk [''file:/windows/xenwin2008.img,ioemu:hda,w'',''file:/windows/winxpSP2.iso,ioem u:hdc:cdrom,r''] #--------------------------------------------------------------------------- -- # boot on floppy (a), hard disk (c) or CD-ROM (d) # default: hard disk, cd-rom, floppy boot="dc" sdl=0 vnc=1 vncconsole=1 vncpasswd='''' #serial=''pty'' usbdevice=''tablet'' acpi=1 apic=1 pae=1 usb=1 xend.log file output since command issued xm create windows.cfg [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:92) XendDomainInfo.create([''vm'', [''name'', ''windows''], [''memory'', ''1024''], [''vcpus'', 1], [''on_xend_start'', ''ignore''], [''on_xend_stop'', ''ignore''], [''image'', [''hvm'', [''kernel'', ''/usr/lib/xen/boot/hvmloader''], [''videoram'', 4], [''device_model'', ''/usr/lib64/xen/bin/qemu-dm''], [''pae'', 1], [''vcpus'', 1], [''boot'', ''dc''], [''fda'', ''''], [''fdb'', ''''], [''timer_mode'', 1], [''localtime'', 0], [''serial'', ''''], [''stdvga'', 0], [''isa'', 0], [''nographic'', 0], [''soundhw'', ''''], [''vnc'', 1], [''vncunused'', 1], [''vncconsole'', 1], [''sdl'', 0], [''xauthority'', ''/root/.Xauthority''], [''rtc_timeoffset'', 0], [''monitor'', 0], [''acpi'', 1], [''apic'', 1], [''usb'', 1], [''usbdevice'', ''tablet''], [''keymap'', ''''], [''pci'', []], [''hpet'', 0], [''guest_os_type'', ''default''], [''hap'', 1], [''cpuid'', []], [''cpuid_check'', []], [''viridian'', 0], [''pci_msitranslate'', 1], [''vpt_align'', 1], [''pci_power_mgmt'', 0], [''xen_platform_pci'', 1], [''vncpasswd'', ''XXXXXXXX'']]], [''s3_integrity'', 1], [''device'', [''vbd'', [''uname'', ''file:/windows/xenwin2008.img''], [''dev'', ''ioemu:hda''], [''mode'', ''w'']]], [''device'', [''vbd'', [''uname'', ''file:/windows/winxpSP2.iso''], [''dev'', ''ioemu:hdc:cdrom''], [''mode'', ''r'']]], [''device'', [''vif'', [''ip'', ''204.124.181.89''], [''mac'', ''00:16:3E:FE:C2:02''], [''vifname'', ''windows'']]]]) [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:2296) XendDomainInfo.constructDomain [2009-08-14 15:29:34 2776] DEBUG (balloon:166) Balloon: 1071836 KiB free; need 4096; done. [2009-08-14 15:29:34 2776] DEBUG (XendDomain:452) Adding Domain: 8 [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:2497) XendDomainInfo.initDomain: 8 256 [2009-08-14 15:29:34 2776] DEBUG (image:322) No VNC passwd configured for vfb access [2009-08-14 15:29:34 2776] DEBUG (image:809) args: boot, val: dc [2009-08-14 15:29:34 2776] DEBUG (image:809) args: fda, val: None [2009-08-14 15:29:34 2776] DEBUG (image:809) args: fdb, val: None [2009-08-14 15:29:34 2776] DEBUG (image:809) args: soundhw, val: None [2009-08-14 15:29:34 2776] DEBUG (image:809) args: localtime, val: 0 [2009-08-14 15:29:34 2776] DEBUG (image:809) args: serial, val: None [2009-08-14 15:29:34 2776] DEBUG (image:809) args: std-vga, val: 0 [2009-08-14 15:29:34 2776] DEBUG (image:809) args: isa, val: 0 [2009-08-14 15:29:34 2776] DEBUG (image:809) args: acpi, val: 1 [2009-08-14 15:29:34 2776] DEBUG (image:809) args: usb, val: 1 [2009-08-14 15:29:34 2776] DEBUG (image:809) args: usbdevice, val: tablet [2009-08-14 15:29:34 2776] INFO (image:745) Need to create platform device.[domid:8] [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:2521) _initDomain:shadow_memory=0x0, memory_static_max=0x40000000, memory_static_min=0x0. [2009-08-14 15:29:34 2776] DEBUG (balloon:166) Balloon: 1070424 KiB free; need 1065984; done. [2009-08-14 15:29:34 2776] INFO (image:173) buildDomain os=hvm dom=8 vcpus=1 [2009-08-14 15:29:34 2776] DEBUG (image:862) domid = 8 [2009-08-14 15:29:34 2776] DEBUG (image:863) image /usr/lib/xen/boot/hvmloader [2009-08-14 15:29:34 2776] DEBUG (image:864) store_evtchn = 2 [2009-08-14 15:29:34 2776] DEBUG (image:865) memsize = 1024 [2009-08-14 15:29:34 2776] DEBUG (image:866) target = 1024 [2009-08-14 15:29:34 2776] DEBUG (image:867) vcpus = 1 [2009-08-14 15:29:34 2776] DEBUG (image:868) acpi = 1 [2009-08-14 15:29:34 2776] DEBUG (image:869) apic = 1 [2009-08-14 15:29:34 2776] INFO (XendDomainInfo:2160) createDevice: vfb : {''vncunused'': 1, ''other_config'': {''vncunused'': 1, ''vnc'': ''1''}, ''vnc'': ''1'', ''uuid'': ''d5521524-f898-0ece-fea0-34f87eb278eb''} [2009-08-14 15:29:34 2776] DEBUG (DevController:95) DevController: writing {''state'': ''1'', ''backend-id'': ''0'', ''backend'': ''/local/domain/0/backend/vfb/8/0''} to /local/domain/8/device/vfb/0. [2009-08-14 15:29:34 2776] DEBUG (DevController:97) DevController: writing {''vncunused'': ''1'', ''domain'': ''windows'', ''frontend'': ''/local/domain/8/device/vfb/0'', ''uuid'': ''d5521524-f898-0ece-fea0-34f87eb278eb'', ''frontend-id'': ''8'', ''state'': ''1'', ''online'': ''1'', ''vnc'': ''1''} to /local/domain/0/backend/vfb/8/0. [2009-08-14 15:29:34 2776] INFO (XendDomainInfo:2160) createDevice: vbd : {''uuid'': ''5c474d98-2d59-91ff-7d0d-0d864ae161dc'', ''bootable'': 1, ''driver'': ''ioemu'', ''dev'': ''ioemu:hda'', ''uname'': ''file:/windows/xenwin2008.img'', ''mode'': ''w''} [2009-08-14 15:29:34 2776] DEBUG (DevController:95) DevController: writing {''backend-id'': ''0'', ''virtual-device'': ''768'', ''device-type'': ''disk'', ''state'': ''1'', ''backend'': ''/local/domain/0/backend/vbd/8/768''} to /local/domain/8/device/vbd/768. [2009-08-14 15:29:34 2776] DEBUG (DevController:97) DevController: writing {''domain'': ''windows'', ''frontend'': ''/local/domain/8/device/vbd/768'', ''uuid'': ''5c474d98-2d59-91ff-7d0d-0d864ae161dc'', ''bootable'': ''1'', ''dev'': ''hda'', ''state'': ''1'', ''params'': ''/windows/xenwin2008.img'', ''mode'': ''w'', ''online'': ''1'', ''frontend-id'': ''8'', ''type'': ''file''} to /local/domain/0/backend/vbd/8/768. [2009-08-14 15:29:34 2776] INFO (XendDomainInfo:2160) createDevice: vbd : {''uuid'': ''7dc5970c-8e68-3435-1b6d-176309c78acf'', ''bootable'': 0, ''driver'': ''ioemu'', ''dev'': ''ioemu:hdc:cdrom'', ''uname'': ''file:/windows/winxpSP2.iso'', ''mode'': ''r''} [2009-08-14 15:29:34 2776] DEBUG (DevController:95) DevController: writing {''backend-id'': ''0'', ''virtual-device'': ''5632'', ''device-type'': ''cdrom'', ''state'': ''1'', ''backend'': ''/local/domain/0/backend/vbd/8/5632''} to /local/domain/8/device/vbd/5632. [2009-08-14 15:29:34 2776] DEBUG (DevController:97) DevController: writing {''domain'': ''windows'', ''frontend'': ''/local/domain/8/device/vbd/5632'', ''uuid'': ''7dc5970c-8e68-3435-1b6d-176309c78acf'', ''bootable'': ''0'', ''dev'': ''hdc'', ''state'': ''1'', ''params'': ''/windows/winxpSP2.iso'', ''mode'': ''r'', ''online'': ''1'', ''frontend-id'': ''8'', ''type'': ''file''} to /local/domain/0/backend/vbd/8/5632. [2009-08-14 15:29:34 2776] INFO (XendDomainInfo:2160) createDevice: vif : {''ip'': ''204.124.181.89'', ''mac'': ''00:16:3E:FE:C2:02'', ''vifname'': ''windows'', ''uuid'': ''2103a4f8-dd0c-aecc-3510-c07bb51ff5dd''} [2009-08-14 15:29:34 2776] DEBUG (DevController:95) DevController: writing {''backend-id'': ''0'', ''mac'': ''00:16:3E:FE:C2:02'', ''handle'': ''0'', ''state'': ''1'', ''backend'': ''/local/domain/0/backend/vif/8/0''} to /local/domain/8/device/vif/0. [2009-08-14 15:29:34 2776] DEBUG (DevController:97) DevController: writing {''domain'': ''windows'', ''handle'': ''0'', ''uuid'': ''2103a4f8-dd0c-aecc-3510-c07bb51ff5dd'', ''script'': ''/etc/xen/scripts/vif-bridge'', ''ip'': ''204.124.181.89'', ''mac'': ''00:16:3E:FE:C2:02'', ''frontend-id'': ''8'', ''state'': ''1'', ''vifname'': ''windows'', ''online'': ''1'', ''frontend'': ''/local/domain/8/device/vif/0''} to /local/domain/0/backend/vif/8/0. [2009-08-14 15:29:34 2776] INFO (image:394) spawning device models: /usr/lib64/xen/bin/qemu-dm [''/usr/lib64/xen/bin/qemu-dm'', ''-d'', ''8'', ''-domain-name'', ''windows'', ''-videoram'', ''4'', ''-vnc'', ''127.0.0.1:0'', ''-vncunused'', ''-vcpus'', ''1'', ''-boot'', ''dc'', ''-acpi'', ''-usb'', ''-usbdevice'', ''tablet'', ''-net'', ''nic,vlan=1,macaddr=00:16:3E:FE:C2:02,model=rtl8139'', ''-net'', ''tap,vlan=1,ifname=tap8.0,bridge=xenbr0'', ''-M'', ''xenfv''] [2009-08-14 15:29:34 2776] INFO (image:443) device model pid: 7965 [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:3052) Storing VM details: {''on_xend_stop'': ''ignore'', ''shadow_memory'': ''9'', ''uuid'': ''ed3bbbbc-1e34-27cd-c0eb-c3b203b5e6f8'', ''on_reboot'': ''restart'', ''start_time'': ''1250278174.7'', ''on_poweroff'': ''destroy'', ''bootloader_args'': '''', ''on_xend_start'': ''ignore'', ''on_crash'': ''restart'', ''xend/restart_count'': ''0'', ''vcpus'': ''1'', ''vcpu_avail'': ''1'', ''bootloader'': '''', ''image'': ''(hvm (kernel ) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (vncconsole 1) (vncunused 1) (xen_platform_pci 1) (boot dc) (rtc_timeoffset 0) (pci ()) (pae 1) (vpt_align 1) (hap 1) (viridian 0) (acpi 1) (localtime 0) (timer_mode 1) (vnc 1) (nographic 0) (guest_os_type default) (pci_msitranslate 1) (apic 1) (sdl 0) (monitor 0) (usbdevice tablet) (device_model /usr/lib64/xen/bin/qemu-dm) (pci_power_mgmt 0) (usb 1) (xauthority /root/.Xauthority) (isa 0) (notes (SUSPEND_CANCEL 1)))'', ''name'': ''windows''} [2009-08-14 15:29:34 2776] INFO (image:531) waiting for sentinel_fifo [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:1622) Storing domain details: {''console/port'': ''3'', ''name'': ''windows'', ''console/limit'': ''1048576'', ''store/port'': ''2'', ''vm'': ''/vm/ed3bbbbc-1e34-27cd-c0eb-c3b203b5e6f8'', ''domid'': ''8'', ''image/suspend-cancel'': ''1'', ''cpu/0/availability'': ''online'', ''memory/target'': ''1048576'', ''control/platform-feature-multiprocessor-suspend'': ''1'', ''store/ring-ref'': ''1044476'', ''console/type'': ''ioemu''} [2009-08-14 15:29:34 2776] DEBUG (DevController:95) DevController: writing {''state'': ''1'', ''backend-id'': ''0'', ''backend'': ''/local/domain/0/backend/console/8/0''} to /local/domain/8/device/console/0. [2009-08-14 15:29:34 2776] DEBUG (DevController:97) DevController: writing {''domain'': ''windows'', ''frontend'': ''/local/domain/8/device/console/0'', ''uuid'': ''fee8beff-7fed-6e8c-caca-a03e0069774c'', ''frontend-id'': ''8'', ''state'': ''1'', ''location'': ''3'', ''online'': ''1'', ''protocol'': ''vt100''} to /local/domain/0/backend/console/8/0. [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:1709) XendDomainInfo.handleShutdownWatch [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices vif. [2009-08-14 15:29:34 2776] DEBUG (DevController:144) Waiting for 0. [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback /local/domain/0/backend/vif/8/0/hotplug-status. [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback /local/domain/0/backend/vif/8/0/hotplug-status. [2009-08-14 15:29:34 2776] DEBUG (DevController:643) hotplugStatusCallback 1. [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices vscsi. [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices vbd. [2009-08-14 15:29:34 2776] DEBUG (DevController:144) Waiting for 768. [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback /local/domain/0/backend/vbd/8/768/hotplug-status. [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback /local/domain/0/backend/vbd/8/768/hotplug-status. [2009-08-14 15:29:34 2776] DEBUG (DevController:643) hotplugStatusCallback 1. [2009-08-14 15:29:34 2776] DEBUG (DevController:144) Waiting for 5632. [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback /local/domain/0/backend/vbd/8/5632/hotplug-status. [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback /local/domain/0/backend/vbd/8/5632/hotplug-status. [2009-08-14 15:29:34 2776] DEBUG (DevController:643) hotplugStatusCallback 1. [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices irq. [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices vkbd. [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices vfb. [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices console. [2009-08-14 15:29:34 2776] DEBUG (DevController:144) Waiting for 0. [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices pci. [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices ioports. [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices tap. [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices vtpm. [2009-08-14 15:29:35 2776] INFO (XendDomain:1180) Domain windows (8) unpaused. -----Original Message----- From: Tait Clarridge [mailto:Tait.Clarridge@lavalife.com] Sent: Friday, August 14, 2009 3:14 PM To: ''Robbie Garrett''; xen-users@lists.xensource.com Subject: RE: [Xen-users] windows 2008 x64 no cdrom.> -----Original Message----- > From: Robbie Garrett [mailto:rgarrett@hostourweb.com] > Sent: Friday, August 14, 2009 3:07 PM > To: Tait Clarridge; xen-users@lists.xensource.com > Subject: RE: [Xen-users] windows 2008 x64 no cdrom. > > Hello, > > I have made the changed you requested and below is my config file. > > I''m using xen 3.4.1 with kernel of 2.6.18.8-xen. The problem is stillthere> for me. > > import os, re > arch = os.uname()[4] > if re.search(''64'', arch): > arch_libdir = ''lib64'' > else: > arch_libdir = ''lib'' >The above code has sometimes caused some problems for us... remove it and change the device_model line to have lib64 instead of lib in the path. First verify that /usr/lib64/xen/bin/qemu-dm exists...> > kernel = "/usr/lib/xen/boot/hvmloader" > builder=''hvm'' > memory = ''1024'' > device_model = ''/usr/lib/xen/bin/qemu-dm'' > > # Should be at least 2KB per MB of domain memory, plus a few MB per vcpu. > name = "windows" > vif = [ ''ip=204.124.181.89,mac=00:16:3E:FE:C2:02,vifname=windows'']> disk > [''file:/windows/xenwin2008.img,ioemu:hda,w'',''file:/windows/winxpSP2.is > o,ioem > u:hdc:cdrom,r''] >#---------------------------------------------------------------------------> -- > # boot on floppy (a), hard disk (c) or CD-ROM (d) > # default: hard disk, cd-rom, floppy > boot="dc" > sdl=0 > vnc=1 > vncconsole=1Try removing both the above and below lines as well...> vncpasswd='''' > > #serial=''pty'' > usbdevice=''tablet'' > > acpi=1 > apic=1 > pae=1 > usb=1Try removing the viridian=1 line as well.> viridian=1Are there any log entries from qemu-dm or xend that say anything about missing files? _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Did anyone ever solve the issue of installing Win 2008 R2 on Xen? On 24/08/09 18:25, Robbie Garrett wrote:> I am able to use windows 2003 x64 R2 edition with no problem at all. It > installs and runs with no issues what so ever. > > I am attempting to upgrade the kernel in hopes that it solves the issue with > windows 2008 x 64 R2. > > -----Original Message----- > From: Robbie Garrett [mailto:rgarrett@hostourweb.com] > Sent: Friday, August 14, 2009 3:33 PM > To: ''Tait Clarridge''; ''xen-users@lists.xensource.com'' > Subject: RE: [Xen-users] windows 2008 x64 no cdrom. > > Hello. > > Made your changes and the new file is below. Still the same issue. > > > import os, re > arch = os.uname()[4] > > kernel = "/usr/lib/xen/boot/hvmloader" > builder=''hvm'' > memory = ''1024'' > device_model = ''/usr/lib64/xen/bin/qemu-dm'' > > # Should be at least 2KB per MB of domain memory, plus a few MB per vcpu. > name = "windows" > vif = [ ''ip=204.124.181.89,mac=00:16:3E:FE:C2:02,vifname=windows'' ] > disk > [''file:/windows/xenwin2008.img,ioemu:hda,w'',''file:/windows/winxpSP2.iso,ioem > u:hdc:cdrom,r''] > #--------------------------------------------------------------------------- > -- > # boot on floppy (a), hard disk (c) or CD-ROM (d) > # default: hard disk, cd-rom, floppy > boot="dc" > sdl=0 > vnc=1 > vncconsole=1 > vncpasswd='''' > > #serial=''pty'' > usbdevice=''tablet'' > > acpi=1 > apic=1 > pae=1 > usb=1 > > > xend.log file output since command issued xm create windows.cfg > > [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:92) > XendDomainInfo.create([''vm'', [''name'', ''windows''], [''memory'', ''1024''], > [''vcpus'', 1], [''on_xend_start'', ''ignore''], [''on_xend_stop'', ''ignore''], > [''image'', [''hvm'', [''kernel'', ''/usr/lib/xen/boot/hvmloader''], [''videoram'', > 4], [''device_model'', ''/usr/lib64/xen/bin/qemu-dm''], [''pae'', 1], [''vcpus'', > 1], [''boot'', ''dc''], [''fda'', ''''], [''fdb'', ''''], [''timer_mode'', 1], > [''localtime'', 0], [''serial'', ''''], [''stdvga'', 0], [''isa'', 0], [''nographic'', > 0], [''soundhw'', ''''], [''vnc'', 1], [''vncunused'', 1], [''vncconsole'', 1], > [''sdl'', 0], [''xauthority'', ''/root/.Xauthority''], [''rtc_timeoffset'', 0], > [''monitor'', 0], [''acpi'', 1], [''apic'', 1], [''usb'', 1], [''usbdevice'', > ''tablet''], [''keymap'', ''''], [''pci'', []], [''hpet'', 0], [''guest_os_type'', > ''default''], [''hap'', 1], [''cpuid'', []], [''cpuid_check'', []], [''viridian'', 0], > [''pci_msitranslate'', 1], [''vpt_align'', 1], [''pci_power_mgmt'', 0], > [''xen_platform_pci'', 1], [''vncpasswd'', ''XXXXXXXX'']]], [''s3_integrity'', 1], > [''device'', [''vbd'', [''uname'', ''file:/windows/xenwin2008.img''], [''dev'', > ''ioemu:hda''], [''mode'', ''w'']]], [''device'', [''vbd'', [''uname'', > ''file:/windows/winxpSP2.iso''], [''dev'', ''ioemu:hdc:cdrom''], [''mode'', ''r'']]], > [''device'', [''vif'', [''ip'', ''204.124.181.89''], [''mac'', ''00:16:3E:FE:C2:02''], > [''vifname'', ''windows'']]]]) > [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:2296) > XendDomainInfo.constructDomain > [2009-08-14 15:29:34 2776] DEBUG (balloon:166) Balloon: 1071836 KiB free; > need 4096; done. > [2009-08-14 15:29:34 2776] DEBUG (XendDomain:452) Adding Domain: 8 > [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:2497) > XendDomainInfo.initDomain: 8 256 > [2009-08-14 15:29:34 2776] DEBUG (image:322) No VNC passwd configured for > vfb access > [2009-08-14 15:29:34 2776] DEBUG (image:809) args: boot, val: dc > [2009-08-14 15:29:34 2776] DEBUG (image:809) args: fda, val: None > [2009-08-14 15:29:34 2776] DEBUG (image:809) args: fdb, val: None > [2009-08-14 15:29:34 2776] DEBUG (image:809) args: soundhw, val: None > [2009-08-14 15:29:34 2776] DEBUG (image:809) args: localtime, val: 0 > [2009-08-14 15:29:34 2776] DEBUG (image:809) args: serial, val: None > [2009-08-14 15:29:34 2776] DEBUG (image:809) args: std-vga, val: 0 > [2009-08-14 15:29:34 2776] DEBUG (image:809) args: isa, val: 0 > [2009-08-14 15:29:34 2776] DEBUG (image:809) args: acpi, val: 1 > [2009-08-14 15:29:34 2776] DEBUG (image:809) args: usb, val: 1 > [2009-08-14 15:29:34 2776] DEBUG (image:809) args: usbdevice, val: tablet > [2009-08-14 15:29:34 2776] INFO (image:745) Need to create platform > device.[domid:8] > [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:2521) > _initDomain:shadow_memory=0x0, memory_static_max=0x40000000, > memory_static_min=0x0. > [2009-08-14 15:29:34 2776] DEBUG (balloon:166) Balloon: 1070424 KiB free; > need 1065984; done. > [2009-08-14 15:29:34 2776] INFO (image:173) buildDomain os=hvm dom=8 vcpus=1 > [2009-08-14 15:29:34 2776] DEBUG (image:862) domid = 8 > [2009-08-14 15:29:34 2776] DEBUG (image:863) image > /usr/lib/xen/boot/hvmloader > [2009-08-14 15:29:34 2776] DEBUG (image:864) store_evtchn = 2 > [2009-08-14 15:29:34 2776] DEBUG (image:865) memsize = 1024 > [2009-08-14 15:29:34 2776] DEBUG (image:866) target = 1024 > [2009-08-14 15:29:34 2776] DEBUG (image:867) vcpus = 1 > [2009-08-14 15:29:34 2776] DEBUG (image:868) acpi = 1 > [2009-08-14 15:29:34 2776] DEBUG (image:869) apic = 1 > [2009-08-14 15:29:34 2776] INFO (XendDomainInfo:2160) createDevice: vfb : > {''vncunused'': 1, ''other_config'': {''vncunused'': 1, ''vnc'': ''1''}, ''vnc'': ''1'', > ''uuid'': ''d5521524-f898-0ece-fea0-34f87eb278eb''} > [2009-08-14 15:29:34 2776] DEBUG (DevController:95) DevController: writing > {''state'': ''1'', ''backend-id'': ''0'', ''backend'': > ''/local/domain/0/backend/vfb/8/0''} to /local/domain/8/device/vfb/0. > [2009-08-14 15:29:34 2776] DEBUG (DevController:97) DevController: writing > {''vncunused'': ''1'', ''domain'': ''windows'', ''frontend'': > ''/local/domain/8/device/vfb/0'', ''uuid'': > ''d5521524-f898-0ece-fea0-34f87eb278eb'', ''frontend-id'': ''8'', ''state'': ''1'', > ''online'': ''1'', ''vnc'': ''1''} to /local/domain/0/backend/vfb/8/0. > [2009-08-14 15:29:34 2776] INFO (XendDomainInfo:2160) createDevice: vbd : > {''uuid'': ''5c474d98-2d59-91ff-7d0d-0d864ae161dc'', ''bootable'': 1, ''driver'': > ''ioemu'', ''dev'': ''ioemu:hda'', ''uname'': ''file:/windows/xenwin2008.img'', > ''mode'': ''w''} > [2009-08-14 15:29:34 2776] DEBUG (DevController:95) DevController: writing > {''backend-id'': ''0'', ''virtual-device'': ''768'', ''device-type'': ''disk'', ''state'': > ''1'', ''backend'': ''/local/domain/0/backend/vbd/8/768''} to > /local/domain/8/device/vbd/768. > [2009-08-14 15:29:34 2776] DEBUG (DevController:97) DevController: writing > {''domain'': ''windows'', ''frontend'': ''/local/domain/8/device/vbd/768'', ''uuid'': > ''5c474d98-2d59-91ff-7d0d-0d864ae161dc'', ''bootable'': ''1'', ''dev'': ''hda'', > ''state'': ''1'', ''params'': ''/windows/xenwin2008.img'', ''mode'': ''w'', ''online'': > ''1'', ''frontend-id'': ''8'', ''type'': ''file''} to > /local/domain/0/backend/vbd/8/768. > [2009-08-14 15:29:34 2776] INFO (XendDomainInfo:2160) createDevice: vbd : > {''uuid'': ''7dc5970c-8e68-3435-1b6d-176309c78acf'', ''bootable'': 0, ''driver'': > ''ioemu'', ''dev'': ''ioemu:hdc:cdrom'', ''uname'': ''file:/windows/winxpSP2.iso'', > ''mode'': ''r''} > [2009-08-14 15:29:34 2776] DEBUG (DevController:95) DevController: writing > {''backend-id'': ''0'', ''virtual-device'': ''5632'', ''device-type'': ''cdrom'', > ''state'': ''1'', ''backend'': ''/local/domain/0/backend/vbd/8/5632''} to > /local/domain/8/device/vbd/5632. > [2009-08-14 15:29:34 2776] DEBUG (DevController:97) DevController: writing > {''domain'': ''windows'', ''frontend'': ''/local/domain/8/device/vbd/5632'', ''uuid'': > ''7dc5970c-8e68-3435-1b6d-176309c78acf'', ''bootable'': ''0'', ''dev'': ''hdc'', > ''state'': ''1'', ''params'': ''/windows/winxpSP2.iso'', ''mode'': ''r'', ''online'': ''1'', > ''frontend-id'': ''8'', ''type'': ''file''} to /local/domain/0/backend/vbd/8/5632. > [2009-08-14 15:29:34 2776] INFO (XendDomainInfo:2160) createDevice: vif : > {''ip'': ''204.124.181.89'', ''mac'': ''00:16:3E:FE:C2:02'', ''vifname'': ''windows'', > ''uuid'': ''2103a4f8-dd0c-aecc-3510-c07bb51ff5dd''} > [2009-08-14 15:29:34 2776] DEBUG (DevController:95) DevController: writing > {''backend-id'': ''0'', ''mac'': ''00:16:3E:FE:C2:02'', ''handle'': ''0'', ''state'': ''1'', > ''backend'': ''/local/domain/0/backend/vif/8/0''} to > /local/domain/8/device/vif/0. > [2009-08-14 15:29:34 2776] DEBUG (DevController:97) DevController: writing > {''domain'': ''windows'', ''handle'': ''0'', ''uuid'': > ''2103a4f8-dd0c-aecc-3510-c07bb51ff5dd'', ''script'': > ''/etc/xen/scripts/vif-bridge'', ''ip'': ''204.124.181.89'', ''mac'': > ''00:16:3E:FE:C2:02'', ''frontend-id'': ''8'', ''state'': ''1'', ''vifname'': ''windows'', > ''online'': ''1'', ''frontend'': ''/local/domain/8/device/vif/0''} to > /local/domain/0/backend/vif/8/0. > [2009-08-14 15:29:34 2776] INFO (image:394) spawning device models: > /usr/lib64/xen/bin/qemu-dm [''/usr/lib64/xen/bin/qemu-dm'', ''-d'', ''8'', > ''-domain-name'', ''windows'', ''-videoram'', ''4'', ''-vnc'', ''127.0.0.1:0'', > ''-vncunused'', ''-vcpus'', ''1'', ''-boot'', ''dc'', ''-acpi'', ''-usb'', ''-usbdevice'', > ''tablet'', ''-net'', ''nic,vlan=1,macaddr=00:16:3E:FE:C2:02,model=rtl8139'', > ''-net'', ''tap,vlan=1,ifname=tap8.0,bridge=xenbr0'', ''-M'', ''xenfv''] > [2009-08-14 15:29:34 2776] INFO (image:443) device model pid: 7965 > [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:3052) Storing VM details: > {''on_xend_stop'': ''ignore'', ''shadow_memory'': ''9'', ''uuid'': > ''ed3bbbbc-1e34-27cd-c0eb-c3b203b5e6f8'', ''on_reboot'': ''restart'', > ''start_time'': ''1250278174.7'', ''on_poweroff'': ''destroy'', ''bootloader_args'': > '''', ''on_xend_start'': ''ignore'', ''on_crash'': ''restart'', ''xend/restart_count'': > ''0'', ''vcpus'': ''1'', ''vcpu_avail'': ''1'', ''bootloader'': '''', ''image'': ''(hvm > (kernel ) (videoram 4) (hpet 0) (stdvga 0) (loader > /usr/lib/xen/boot/hvmloader) (vncconsole 1) (vncunused 1) (xen_platform_pci > 1) (boot dc) (rtc_timeoffset 0) (pci ()) (pae 1) (vpt_align 1) (hap 1) > (viridian 0) (acpi 1) (localtime 0) (timer_mode 1) (vnc 1) (nographic 0) > (guest_os_type default) (pci_msitranslate 1) (apic 1) (sdl 0) (monitor 0) > (usbdevice tablet) (device_model /usr/lib64/xen/bin/qemu-dm) (pci_power_mgmt > 0) (usb 1) (xauthority /root/.Xauthority) (isa 0) (notes (SUSPEND_CANCEL > 1)))'', ''name'': ''windows''} > [2009-08-14 15:29:34 2776] INFO (image:531) waiting for sentinel_fifo > [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:1622) Storing domain > details: {''console/port'': ''3'', ''name'': ''windows'', ''console/limit'': > ''1048576'', ''store/port'': ''2'', ''vm'': > ''/vm/ed3bbbbc-1e34-27cd-c0eb-c3b203b5e6f8'', ''domid'': ''8'', > ''image/suspend-cancel'': ''1'', ''cpu/0/availability'': ''online'', > ''memory/target'': ''1048576'', > ''control/platform-feature-multiprocessor-suspend'': ''1'', ''store/ring-ref'': > ''1044476'', ''console/type'': ''ioemu''} > [2009-08-14 15:29:34 2776] DEBUG (DevController:95) DevController: writing > {''state'': ''1'', ''backend-id'': ''0'', ''backend'': > ''/local/domain/0/backend/console/8/0''} to /local/domain/8/device/console/0. > [2009-08-14 15:29:34 2776] DEBUG (DevController:97) DevController: writing > {''domain'': ''windows'', ''frontend'': ''/local/domain/8/device/console/0'', > ''uuid'': ''fee8beff-7fed-6e8c-caca-a03e0069774c'', ''frontend-id'': ''8'', ''state'': > ''1'', ''location'': ''3'', ''online'': ''1'', ''protocol'': ''vt100''} to > /local/domain/0/backend/console/8/0. > [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:1709) > XendDomainInfo.handleShutdownWatch > [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices > vif. > [2009-08-14 15:29:34 2776] DEBUG (DevController:144) Waiting for 0. > [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback > /local/domain/0/backend/vif/8/0/hotplug-status. > [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback > /local/domain/0/backend/vif/8/0/hotplug-status. > [2009-08-14 15:29:34 2776] DEBUG (DevController:643) hotplugStatusCallback > 1. > [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices > vscsi. > [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices > vbd. > [2009-08-14 15:29:34 2776] DEBUG (DevController:144) Waiting for 768. > [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback > /local/domain/0/backend/vbd/8/768/hotplug-status. > [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback > /local/domain/0/backend/vbd/8/768/hotplug-status. > [2009-08-14 15:29:34 2776] DEBUG (DevController:643) hotplugStatusCallback > 1. > [2009-08-14 15:29:34 2776] DEBUG (DevController:144) Waiting for 5632. > [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback > /local/domain/0/backend/vbd/8/5632/hotplug-status. > [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback > /local/domain/0/backend/vbd/8/5632/hotplug-status. > [2009-08-14 15:29:34 2776] DEBUG (DevController:643) hotplugStatusCallback > 1. > [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices > irq. > [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices > vkbd. > [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices > vfb. > [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices > console. > [2009-08-14 15:29:34 2776] DEBUG (DevController:144) Waiting for 0. > [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices > pci. > [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices > ioports. > [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices > tap. > [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices > vtpm. > [2009-08-14 15:29:35 2776] INFO (XendDomain:1180) Domain windows (8) > unpaused. > > -----Original Message----- > From: Tait Clarridge [mailto:Tait.Clarridge@lavalife.com] > Sent: Friday, August 14, 2009 3:14 PM > To: ''Robbie Garrett''; xen-users@lists.xensource.com > Subject: RE: [Xen-users] windows 2008 x64 no cdrom. > >> -----Original Message----- >> From: Robbie Garrett [mailto:rgarrett@hostourweb.com] >> Sent: Friday, August 14, 2009 3:07 PM >> To: Tait Clarridge; xen-users@lists.xensource.com >> Subject: RE: [Xen-users] windows 2008 x64 no cdrom. >> >> Hello, >> >> I have made the changed you requested and below is my config file. >> >> I''m using xen 3.4.1 with kernel of 2.6.18.8-xen. The problem is still > there >> for me. >> >> import os, re >> arch = os.uname()[4] >> if re.search(''64'', arch): >> arch_libdir = ''lib64'' >> else: >> arch_libdir = ''lib'' >> > > The above code has sometimes caused some problems for us... remove it and > change the device_model line to have lib64 instead of lib in the path. First > verify that /usr/lib64/xen/bin/qemu-dm exists... > >> >> kernel = "/usr/lib/xen/boot/hvmloader" >> builder=''hvm'' >> memory = ''1024'' >> device_model = ''/usr/lib/xen/bin/qemu-dm'' >> >> # Should be at least 2KB per MB of domain memory, plus a few MB per vcpu. >> name = "windows" >> vif = [ ''ip=204.124.181.89,mac=00:16:3E:FE:C2:02,vifname=windows'' > ] >> disk >> [''file:/windows/xenwin2008.img,ioemu:hda,w'',''file:/windows/winxpSP2.is >> o,ioem >> u:hdc:cdrom,r''] >> > #--------------------------------------------------------------------------- >> -- >> # boot on floppy (a), hard disk (c) or CD-ROM (d) >> # default: hard disk, cd-rom, floppy >> boot="dc" >> sdl=0 >> vnc=1 >> vncconsole=1 > > Try removing both the above and below lines as well... > >> vncpasswd='''' >> >> #serial=''pty'' >> usbdevice=''tablet'' >> >> acpi=1 >> apic=1 >> pae=1 >> usb=1 > > Try removing the viridian=1 line as well. > >> viridian=1 > > Are there any log entries from qemu-dm or xend that say anything about > missing files? > > > > > > _______________________________________________ > Xen-users mailing list > Xen-users@lists.xensource.com > http://lists.xensource.com/xen-users-- Adam Wilbraham - Senior Systems Administrator TechnoPhobia Limited The Workstation 15 Paternoster Row SHEFFIELD England S1 2BX t: +44 (0)114 2212123 f: +44 (0)114 2212124 e: adam.wilbraham@technophobia.com w: http://www.technophobia.com/ Registered in England and Wales Company No. 3063669 VAT registration No. 598 7858 42 ISO 9001:2000 Accredited Company No. 21227 ISO 14001:2004 Accredited Company No. E997 ISO 27001:2005 (BS7799) Accredited Company No. IS 508906 Investor in People Certified No. 101507 The contents of this email are confidential to the addressee and are intended solely for the recipients use. If you are not the addressee, you have received this email in error. Any disclosure, copying, distribution or action taken in reliance on it is prohibited and may be unlawful. Any opinions expressed in this email are those of the author personally and not TechnoPhobia Limited who do not accept responsibility for the contents of the message. All email communications, in and out of TechnoPhobia, are recorded for monitoring purposes. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
I have not tried it on xen 3.4.2 yet. I ended up going with widnows 2008 service pack two. ________________________________ From: xen-users-bounces@lists.xensource.com [xen-users-bounces@lists.xensource.com] On Behalf Of Adam Wilbraham [adam.wilbraham@technophobia.com] Sent: Wednesday, December 02, 2009 12:04 PM To: xen-users@lists.xensource.com Subject: Re: [Xen-users] windows 2008 x64 no cdrom. Did anyone ever solve the issue of installing Win 2008 R2 on Xen? On 24/08/09 18:25, Robbie Garrett wrote:> I am able to use windows 2003 x64 R2 edition with no problem at all. It > installs and runs with no issues what so ever. > > I am attempting to upgrade the kernel in hopes that it solves the issue with > windows 2008 x 64 R2. > > -----Original Message----- > From: Robbie Garrett [mailto:rgarrett@hostourweb.com] > Sent: Friday, August 14, 2009 3:33 PM > To: ''Tait Clarridge''; ''xen-users@lists.xensource.com'' > Subject: RE: [Xen-users] windows 2008 x64 no cdrom. > > Hello. > > Made your changes and the new file is below. Still the same issue. > > > import os, re > arch = os.uname()[4] > > kernel = "/usr/lib/xen/boot/hvmloader" > builder=''hvm'' > memory = ''1024'' > device_model = ''/usr/lib64/xen/bin/qemu-dm'' > > # Should be at least 2KB per MB of domain memory, plus a few MB per vcpu. > name = "windows" > vif = [ ''ip=204.124.181.89,mac=00:16:3E:FE:C2:02,vifname=windows'' ] > disk > [''file:/windows/xenwin2008.img,ioemu:hda,w'',''file:/windows/winxpSP2.iso,ioem > u:hdc:cdrom,r''] > #--------------------------------------------------------------------------- > -- > # boot on floppy (a), hard disk (c) or CD-ROM (d) > # default: hard disk, cd-rom, floppy > boot="dc" > sdl=0 > vnc=1 > vncconsole=1 > vncpasswd='''' > > #serial=''pty'' > usbdevice=''tablet'' > > acpi=1 > apic=1 > pae=1 > usb=1 > > > xend.log file output since command issued xm create windows.cfg > > [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:92) > XendDomainInfo.create([''vm'', [''name'', ''windows''], [''memory'', ''1024''], > [''vcpus'', 1], [''on_xend_start'', ''ignore''], [''on_xend_stop'', ''ignore''], > [''image'', [''hvm'', [''kernel'', ''/usr/lib/xen/boot/hvmloader''], [''videoram'', > 4], [''device_model'', ''/usr/lib64/xen/bin/qemu-dm''], [''pae'', 1], [''vcpus'', > 1], [''boot'', ''dc''], [''fda'', ''''], [''fdb'', ''''], [''timer_mode'', 1], > [''localtime'', 0], [''serial'', ''''], [''stdvga'', 0], [''isa'', 0], [''nographic'', > 0], [''soundhw'', ''''], [''vnc'', 1], [''vncunused'', 1], [''vncconsole'', 1], > [''sdl'', 0], [''xauthority'', ''/root/.Xauthority''], [''rtc_timeoffset'', 0], > [''monitor'', 0], [''acpi'', 1], [''apic'', 1], [''usb'', 1], [''usbdevice'', > ''tablet''], [''keymap'', ''''], [''pci'', []], [''hpet'', 0], [''guest_os_type'', > ''default''], [''hap'', 1], [''cpuid'', []], [''cpuid_check'', []], [''viridian'', 0], > [''pci_msitranslate'', 1], [''vpt_align'', 1], [''pci_power_mgmt'', 0], > [''xen_platform_pci'', 1], [''vncpasswd'', ''XXXXXXXX'']]], [''s3_integrity'', 1], > [''device'', [''vbd'', [''uname'', ''file:/windows/xenwin2008.img''], [''dev'', > ''ioemu:hda''], [''mode'', ''w'']]], [''device'', [''vbd'', [''uname'', > ''file:/windows/winxpSP2.iso''], [''dev'', ''ioemu:hdc:cdrom''], [''mode'', ''r'']]], > [''device'', [''vif'', [''ip'', ''204.124.181.89''], [''mac'', ''00:16:3E:FE:C2:02''], > [''vifname'', ''windows'']]]]) > [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:2296) > XendDomainInfo.constructDomain > [2009-08-14 15:29:34 2776] DEBUG (balloon:166) Balloon: 1071836 KiB free; > need 4096; done. > [2009-08-14 15:29:34 2776] DEBUG (XendDomain:452) Adding Domain: 8 > [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:2497) > XendDomainInfo.initDomain: 8 256 > [2009-08-14 15:29:34 2776] DEBUG (image:322) No VNC passwd configured for > vfb access > [2009-08-14 15:29:34 2776] DEBUG (image:809) args: boot, val: dc > [2009-08-14 15:29:34 2776] DEBUG (image:809) args: fda, val: None > [2009-08-14 15:29:34 2776] DEBUG (image:809) args: fdb, val: None > [2009-08-14 15:29:34 2776] DEBUG (image:809) args: soundhw, val: None > [2009-08-14 15:29:34 2776] DEBUG (image:809) args: localtime, val: 0 > [2009-08-14 15:29:34 2776] DEBUG (image:809) args: serial, val: None > [2009-08-14 15:29:34 2776] DEBUG (image:809) args: std-vga, val: 0 > [2009-08-14 15:29:34 2776] DEBUG (image:809) args: isa, val: 0 > [2009-08-14 15:29:34 2776] DEBUG (image:809) args: acpi, val: 1 > [2009-08-14 15:29:34 2776] DEBUG (image:809) args: usb, val: 1 > [2009-08-14 15:29:34 2776] DEBUG (image:809) args: usbdevice, val: tablet > [2009-08-14 15:29:34 2776] INFO (image:745) Need to create platform > device.[domid:8] > [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:2521) > _initDomain:shadow_memory=0x0, memory_static_max=0x40000000, > memory_static_min=0x0. > [2009-08-14 15:29:34 2776] DEBUG (balloon:166) Balloon: 1070424 KiB free; > need 1065984; done. > [2009-08-14 15:29:34 2776] INFO (image:173) buildDomain os=hvm dom=8 vcpus=1 > [2009-08-14 15:29:34 2776] DEBUG (image:862) domid = 8 > [2009-08-14 15:29:34 2776] DEBUG (image:863) image > /usr/lib/xen/boot/hvmloader > [2009-08-14 15:29:34 2776] DEBUG (image:864) store_evtchn = 2 > [2009-08-14 15:29:34 2776] DEBUG (image:865) memsize = 1024 > [2009-08-14 15:29:34 2776] DEBUG (image:866) target = 1024 > [2009-08-14 15:29:34 2776] DEBUG (image:867) vcpus = 1 > [2009-08-14 15:29:34 2776] DEBUG (image:868) acpi = 1 > [2009-08-14 15:29:34 2776] DEBUG (image:869) apic = 1 > [2009-08-14 15:29:34 2776] INFO (XendDomainInfo:2160) createDevice: vfb : > {''vncunused'': 1, ''other_config'': {''vncunused'': 1, ''vnc'': ''1''}, ''vnc'': ''1'', > ''uuid'': ''d5521524-f898-0ece-fea0-34f87eb278eb''} > [2009-08-14 15:29:34 2776] DEBUG (DevController:95) DevController: writing > {''state'': ''1'', ''backend-id'': ''0'', ''backend'': > ''/local/domain/0/backend/vfb/8/0''} to /local/domain/8/device/vfb/0. > [2009-08-14 15:29:34 2776] DEBUG (DevController:97) DevController: writing > {''vncunused'': ''1'', ''domain'': ''windows'', ''frontend'': > ''/local/domain/8/device/vfb/0'', ''uuid'': > ''d5521524-f898-0ece-fea0-34f87eb278eb'', ''frontend-id'': ''8'', ''state'': ''1'', > ''online'': ''1'', ''vnc'': ''1''} to /local/domain/0/backend/vfb/8/0. > [2009-08-14 15:29:34 2776] INFO (XendDomainInfo:2160) createDevice: vbd : > {''uuid'': ''5c474d98-2d59-91ff-7d0d-0d864ae161dc'', ''bootable'': 1, ''driver'': > ''ioemu'', ''dev'': ''ioemu:hda'', ''uname'': ''file:/windows/xenwin2008.img'', > ''mode'': ''w''} > [2009-08-14 15:29:34 2776] DEBUG (DevController:95) DevController: writing > {''backend-id'': ''0'', ''virtual-device'': ''768'', ''device-type'': ''disk'', ''state'': > ''1'', ''backend'': ''/local/domain/0/backend/vbd/8/768''} to > /local/domain/8/device/vbd/768. > [2009-08-14 15:29:34 2776] DEBUG (DevController:97) DevController: writing > {''domain'': ''windows'', ''frontend'': ''/local/domain/8/device/vbd/768'', ''uuid'': > ''5c474d98-2d59-91ff-7d0d-0d864ae161dc'', ''bootable'': ''1'', ''dev'': ''hda'', > ''state'': ''1'', ''params'': ''/windows/xenwin2008.img'', ''mode'': ''w'', ''online'': > ''1'', ''frontend-id'': ''8'', ''type'': ''file''} to > /local/domain/0/backend/vbd/8/768. > [2009-08-14 15:29:34 2776] INFO (XendDomainInfo:2160) createDevice: vbd : > {''uuid'': ''7dc5970c-8e68-3435-1b6d-176309c78acf'', ''bootable'': 0, ''driver'': > ''ioemu'', ''dev'': ''ioemu:hdc:cdrom'', ''uname'': ''file:/windows/winxpSP2.iso'', > ''mode'': ''r''} > [2009-08-14 15:29:34 2776] DEBUG (DevController:95) DevController: writing > {''backend-id'': ''0'', ''virtual-device'': ''5632'', ''device-type'': ''cdrom'', > ''state'': ''1'', ''backend'': ''/local/domain/0/backend/vbd/8/5632''} to > /local/domain/8/device/vbd/5632. > [2009-08-14 15:29:34 2776] DEBUG (DevController:97) DevController: writing > {''domain'': ''windows'', ''frontend'': ''/local/domain/8/device/vbd/5632'', ''uuid'': > ''7dc5970c-8e68-3435-1b6d-176309c78acf'', ''bootable'': ''0'', ''dev'': ''hdc'', > ''state'': ''1'', ''params'': ''/windows/winxpSP2.iso'', ''mode'': ''r'', ''online'': ''1'', > ''frontend-id'': ''8'', ''type'': ''file''} to /local/domain/0/backend/vbd/8/5632. > [2009-08-14 15:29:34 2776] INFO (XendDomainInfo:2160) createDevice: vif : > {''ip'': ''204.124.181.89'', ''mac'': ''00:16:3E:FE:C2:02'', ''vifname'': ''windows'', > ''uuid'': ''2103a4f8-dd0c-aecc-3510-c07bb51ff5dd''} > [2009-08-14 15:29:34 2776] DEBUG (DevController:95) DevController: writing > {''backend-id'': ''0'', ''mac'': ''00:16:3E:FE:C2:02'', ''handle'': ''0'', ''state'': ''1'', > ''backend'': ''/local/domain/0/backend/vif/8/0''} to > /local/domain/8/device/vif/0. > [2009-08-14 15:29:34 2776] DEBUG (DevController:97) DevController: writing > {''domain'': ''windows'', ''handle'': ''0'', ''uuid'': > ''2103a4f8-dd0c-aecc-3510-c07bb51ff5dd'', ''script'': > ''/etc/xen/scripts/vif-bridge'', ''ip'': ''204.124.181.89'', ''mac'': > ''00:16:3E:FE:C2:02'', ''frontend-id'': ''8'', ''state'': ''1'', ''vifname'': ''windows'', > ''online'': ''1'', ''frontend'': ''/local/domain/8/device/vif/0''} to > /local/domain/0/backend/vif/8/0. > [2009-08-14 15:29:34 2776] INFO (image:394) spawning device models: > /usr/lib64/xen/bin/qemu-dm [''/usr/lib64/xen/bin/qemu-dm'', ''-d'', ''8'', > ''-domain-name'', ''windows'', ''-videoram'', ''4'', ''-vnc'', ''127.0.0.1:0'', > ''-vncunused'', ''-vcpus'', ''1'', ''-boot'', ''dc'', ''-acpi'', ''-usb'', ''-usbdevice'', > ''tablet'', ''-net'', ''nic,vlan=1,macaddr=00:16:3E:FE:C2:02,model=rtl8139'', > ''-net'', ''tap,vlan=1,ifname=tap8.0,bridge=xenbr0'', ''-M'', ''xenfv''] > [2009-08-14 15:29:34 2776] INFO (image:443) device model pid: 7965 > [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:3052) Storing VM details: > {''on_xend_stop'': ''ignore'', ''shadow_memory'': ''9'', ''uuid'': > ''ed3bbbbc-1e34-27cd-c0eb-c3b203b5e6f8'', ''on_reboot'': ''restart'', > ''start_time'': ''1250278174.7'', ''on_poweroff'': ''destroy'', ''bootloader_args'': > '''', ''on_xend_start'': ''ignore'', ''on_crash'': ''restart'', ''xend/restart_count'': > ''0'', ''vcpus'': ''1'', ''vcpu_avail'': ''1'', ''bootloader'': '''', ''image'': ''(hvm > (kernel ) (videoram 4) (hpet 0) (stdvga 0) (loader > /usr/lib/xen/boot/hvmloader) (vncconsole 1) (vncunused 1) (xen_platform_pci > 1) (boot dc) (rtc_timeoffset 0) (pci ()) (pae 1) (vpt_align 1) (hap 1) > (viridian 0) (acpi 1) (localtime 0) (timer_mode 1) (vnc 1) (nographic 0) > (guest_os_type default) (pci_msitranslate 1) (apic 1) (sdl 0) (monitor 0) > (usbdevice tablet) (device_model /usr/lib64/xen/bin/qemu-dm) (pci_power_mgmt > 0) (usb 1) (xauthority /root/.Xauthority) (isa 0) (notes (SUSPEND_CANCEL > 1)))'', ''name'': ''windows''} > [2009-08-14 15:29:34 2776] INFO (image:531) waiting for sentinel_fifo > [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:1622) Storing domain > details: {''console/port'': ''3'', ''name'': ''windows'', ''console/limit'': > ''1048576'', ''store/port'': ''2'', ''vm'': > ''/vm/ed3bbbbc-1e34-27cd-c0eb-c3b203b5e6f8'', ''domid'': ''8'', > ''image/suspend-cancel'': ''1'', ''cpu/0/availability'': ''online'', > ''memory/target'': ''1048576'', > ''control/platform-feature-multiprocessor-suspend'': ''1'', ''store/ring-ref'': > ''1044476'', ''console/type'': ''ioemu''} > [2009-08-14 15:29:34 2776] DEBUG (DevController:95) DevController: writing > {''state'': ''1'', ''backend-id'': ''0'', ''backend'': > ''/local/domain/0/backend/console/8/0''} to /local/domain/8/device/console/0. > [2009-08-14 15:29:34 2776] DEBUG (DevController:97) DevController: writing > {''domain'': ''windows'', ''frontend'': ''/local/domain/8/device/console/0'', > ''uuid'': ''fee8beff-7fed-6e8c-caca-a03e0069774c'', ''frontend-id'': ''8'', ''state'': > ''1'', ''location'': ''3'', ''online'': ''1'', ''protocol'': ''vt100''} to > /local/domain/0/backend/console/8/0. > [2009-08-14 15:29:34 2776] DEBUG (XendDomainInfo:1709) > XendDomainInfo.handleShutdownWatch > [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices > vif. > [2009-08-14 15:29:34 2776] DEBUG (DevController:144) Waiting for 0. > [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback > /local/domain/0/backend/vif/8/0/hotplug-status. > [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback > /local/domain/0/backend/vif/8/0/hotplug-status. > [2009-08-14 15:29:34 2776] DEBUG (DevController:643) hotplugStatusCallback > 1. > [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices > vscsi. > [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices > vbd. > [2009-08-14 15:29:34 2776] DEBUG (DevController:144) Waiting for 768. > [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback > /local/domain/0/backend/vbd/8/768/hotplug-status. > [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback > /local/domain/0/backend/vbd/8/768/hotplug-status. > [2009-08-14 15:29:34 2776] DEBUG (DevController:643) hotplugStatusCallback > 1. > [2009-08-14 15:29:34 2776] DEBUG (DevController:144) Waiting for 5632. > [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback > /local/domain/0/backend/vbd/8/5632/hotplug-status. > [2009-08-14 15:29:34 2776] DEBUG (DevController:629) hotplugStatusCallback > /local/domain/0/backend/vbd/8/5632/hotplug-status. > [2009-08-14 15:29:34 2776] DEBUG (DevController:643) hotplugStatusCallback > 1. > [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices > irq. > [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices > vkbd. > [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices > vfb. > [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices > console. > [2009-08-14 15:29:34 2776] DEBUG (DevController:144) Waiting for 0. > [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices > pci. > [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices > ioports. > [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices > tap. > [2009-08-14 15:29:34 2776] DEBUG (DevController:139) Waiting for devices > vtpm. > [2009-08-14 15:29:35 2776] INFO (XendDomain:1180) Domain windows (8) > unpaused. > > -----Original Message----- > From: Tait Clarridge [mailto:Tait.Clarridge@lavalife.com] > Sent: Friday, August 14, 2009 3:14 PM > To: ''Robbie Garrett''; xen-users@lists.xensource.com > Subject: RE: [Xen-users] windows 2008 x64 no cdrom. > >> -----Original Message----- >> From: Robbie Garrett [mailto:rgarrett@hostourweb.com] >> Sent: Friday, August 14, 2009 3:07 PM >> To: Tait Clarridge; xen-users@lists.xensource.com >> Subject: RE: [Xen-users] windows 2008 x64 no cdrom. >> >> Hello, >> >> I have made the changed you requested and below is my config file. >> >> I''m using xen 3.4.1 with kernel of 2.6.18.8-xen. The problem is still > there >> for me. >> >> import os, re >> arch = os.uname()[4] >> if re.search(''64'', arch): >> arch_libdir = ''lib64'' >> else: >> arch_libdir = ''lib'' >> > > The above code has sometimes caused some problems for us... remove it and > change the device_model line to have lib64 instead of lib in the path. First > verify that /usr/lib64/xen/bin/qemu-dm exists... > >> >> kernel = "/usr/lib/xen/boot/hvmloader" >> builder=''hvm'' >> memory = ''1024'' >> device_model = ''/usr/lib/xen/bin/qemu-dm'' >> >> # Should be at least 2KB per MB of domain memory, plus a few MB per vcpu. >> name = "windows" >> vif = [ ''ip=204.124.181.89,mac=00:16:3E:FE:C2:02,vifname=windows'' > ] >> disk >> [''file:/windows/xenwin2008.img,ioemu:hda,w'',''file:/windows/winxpSP2.is >> o,ioem >> u:hdc:cdrom,r''] >> > #--------------------------------------------------------------------------- >> -- >> # boot on floppy (a), hard disk (c) or CD-ROM (d) >> # default: hard disk, cd-rom, floppy >> boot="dc" >> sdl=0 >> vnc=1 >> vncconsole=1 > > Try removing both the above and below lines as well... > >> vncpasswd='''' >> >> #serial=''pty'' >> usbdevice=''tablet'' >> >> acpi=1 >> apic=1 >> pae=1 >> usb=1 > > Try removing the viridian=1 line as well. > >> viridian=1 > > Are there any log entries from qemu-dm or xend that say anything about > missing files? > > > > > > _______________________________________________ > Xen-users mailing list > Xen-users@lists.xensource.com > http://lists.xensource.com/xen-users-- Adam Wilbraham - Senior Systems Administrator TechnoPhobia Limited The Workstation 15 Paternoster Row SHEFFIELD England S1 2BX t: +44 (0)114 2212123 f: +44 (0)114 2212124 e: adam.wilbraham@technophobia.com w: http://www.technophobia.com/ Registered in England and Wales Company No. 3063669 VAT registration No. 598 7858 42 ISO 9001:2000 Accredited Company No. 21227 ISO 14001:2004 Accredited Company No. E997 ISO 27001:2005 (BS7799) Accredited Company No. IS 508906 Investor in People Certified No. 101507 The contents of this email are confidential to the addressee and are intended solely for the recipients use. If you are not the addressee, you have received this email in error. Any disclosure, copying, distribution or action taken in reliance on it is prohibited and may be unlawful. Any opinions expressed in this email are those of the author personally and not TechnoPhobia Limited who do not accept responsibility for the contents of the message. All email communications, in and out of TechnoPhobia, are recorded for monitoring purposes. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users