프로그램 사용/proxmox
proxmox nested virtualization
구차니
2024. 3. 26. 14:31
proxmox 안에서 또 proxmox를 돌리는건데 공식적으로 지원은 하는 듯.
나중에 해당 경로에서 확인해볼까?
to check if is enabled do ("kvm_intel" for intel cpu, "kvm_amd" for AMD) root@proxmox:~# cat /sys/module/kvm_intel/parameters/nested N N means it's not enabled, to activate it ("kvm-intel" for intel): # echo "options kvm-intel nested=Y" > /etc/modprobe.d/kvm-intel.conf (or "kvm-amd" for AMD, note the 1 instead of Y): # echo "options kvm-amd nested=1" > /etc/modprobe.d/kvm-amd.conf and reboot or reload the kernel module modprobe -r kvm_intel modprobe kvm_intel check again root@proxmox:~# cat /sys/module/kvm_intel/parameters/nested Y |