「QEMU」- 环境搭建

通过仓库安装

# for Ubuntu 20.4
apt-get install qemu

通过源码安装

QEMU/Installing QEMU – Wikibooks, open books for an open world

git clone git://git.qemu-project.org/qemu.git[4]
cd qemu
git submodule init
git submodule update --recursive[5]
git submodule status --recursive
git checkout stable-2.9[6]
mkdir build
cd build
../configure[7]
make -j$(nproc)