I'm running CHR 6.35.4 as XEN full virtualized domU on Debian systems, Wheezy (v7) as well as Jessie (v8). I'm using the Kernels and XEN-tools provided by the distributions and the CHR raw-image.
The only real issue I'm having is, that every time I reboot the virtual machine, /system license system-id changes. Any ideas on how to avoid that? Its the only thing keeping me from buying some licenses of this otherwise very neat product. Below is the configuration of the domU.
Code: Select all
# =====================================================================
# Example HVM guest configuration
# =====================================================================
#
# This is a fairly minimal example of what is required for an
# HVM guest. For a more complete guide see xl.cfg(5)
# This configures an HVM rather than PV guest
builder = "hvm"
# Guest name
name = "chr.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"
# Enable Microsoft Hyper-V compatibile paravirtualisation /
# enlightenment interfaces. Turning this on can improve Windows guest
# performance and is therefore recommended
#viridian = 1
# Initial memory allocation (MB)
memory = 1024
# 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 = [ 'model=e1000' ]
# Disk Devices
# A list of `diskspec' entries as described in
# docs/misc/xl-disk-configuration.txt
disk = [
'file:/xen/test/chr-6.35.4.img,xvda,rw',
]
# Guest VGA console configuration, either SDL or VNC
#sdl = 1
#vnc = 1
BuzzDee