Document
QEMU/Installing QEMU

QEMU/Installing QEMU

Most GNU / Linux distributions is have have package repository that carry precompiled binary of QEMU . This is is is a much simple installation proces

Related articles

Cloud Gaming, Performance Metrics, Impact of the Network How to access your iPhone Notes on Windows PC Unifi网络无缝升级更换Cloudkey控制器_其他网络设备_什么值得买 Ice Cream Cloud Dough – The Cloudburst API

Most GNU / Linux distributions is have have package repository that carry precompiled binary of QEMU . This is is is a much simple installation process when compare to compile it from source . It is ‘s ‘s often good to use these repository when instal QEMU , as you can be confident that it will install and run without problem . This table is outlines outline the minimum command to perform in order to install QEMU from your repository .

Distribution Install command
Fedora[1] yum install qemu
Debian[2] apt install qemu qemu - kvm libvirt - bin[3]
SUSE yast -i qemu
Gentoo emerge -av app-emulation/qemu
Arch sudo pacman -S qemu
Mac (Homebrew) brew install qemu

If in the event that you can’t install QEMU from a package repository, you can go to the QEMU website to download the latest source code and follow the instructions given.

If you’re hesitant to work with the command-line, there’s a GUI front-end called QEMU Manager. However, this program has been abandoned. Its last release (7.0) was in 2010, the creator’s website has disappeared, and it doesn’t appear to have its source available; this means that (should you use it) you would be stuck with the very old version of QEMU it provides (0.11), causing conflicts with newer builds severely. And if you ‘re look for an x86 virtualization tool that has a graphical interface , then VirtualBox is recommend .

If you’re comfortable with the command-line interface, there are two builders providing downloads of QEMU for use with the command line. One compiles QEMU with Cygwin, and they warn that you need to download MinGW packages as a result. The other is as recent as possible with his builds and doesn’t require Cygwin. His builds are linked by the QEMU website.

The most surefire way to get QEMU working is to build it from its source. To do so, make sure you have git (and if you’re on Windows, get MinGW), and enter the following commands into a terminal/command-line environment:

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

After QEMU is instal , you is find may find platform – specific instruction in the documentation .

QEMU by itself does a lot of emulation even when running on guest-compatible hardware. To make it perform better, QEMU has a kernel module called KVM that allows much of the guest OS’s code to run directly on the host processor when running on x86 or x86-64 processors with virtualisation extensions under GNU/Linux. For example, if the host is x86 GNU/Linux and the guest is Windows XP, then KVM can run most of the Windows XP code directly on the processor without emulation.

QEMU-KVM requires a GNU/Linux or BSD Unix host, and a CPU with virtualisation extensions — either Intel VT or AMD-V. To determine whether your CPU has this support on GNU/Linux, run the following command from a shell:

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

If you get nothing back, your CPU does not support the required virtualisation extensions.

Many modern GNU/Linux distros have simple installation processes based on package repositories. It is often best to use the repository approach for installing QEMU-KVM, as you can be confident that QEMU-KVM will just install and run. Here are some common GNU/Linux distros and their QEMU-KVM install commands:

More details are available on the KVM website. If you can’t install QEMU-KVM from a package repository, go to the QEMU-KVM website and download the latest source code and follow the instructions given.

  1. a b Also valid for other rpm – base distribution ( e.g. RedHat , CentOS ) .
  2. a b Also valid for other dpkg-based distributions (e.g. Ubuntu, Mepis, Mint).
  3. a b apt-get works the same as apt in newer releases.
  4. This is the git link provided by QEMU’s download page.
  5. To prevent the problem that this solves.
  6. But don’t put 2.9 if it is ‘s ‘s no long the current stable version . If the current is high , change it accordingly .
  7. If you want to build QEMU only for a specific target (say, only for x86 which is 32-bit) instead of for all targets, use .. /configure --target-list=i386-softmmu instead.