1# =====================================================================
2# Example PVH Linux guest configuration
3# =====================================================================
4#
5# This is a fairly minimal example of what is required for a
6# PVH Linux guest. For a more complete guide see xl.cfg(5)
7
8# This configures a PVH rather than PV guest
9type = "pvh"
10
11# Guest name
12name = "example.pvhlinux"
13
14# 128-bit UUID for the domain as a hexadecimal number.
15# Use "uuidgen" to generate one if required.
16# The default behavior is to generate a new UUID each time the guest is started.
17#uuid = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
18
19# Kernel image to boot
20kernel = "/boot/vmlinuz"
21
22# Ramdisk (optional)
23#ramdisk = "/boot/initrd.gz"
24
25# Kernel command line options
26extra = "root=/dev/xvda1"
27
28# Initial memory allocation (MB)
29memory = 512
30
31# Number of VCPUS
32vcpus = 4
33
34# Network devices
35# A list of 'vifspec' entries as described in
36# docs/misc/xl-network-configuration.markdown
37vif = [ '' ]
38
39# Disk Devices
40# A list of `diskspec' entries as described in
41# docs/misc/xl-disk-configuration.txt
42disk = [ '/dev/zvol/tank/guest-volume,raw,xvda,rw' ]
43