
Originally Posted by
ab@novell.com
In order to use Xen you must be booted to the Xen kernel. Start there and
try posting the command you are using to create the VM (unless you are
using the GUI, and then describe your exact steps) as well as the veratim
output (English, or a rough translation, would be nice). Also if you are
running this box in a VM you will not be able to create more VMs within it
very easily (if at all). Having your 'uname -a' output would be nice to
confirm what you are doing as well.
The command-line way to manipulate VMs is using /usr/sbin/xm and there are
other commands for creating the VM though I do not remember that one offhand.
Good luck.
THX for your information.
Now at first lets print the kernel information:
Code:
Linux linux-kcr1 2.6.27.29-0.1-xen #1 SMP 2009-08-15 17:53:59 +0200 i686 athlon i386 GNU/Linux
Like you can see i started the XEN kernel. The first times i used the YAST to create a machine. But i think it is better to discuss here when i use the command line.
So I used following configuration:
Code:
# Windows7 XEN config file
# win7.conf
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
# Should be at least 2KB per MB of domain memory, plus a few MB per vcpu.
shadow_memory = 8
name = "xenwin7"
vif = [ 'type=ioemu, bridge=xenbr0' ]
acpi = 1
apic = 1
disk = [ 'file:/home/andreas/xen/xenwin7.img,hda,w', 'file:/home/andreas/xen/win7dvd.iso,hdc:cdrom,r' ]
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="dc"
sdl=0
vnc=1
vncconsole=1
vncpasswd=''
serial='pty'
usbdevice='tablet'
I created a 10GB file due dd from /dev/zero/.
Code:
linux-kcr1:/home/andreas/xen # xm create win7.conf
Using config file "./win7.conf".
Error: HVM guest support is unavailable: is VT/AMD-V supported by your CPU and enabled in your BIOS?
So I am back to my old problem. Under the virtualized XEN Kernel i get the error message that my CPU doesn't support SVM and if i look to the CPU flags running my XEN Kernel that is true.
If i try to create the machine with the PAE Kernel i get the error message that i should use a XEN Kernel.
How can i rund the XEN Kernel without using virtualisation?
THX a lot
Andreas
Bookmarks