Adding Xen Drivers for Guest VMs

When converting or replicating VMware virtual machines as Amazon instances, you can install Xen drivers on Linux guest VMs before replicating the VMs. This enables the required drivers to be in place when the Amazon instances are created, so that the Amazon instance can be started and users can access the instance.

Before You Begin

Log on to the Linux VM as a root user.

Procedure

On Linux VMs running CentOS or RHEL, perform the following steps:

  1. To identify the current kernel version, run the following command:

    uname -r
  2. Go to the /boot folder:

    cd /boot
  3. Take a backup of the .img file for the kernel.

  4. Open the editor to edit the dracut.conf configuration file:

    vi /etc/dracut.conf
  5. Uncomment the line that contains the string "add_drivers".

  6. Add the xen-blkfront and xen-netfrontdriver module names to the line with spaces separating each module. (Do not include the .ko suffix in the driver module name.)

    For example:

    add_drivers+="xen-blkfront xen-netfront"
  7. Return to the /boot folder:

    cd /boot
  8. Recut the initramfs:

    dracut -f -v

Loading...