[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] xl: add some example configuration files
# HG changeset patch # User Ian Campbell <ian.campbell@xxxxxxxxxx> # Date 1319705714 -3600 # Node ID e3bd1c4184e513ca19e1f2e11803004015ed0d15 # Parent 4900950d16bbbb63925fadd4cdabdfde01195c37 xl: add some example configuration files These are much more minimal than the equivalent xmexamples but should eventually reference a more complete document describing the available options. These are based on the guest configuration files that I actually use day-to-day. There is an unresolved reference to a document describing the complete syntax. Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Acked-by: Ian Jackson <ian.jackson.citrix.com> Committed-by: Ian Jackson <ian.jackson.citrix.com> --- diff -r 4900950d16bb -r e3bd1c4184e5 tools/examples/xlexample.hvm --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tools/examples/xlexample.hvm Thu Oct 27 09:55:14 2011 +0100 @@ -0,0 +1,39 @@ +# ===================================================================== +# Example HVM guest configuration +# ===================================================================== +# +# This is a fairly minimal example of what is required for an +# HVM guest. For a more complete guide see <XXX Document TBD> + +# Guest name +name = "example.hvm" + +# 128-bit UUID for the domain as a hexadecimal number. +# Use "uuidgen" to generate one if required. +# The default behavior is to generate a new UUID each time the guest is started. +#uuid = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" + +# Initial memory allocation (MB) +memory = 128 + +# Maximum memory (MB) +# If this is greater than `memory' then the slack will start ballooned +# (this assumes guest kernel support for ballooning) +#maxmem = 512 + +# Number of VCPUS +vcpus = 2 + +# Network devices +# A list of 'vifspec' entries as described in +# docs/misc/xl-network-configuration.markdown +vif = [ '' ] + +# Disk Devices +# A list of `diskspec' entries as described in +# docs/misc/xl-disk-configuration.txt +disk = [ '/dev/vg/guest-volume,raw,xvda,rw' ] + +# Guest VGA console configuration, either SDL or VNC +sdl = 1 +#vnc = 1 diff -r 4900950d16bb -r e3bd1c4184e5 tools/examples/xlexample.pvlinux --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tools/examples/xlexample.pvlinux Thu Oct 27 09:55:14 2011 +0100 @@ -0,0 +1,44 @@ +# ===================================================================== +# Example PV Linux guest configuration +# ===================================================================== +# +# This is a fairly minimal example of what is required for a +# Paravirtualised Linux guest. For a more complete guide see <XXX Document TBD> + +# Guest name +name = "example.pvlinux" + +# 128-bit UUID for the domain as a hexadecimal number. +# Use "uuidgen" to generate one if required. +# The default behavior is to generate a new UUID each time the guest is started. +#uuid = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" + +# Kernel image to boot +kernel = "/boot/vmlinuz" + +# Ramdisk (optional) +#ramdisk = "/boot/initrd.gz" + +# Kernel command line options +extra = "root=/dev/xvda1" + +# Initial memory allocation (MB) +memory = 128 + +# Maximum memory (MB) +# If this is greater than `memory' then the slack will start ballooned +# (this assumes guest kernel support for ballooning) +#maxmem = 512 + +# Number of VCPUS +vcpus = 2 + +# Network devices +# A list of 'vifspec' entries as described in +# docs/misc/xl-network-configuration.markdown +vif = [ '' ] + +# Disk Devices +# A list of `diskspec' entries as described in +# docs/misc/xl-disk-configuration.txt +disk = [ '/dev/vg/guest-volume,raw,xvda,rw' ] _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |