Hello
I'm trying to migrate VMs from two old Xen 4.4 servers to Proxmox. I've successfully extracted the disk (xvda2) images and added GRUB to make them bootable. However, when I try to boot the VMs on Proxmox, they drop me into an initramfs shell.
After some poking around, I noticed that /sys and /proc are empty, I'm guessing it because the vm use paravirtualization, but I have no clue to fix that.
the xen config file is :
I'm trying to migrate VMs from two old Xen 4.4 servers to Proxmox. I've successfully extracted the disk (xvda2) images and added GRUB to make them bootable. However, when I try to boot the VMs on Proxmox, they drop me into an initramfs shell.
After some poking around, I noticed that /sys and /proc are empty, I'm guessing it because the vm use paravirtualization, but I have no clue to fix that.
the xen config file is :
Code:
#
# Configuration file for the Xen instance pc50, created
# by xen-tools 4.2 on Mon Dec 19 14:50:03 2011.
#
#
# Kernel + memory size
#
kernel = '/home/kernels/debian/vmlinuz-2.6.32-5-xen-amd64'
ramdisk = '/home/kernels/debian/initrd.img-2.6.32-5-xen-amd64'
vcpus = '1'
memory = '2048'
#
# Disk device(s).
#
root = '/dev/xvda2 ro'
disk = [
'phy:/dev/vg-pc5014-bis/pc5050-disk,xvda2,w',
'phy:/dev/vg-pc5014/pc5050-swap,xvda1,w',
]
#
# Physical volumes
#
#
# Hostname
#
name = 'pc5050'
#
# Networking
#
dhcp = 'dhcp'
vif = [ 'mac=00:16:3E:00:00:50' ]
#
# Behaviour
#
on_poweroff = 'destroy'
on_reboot = 'restart'
on_crash = 'restart'