Installing KVM Virtual Machine on Ubuntu 18.04 LTS
Recently, I installed KVM on the latest Ubuntu 18.04 to virtualize a small VM cluster. Here, I document the main process and some issues encountered. Preparation First, you need to check if the CPU supports virtualization. Run the following command to check if there are any virtualization-related terms in the /proc/cpuinfo file. If present, it indicates that the CPU supports virtualization technology. egrep -c '(svm|vmx)' /proc/cpuinfo If the command returns 0, it means the CPU does not support virtualization technology. Additionally, virtualization technology in the motherboard BIOS might not be enabled by default. If not, you need to enable it manually. ...