新版qemu kvm 安装方法 yum groupinstall KVM ,如果不行就用下面的方面 QEMU is packaged by most Linux distributions: Arch: Debian/Ubuntu: Fedora: Gentoo: RHEL/CentOS: SUSE: To download and build QEMU 2.9.0-rc1: To download and build QEMU from git: The latest development happens on the master branch. The stable trees are located in branches named stable-X.YYbranch, where X.YY is the release version.
pacman -S qemu
apt-get install qemu
dnf install @virtualization
emerge --ask app-emulation/qemu
yum install qemu-kvm
zypper install qemu
wget http://download.qemu-project.org/qemu-2.9.0-rc1.tar.xz
tar xvJf qemu-2.9.0-rc1.tar.xz
cd qemu-2.9.0-rc1
./configure
make
git clone git://git.qemu-project.org/qemu.git
cd qemu
git submodule init
git submodule update --recursive
./configure
make
评论 (0)