livemedia-creator: Update documentation to reflect new options
This commit is contained in:
parent
19d8304070
commit
71dd20607b
@ -185,7 +185,7 @@ sudo livemedia-creator --make-ami --iso=/path/to/boot.iso --ks=./docs/fedora-liv
|
|||||||
|
|
||||||
This will produce an ami-root.img file in the working directory.
|
This will produce an ami-root.img file in the working directory.
|
||||||
|
|
||||||
At this time I have not tested the image with EC2. Feedback would we welcome.
|
At this time I have not tested the image with EC2. Feedback would be welcome.
|
||||||
|
|
||||||
|
|
||||||
APPLIANCE CREATION
|
APPLIANCE CREATION
|
||||||
@ -224,6 +224,23 @@ The created image can be imported into libvirt using:
|
|||||||
|
|
||||||
virt-image appliance.xml
|
virt-image appliance.xml
|
||||||
|
|
||||||
|
You can also create qcow2 appliance images using --qcow2, for example:
|
||||||
|
sudo livemedia-creator --make-appliance --iso=/path/to/boot.iso --ks=./docs/fedora-minimal.ks \
|
||||||
|
--qcow2 --app-file=minimal-test.xml --image-name=minimal-test.img
|
||||||
|
|
||||||
|
|
||||||
|
FILESYSTEM IMAGE CREATION
|
||||||
|
-------------------------
|
||||||
|
livemedia-creator can be used to create un-partitined filesystem images using the
|
||||||
|
--make-fsimage option. As of version 21.8 this works with both virt-install and no-virt. Previously
|
||||||
|
it was only available with --no-virt.
|
||||||
|
|
||||||
|
Kickstarts should have a single / partition with no extra mountpoints.
|
||||||
|
|
||||||
|
livemedia-creator --make-fsimage --iso=/path/to/boot.iso --ks=./docs/fedora-minimal.ks
|
||||||
|
|
||||||
|
You can name the output image with --image-name and set a label on the filesystem with --fs-label
|
||||||
|
|
||||||
|
|
||||||
DEBUGGING PROBLEMS
|
DEBUGGING PROBLEMS
|
||||||
------------------
|
------------------
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.TH LIVEMEDIA-CREATOR 1 2013\-07\-26
|
.TH LIVEMEDIA-CREATOR 1 2014\-04\-03
|
||||||
.SH NAME
|
.SH NAME
|
||||||
livemedia-creator \- Create live install media
|
livemedia-creator \- Create live install media
|
||||||
|
|
||||||
@ -8,6 +8,8 @@ livemedia-creator [-h]
|
|||||||
[--iso ISO] [--disk-image DISK_IMAGE]
|
[--iso ISO] [--disk-image DISK_IMAGE]
|
||||||
[--fs-image FS_IMAGE] [--ks KS]
|
[--fs-image FS_IMAGE] [--ks KS]
|
||||||
[--image-name IMAGE_NAME] [--image-only]
|
[--image-name IMAGE_NAME] [--image-only]
|
||||||
|
[--fs-label FS_LABEL]
|
||||||
|
[--qcow2] [--qcow2-arg QCOW2_ARGS]
|
||||||
[--keep-image] [--no-virt] [--proxy PROXY]
|
[--keep-image] [--no-virt] [--proxy PROXY]
|
||||||
[--anaconda-arg ANACONDA_ARGS]
|
[--anaconda-arg ANACONDA_ARGS]
|
||||||
[--armplatform ARMPLATFORM] [--location LOCATION]
|
[--armplatform ARMPLATFORM] [--location LOCATION]
|
||||||
@ -30,8 +32,8 @@ use with virtualization.
|
|||||||
The general idea is to use virt-install to install into a disk image and then
|
The general idea is to use virt-install to install into a disk image and then
|
||||||
use the disk image to create the bootable media.
|
use the disk image to create the bootable media.
|
||||||
|
|
||||||
livemedia-creator --help will describe all of the options available. At the
|
livemedia-creator --help will describe all of the options available. To create a
|
||||||
minimum you need:
|
bootable iso you need at least:
|
||||||
|
|
||||||
--make-iso to create a final bootable .iso
|
--make-iso to create a final bootable .iso
|
||||||
--iso to specify the Anaconda install media to use with virt-install
|
--iso to specify the Anaconda install media to use with virt-install
|
||||||
@ -73,7 +75,15 @@ Path to disk image to use for creating final image
|
|||||||
|
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-fs\-image FS_IMAGE\fR
|
\fB\-\-fs\-image FS_IMAGE\fR
|
||||||
Path to filesystem image to use for creating final image
|
Path to existing filesystem image to use for creating final image.
|
||||||
|
|
||||||
|
.TP
|
||||||
|
\fB\-\-qcow2\fR
|
||||||
|
Create qcow2 image instead of raw sparse image when making disk images.
|
||||||
|
|
||||||
|
.TP
|
||||||
|
\fB\-\-qcow2\-args\fR
|
||||||
|
Arguments to pass to qemu-img. Pass once for each argument
|
||||||
|
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-ks KS\fR
|
\fB\-\-ks KS\fR
|
||||||
@ -83,6 +93,10 @@ Kickstart file defining the install.
|
|||||||
\fB\-\-image\-name IMAGE_NAME\fR
|
\fB\-\-image\-name IMAGE_NAME\fR
|
||||||
Name of fs/disk image to create. Default is a random name.
|
Name of fs/disk image to create. Default is a random name.
|
||||||
|
|
||||||
|
.TP
|
||||||
|
\fB\-\-fs\-label FS_LABEL\fR
|
||||||
|
Label to set on fsimage, default is 'Anaconda'
|
||||||
|
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-image\-only\fR
|
\fB\-\-image\-only\fR
|
||||||
Exit after creating fs/disk image.
|
Exit after creating fs/disk image.
|
||||||
|
Loading…
Reference in New Issue
Block a user