I'm trying to install Proxmox VE 7 on ZFS via the recovery console.
What I have done so far:
Boot recovery
Note the MAC address of the active ethernet interface:
Download Proxmox:
Start VM and attach the hard drives:
Connect with VNC and Install Proxmox
Start VM without install CD:
Set the MAC address of the vmbr0 bridge to the MAC address of the active ethernet interface:
Replace iface name of the VM with iface name of real machine.
Shutdown VM and disable Netboot recovery.
Reboot Machine.
After Reboot the server does not start.
It sits on a screen with the error message "No root device specified. Boot arguments must include a root= parameter."
Any idea what could have gone wrong here?
What I have done so far:
Boot recovery
Note the MAC address of the active ethernet interface:
ip a
Download Proxmox:
wget http://download.proxmox.com/iso/proxmox-ve_7.0-2.iso
Start VM and attach the hard drives:
Code:
qemu-system-x86_64 -enable-kvm -m 10240 -cpu host -smbios type=0,uefi=on -drive if=virtio,cache=none,file=/dev/sda -drive if=virtio,cache=none,file=/dev/sdb -drive if=virtio,cache=none,file=/dev/sdc -drive if=virtio,cache=none,file=/dev/sdd -cdrom ./proxmox-ve_7.0-2.iso -boot d -vnc :0
Start VM without install CD:
Code:
qemu-system-x86_64 -enable-kvm -m 10240 -cpu host -smbios type=0,uefi=on -drive if=virtio,cache=none,file=/dev/sda -drive if=virtio,cache=none,file=/dev/sdb -drive if=virtio,cache=none,file=/dev/sdc -drive if=virtio,cache=none,file=/dev/sdd -vnc :0
nano /etc/network/interfaces
add hwaddress aa:bb:cc:dd:ee:ff
to the auto vmbr0 part of the config.Replace iface name of the VM with iface name of real machine.
Shutdown VM and disable Netboot recovery.
Reboot Machine.
After Reboot the server does not start.
It sits on a screen with the error message "No root device specified. Boot arguments must include a root= parameter."
Any idea what could have gone wrong here?