similar to: Guest OS woun''t boot

Displaying 20 results from an estimated 900 matches similar to: "Guest OS woun''t boot"

2006 Nov 18
1
Xen 3.0.3 with CentOS 4.4
I''ve installed Xen kernel for dom0 on a CentOS 4.4 but when i reboot the kernel says: _/\_\___|_| |_| |____(_)___(_)____(_)___/ http://www.cl.cam.ac.uk/netos/xenmdev = 59.12 University of Cambridge Computer Laboratory6 Sep 26 01:52 qemu-dm.6463.log Xen version 3.0.3.0 (root@uk.xensource.com) (gcc version 3.4.6 20060404 (Red Hastart qemu- -rw-r--r-- 1 root root t 3.4.6-3)) Mon Oct
2014 Jul 15
1
Re: LVM Volume Creation
Hi All, I'm having issue with creating LVM Volume via libvirt. We are running libvirtd 1.2 with KVM. We are creating Volume Group (VG01) outside of libvirt and defining a storage pool for it. Here is the StoragePool XML for the Volume Group created outside libvirt. <pool type="logical"> <name>VG01</name> <target>
2008 Nov 03
3
[rsync -avz] total size/disk usage difference between source and destination
Hi folks We migrated storage from local disk to SAN with: # rsync -avz /mnt/lvol00045/* /lvol00045 Why there is a difference in size? How to explain this? Do we have inconsistency? What we did wrong? [...] /dev/mapper/vg01-lvol00045_old 10321208 3930336 6286016 39% /mnt/lvol00045 [...] /dev/mapper/vg01-lvol00045 10321208 3163852 6633068 33%
2014 Jul 14
1
LVM Volume Creation
Hi All, I'm having issue with creating LVM volume via libvirt. XML of LVM StoragePool is:     VG01             /dev/VG01       (existing vg) XML of create volume in lvm pool is:     ub_test01.img     0     1                 When I create the volume with above XML defn, lvs command to list logical volume shows a value in the origin column indicating it was created as snapshot.. the
2006 Nov 19
1
debian etch problems with networking and pciback.hide
Hi List, please excuse that this post is again about networking with XEN. Even though I googled and checked other posts for some days now I did not manage to get my installation working. Following some advises I used the late binding of pci. So I created a /etc/modprobe.de/local and added: options pciback hide=(03:00.0)(04:00.0) install e1000 /sbin/modprobe pciback ; /sbin/modprobe
2009 Mar 03
1
profiler and loops
Hello, (This is follow up from this thread: http://www.nabble.com/execution-time-of-.packages-td22304833.html but with a different focus) I am often confused by the result of the profiler, when a loop is involved. Consider these two scripts: script1: Rprof( ) x <- numeric( ) for( i in 1:10000){ x <- c( x, rnorm(10) ) } Rprof( NULL ) print( summaryRprof( ) ) script2:
2009 May 01
4
How do I resize a Physical Partition in a Dom U that''s "on" a Logical Volume in the Dom 0?
Hey all, I''m trying to figure out how to re-size physical partitions in the Dom U. I''ve read up what I can find on line and finally decided to have Logical Volumes in the Dom 0 and pass them as physical volumes for use in the Dom U. Here''s an example of what I''m doing. To start in the Dom 0 I created the LV''s with lvcreate -n guest_boot -L 100M
2011 Oct 26
1
Re: ceph on btrfs [was Re: ceph on non-btrfs file systems]
2011/10/26 Sage Weil <sage@newdream.net>: > On Wed, 26 Oct 2011, Christian Brunner wrote: >> >> > Christian, have you tweaked those settings in your ceph.conf?  It would be >> >> > something like ''journal dio = false''.  If not, can you verify that >> >> > directio shows true when the journal is initialized from your osd log?
2006 Mar 30
2
Problem with reboot of domU''s
I have been playing with Xen 3.0.1 for some days now, using debian sarge for dom0 and domU''s, and it works like a charm. But, I have a problem with rebooting domU''s. Here is the output from /var/log/xend.log [2006-03-30 13:44:58 xend.XendDomainInfo] INFO (XendDomainInfo:823) Domain has shutdown: name=vmintraweb1 id=5 reason=reboot . [2006-03-30 13:44:58 xend.XendDomainInfo]
2015 Mar 16
2
CentOS 6 VM image for paravirtualizaton on CentOS Xen server
On Sun, Mar 15, 2015 at 07:52:42PM -0700, Sarah Newman wrote: > > > > I'd really prefer to work from 'virsh' than from hand-writing xl > > configuration files.When I last did this sort of thing, I worked from > > a PXE environment that I controlled and could reserve DHCP settings > > based on MAC addresses, and tune PXE to boot from disk by default but
2007 Nov 18
1
Installing openSuSE 10.3 as PV-guest on a LVM-drive of a openSuSE 10.3 host
Hi, how can I install a openSuSE 10.3 PV-guest on a LVM-drive of a openSuSE 10.3 host with Xen 3.10? On 10.2 with Xen 3.0.3 the openSuSE-YaST-module for managing VMs could install the system also on block-devices, unfortunately this is not possible anymore with OSS 10.3 :-( What I have tried: - I created two LVM-partitions, one for "/" one for swap. - Installing an OSS 10.2 PV-guest
2008 Mar 28
3
Mounting devfs over to ZFS from fstab fails
Hello, I have some jails running on ZFS, so I have to mount devfs's into them. For this purpose, I have some similar lines in /etc/fstab: devfs /pool/jail/ldap/dev devfs rw 0 0 Where /pool is a ZFS filesystem. This has worked until today -when I upgraded from a previous 7-STABLE (FreeBSD 7.0-STABLE #16: Fri Mar 7 14:30:08 CET 2008) to today's STABLE- but not
2006 Jul 27
6
Getting stucked with Debian
Hello all, I''m getting stucked with debian and Xen 3.0.2 Problem is that during boot with xen kernel system said: mount: unknown filesystem ''devfs'' and then Unable to open initial console /dev/console And reboot... How can I solve? googled for some information but nothing usefull.. Thanks Stefano -- Ste Visit: http://www.stefanocislaghi.it/
1998 Jan 03
1
R-beta: NextMethod(.Generic) bug
I'm a day-old R newbie (but a war-weary S veteran), with couple of first-day questions: In R 0.61, this code fails. Ops.test <- function(e1,e2) { e1 <- NextMethod(.Generic) e1 } x <- 4 class(x) <- "test" y <- x < 3 The error message is "Error in NextMethod(.Generic) : negative length vectors are not allowed.". I assume it is a bug.
2003 Oct 19
1
jail + devfs + snp problem (FreeBSD 5.1-RELEASE-p10)
shell# /sbin/devfs rule -s 2 delset shell# /sbin/devfs rule -s 2 add hide shell# /sbin/devfs rule -s 2 add path random unhide shell# /sbin/devfs rule -s 2 add path urandom unhide shell# /sbin/devfs rule -s 2 add path zero unhide shell# /sbin/devfs rule -s 2 add path pty\* unhide shell# /sbin/devfs rule -s 2 add path pty\* unhide shell# /sbin/devfs rule -s 2 add path tty\* unhide shell#
2001 Oct 23
2
nice mini-howto
hello, i am a newbie to this list and i don't know if this has been posted before (if so, plzz accept my apologies) i just noticed a nice mini-howto on ext2-ext3 conversion at http://www.symonds.net/~rajesh/howto/ext3/index.html i think that maybe a link can be added to this after the download section... cheers Sayamindu *********************************************************************
2003 Jun 15
3
devfs and ext3?
Hi! Today I switched over to devfs. I'm on Debian unstable, installed devfsd, installed a kernel with devfs support and "devfs mount on boot". Reboot, devfs is being used. All over a sudden, dmesg reports: Linux version 2.4.21-ac1 (root@hummus) (gcc version 3.3 (Debian)) #1 Sun Jun 15 19:06:13 CEST 2003 ... kjournald starting. Commit interval 5 seconds EXT3-fs: mounted
2003 Aug 08
3
isolinux.cfg/syslinux.cfg
Hi: I am having problems with isolinux.cfg I am receiving several error messages. 'Missing parameter in config file' and 'Unknown keyword in config file'. Here is a copy of my Isolinux.cfg maybe sombody can help me figure it out: default ks prompt 1 timeout 60 display custom.msg F1 boot.msg F2 options.msg F3 general.msg F4 param.msg F5 rescue.msg F7 custom.msg
2009 Feb 28
2
devd question
I'm trying to make devd run an stty command whenever a USB serial device is attached. Unfortunately, $device-name is ucom[0-9] and the device names are /dev/cuaU[0-9] - how do I get the correct name in the device action? I haven't found a way to extract the number by itself, so I'm stuck with specifying a separate rule for each number, like so: attach 100 { device-name
2012 Jul 19
1
save / restore RAM state - Problem
Hi all, i am trying (test) to save / restore a state of a winxp virtual machine. Perhaps i am missing that i can not restore save image to LVM partition. "error: Failed to read file '/root/winxp.save': Value too large for defined data type" Below are my settings libvirt 0.9.13 qemu-kvm 1.1.1 # virsh Welcome to virsh, the virtualization interactive terminal. Type: