Hi Jiajun,
Xu, Jiajun wrote: > On [EMAIL PROTECTED] wrote: > >> On Mon, Jan 07, 2008 at 06:15:47PM +0800, Zhang, Frank F wrote: >>> Anyone know how to run PV Guest on solaris dom0? Using >>> "virt_install" or using "xm create xxxx.py"? or both method are OK? >> Both will work. virt-install is generally recommended. > > Where can I find the kernel for PV Guest? I want to boot PV with a > python file but there is no suitable kernel for PV Guest. What dom0 are you using? Depending on what dom0 and version of Xen, the answer is different for the py format. In general, the Xen aware "unix" lives at /platform/i86xpv/kernel/[amd64]/unix For a solaris dom0, and for modern Linuxes, e.g. FC8, the following should be sufficient for a py file since we added support for auto-detecting the solaris kernel. name = "solaris" vcpus = 1 memory = "512" root = "/dev/dsk/c0d0s0" disk = ['file:/tank/guests/solaris/disk.img,0,w'] vif = [''] If you have an older linux dom0, or want to boot a cap-eye install kernel, you can use the following. # pygrub path different between linux and Solaris dom0s name = "solaris" vcpus = 1 memory = "512" bootloader = "/usr/lib/xen/bin/pygrub" kernel = "/platform/i86xpv/kernel/amd64/unix" ramdisk = "/platform/i86pc/amd64/boot_archive" extra = "/platform/i86xpv/kernel/amd64/unix -k" root = "/dev/dsk/c0d0s0" disk = ['file:/tank/guests/solaris/disk.img,0,w'] vif = [''] Thanks, MRJ _______________________________________________ xen-discuss mailing list [email protected]
