search for: i86xen

Displaying 6 results from an estimated 6 matches for "i86xen".

2006 Sep 08
4
Failed to create a solaris DOMU using NFS root
...nt by using SUNWCXall. I''ve created SUNWCreq instead and add the two additional packages SUNWbind and SUNWbindr. I upgraded the diskless environment using BFU osox-bfu-2006-08-16. Note here that the howto is wrong, the dlserver# mkdir /export/root/<domU-hostname>/platform/kernel/i86xen show be replaced by: dlserver# mkdir -p /export/root/<domU-hostname>/platform/i86xen/kernel/ And finally, I''ve tried to create the xem domain using the following configuration file: memory = 256 name = "t1-30-zone1" kernel = "/export/root/t1-30-zone1/platform/i86x...
2006 Nov 07
2
xenU crashes on linux
...for this error is? [2006-11-07 13:59:31 xend 3167] DEBUG (__init__:1072) exception looking up device number for 0: [Errno 2] No such file or directory: ''/dev/0'' my config file looks like this: name = "solaris" memory = "400" kernel = "/solaris/platform/i86xen/kernel/amd64/unix" extra = "/platform/i86xen/kernel/amd64/unix" ramdisk = "/solaris/platform/i86pc/boot_archive" on_shutdown = "destroy" on_reboot = "restart" on_crash = "destroy" root = "/dev/dsk/c0d0s0" disk = [''file:/solar...
2007 Jan 19
0
[PATCH] Update pygrub for new Solaris directory names
...rub/src/pygrub --- a/tools/pygrub/src/pygrub +++ b/tools/pygrub/src/pygrub @@ -503,7 +503,7 @@ def run_grub(file, entry, fs): # If nothing has been specified, look for a Solaris domU. If found, perform the # necessary tweaks. def sniff_solaris(fs, cfg): - if not fs.file_exists("/platform/i86xen/kernel/unix"): + if not fs.file_exists("/platform/i86xpv/kernel/unix"): return cfg # darned python @@ -516,10 +516,10 @@ def sniff_solaris(fs, cfg): longmode = True if not cfg["kernel"]: - cfg["kernel"] = "/pl...
2006 Sep 22
1
Linux Dom0 <-> Solaris prepared Volume
...But it never boots . adapted the configfile to boot with -v (that I can see at least something) and this is what I get ===SNIP=== root@Xen-VT02:/export/xc/xvm/solaris-b44# xm create solaris-b44-64.py -c Using config file "solaris-b44-64.py". Started domain solaris-b44 module /platform/i86xen/kernel/amd64/unix: text at [0xfffffffffb800000, 0xfffffffffb93984b] data at 0xfffffffffbc00000 module /kernel/amd64/genunix: text at [0xfffffffffb939850, 0xfffffffffbbc1b37] data at 0xfffffffffbc80ca0 SunOS Release 5.11 Version matrix-build-2006-08-16 64-bit Copyright 1983-2006 Sun Microsystems, In...
2006 Sep 11
7
installing a pseudo driver in a Solaris DOM U and DOM U reboot
...1:22:45 l6-z-2-z1 genunix: lofi0 is /pseudo/lofi@0 mount: No such file or directory bootadm: mount of /dev/dsk/c1d0p0:boot (fstype pcfs) failed bootadm: cannot restore GRUB slice The .py file is: name = "l6-z-2-z1" memory = "728" kernel = "/export/xc/xvm/l6-z-2-z1/platform/i86xen/kernel/amd64/unix" extra = "/platform/i86xen/kernel/amd64/unix -v -r" ramdisk = "/export/xc/xvm/l6-z-2-z1/platform/i86pc/boot_archive" on_shutdown = "destroy" on_reboot = "restart" on_crash = "destroy" root = "/dev/dsk/c0d0s0" disk =...
2007 Jan 05
10
[PATCH 1/7] Fix pygrub path on Solaris
Fix for pygrub path on Solaris. Signed-off-by: John Levon <john.levon@sun.com> diff --git a/tools/python/xen/xend/XendDomainInfo.py b/tools/python/xen/xend/XendDomainInfo.py --- a/tools/python/xen/xend/XendDomainInfo.py +++ b/tools/python/xen/xend/XendDomainInfo.py @@ -37,7 +37,7 @@ from xen.util.blkif import blkdev_uname_ from xen.util.blkif import blkdev_uname_to_file from xen.util