zl程序教程

您现在的位置是:首页 >  系统

当前栏目

Linux编译安装qemu

Linux安装 编译 QEMU
2023-09-14 09:09:56 时间
1.wget方式
# wget https://download.qemu.org/qemu-5.1.0.tar.xz
# tar xvJf qemu-5.1.0.tar.xz
# cd qemu-5.1.0
# ./configure
# make
# make install

2.git方式
# git clone https://git.qemu.org/git/qemu.git
# cd qemu
# git submodule init
# git submodule update --recursive
# ./configure
# make
# make install

3.测试
# qemu-arm -version 
qemu-arm version 2.0.0,Copyright (c) 2003-2008 FabriceBellard
注意:本人下的是qemu2.0: qemu-2.0.0.tar.bz2