Download PVE images # Under Resce System wget -O pve.iso https://mirrors.bfsu.edu.cn/proxmox/iso/proxmox-ve_7.3-1.iso aria2c -x 8 https://mirrors.bfsu.edu.cn/proxmox/iso/proxmox-ve_7.3-1.iso Create kvm machine using local disk devices # Legacy BIOS qemu-system-x86_64 -enable-kvm -smp 4 -m 4096 -boot d -cdrom ./pve.iso -drive file=/dev/sda,format=raw,media=disk -drive file=/dev/sdb,format=raw,media=disk -vnc 0.0.0.0:1 # Use UEFI apt-get install -y ovmf # Use IP:5901 to login Vm’s VNC ## With CDROM qemu-system-x86_64 -enable-kvm -bios /usr/share/ovmf/OVMF.fd -smp 4 -m 4096 -boot d -cdrom ./pve.iso -drive file=/dev/nvme0n1,format=raw,media=disk -drive file=/dev/sda,format=raw,media=disk -drive file=/dev/sdb,format=raw,media=disk -vnc 0.0.0.0:1 ## Without CDROM qemu-system-x86_64 -enable-kvm -bios /usr/share/ovmf/OVMF.fd -smp 4 -m 4096 -boot d -drive file=/dev/nvme0n1,format=raw,media=disk -drive file=/dev/sda,format=raw,media=disk -drive file=/dev/sdb,format=raw,media=disk -vnc 0.0.0.0:1 Get gateway / netmask information from Resce System SSH # Login to VNC then execute: route -n Change network settings vim /etc/network/interfaces ----- auto lo iface lo inet loopback iface eno1 inet manual auto vmbr0 iface vmbr0 inet static address 195.201.0.100/26 gateway 195.201.0.1 bridge-ports eno1 bridge-stp off bridge-fd 0 -----