QEMU virtual machine environment configuration quick guide

QEMU

QEMU plays a huge role in simulating the linux operating system, which can help you to run the operating system perfectly to complete the experiment without buying a linux development board


Complete installation process

Prepare an ubuntu system, which can be a virtual machine or a physical machine

First set to allow the use of virtualization, and the terminal executes directly:

egrep -c '(vmx|svm)' /proc/cpuinfo

Install the environment and packages necessary to run QEMU

sudo apt install qemu-kvm qemu-system qemu-utils python3 python3-pip l

Guess you like

Origin blog.csdn.net/delete_you/article/details/132109880