search for: liveimg

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

Did you mean: liveice
2010 May 04
2
[PATCH node] save all not-parsed boot parameters
not just console= This is to allow vendor-specific boot parameters to survive when the image is installed to disk. Signed-off-by: Alan Pevec <apevec at redhat.com> --- scripts/ovirt-early | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/ovirt-early b/scripts/ovirt-early index 4b85102..c17ea74 100755 --- a/scripts/ovirt-early +++ b/scripts/ovirt-early @@
2010 Dec 01
4
problem booting (Fedora) LiveCD ISO over PXELINUX
...the network. I made sure to extract the proper vmlinuz and initrd from the LiveCD and make it available to my PXELINUX Config: label LiveCD MENU LABEL LiveCD kernel livecd/vmlinuz0 append initrd=livecd/initrd0.img media=network root=live:CDLABEL=F13-LiveCD-POC-20101201-122711 rootfstype=auto ro liveimg rhgb rd_NO_LUKS rd_NO_MD rd_NO_DM ramdisk_size=164212 init=/bin/init iso1=nfs://imagesrv/fedora-livecd.iso iso1mnt=/mnt/bootdevice What I got was the following error message: Boot has failed, sleeping forever. Am I specifying the wrong filesystem or bootdevice? Has anyone been able to get this...
2010 Sep 30
1
PXELINUX: initrd loading failed
...unknown-block(0,0) Size of initrd0.img is approx. 317 MB Size of vmlinuz is approx. 4 MB Following is the part of my default file in pxelinux.cfg/ label linux0 menu label MyFedora13 (default) kernel vmlinuz0 APPEND rootflags=loop initrd=initrd0.img root=live:/FC13.iso rootfstype=iso9660 rw liveimg quiet selinux=0 rhgb rd_NO_LUKS rd_NO_MD noiswmd blacklist nouveau Following are the information about Ethernet Controller and PXE on the system Intel Corporation 82562EZ 10/100 Ethernet Controller (rev 01) Intel Boot Agent FE v4.1.16 Intel Boot Agent PXE Based Code (PXE-2.1 build 084) Where is...
2013 Nov 19
2
CentOS LiveCD on USB
I have been following these instructions: https://www.centos.org/forums/viewtopic.php?t=501 to put a bunch of utilities (Clonezilla, SystemRescue, CentOS netinstall/rescue, etc.) on a single USB key. It works great for everything (including Ubuntu Live) except the CentOS 6.4 LiveCD. (You can see my postings at the bottom of the forum.) When booting the LiveCD, I got: Kernel panic - not syncing:
2010 Jul 21
0
[PATCH] RFC: Encrypted swap support
...the default cypher is set to aes-cbc-essiv:sha256 + crypt_swap= + crypt_swap2= + # ovirt_upgrade # install/update oVirt Node image on the local installation target disk upgrade= @@ -572,6 +578,32 @@ start_ovirt_early () { BOOT_IMAGE=* | initrd=* | check | linux | liveimg | \ root=* | rootfstype=* | rootflags=* | ro) ;; + ovirt_swap_encrypt=*) + i=${i#ovirt_swap_encrypt=} + eval $(printf $i|awk -F\; '{ print "swap1="$1; print "swap2="$2; }') + for p in 1 2; do +...
2009 Oct 14
8
Refactor ovirt-node code base for inclusion in Fedora
Main reason for refactor is no ovirt-node-image binary image allowed in fedora. Moves tools and kickstart files form ovirt-node-image to subpackage ovirt-node-recipe. Removes old sub packages form ovirt-node, stateless, logos, selinux. Modifies init scripts to meet Fedora packaging guidelines: added status, reload, and lockfile, rhbz: 514221 Added License file.