- KVM Virtualization Cookbook
- Konstantin Ivanov
- 89字
- 2021-07-02 22:07:03
How to do it...
Perform the following steps to install QEMU from packages on Ubuntu/Debian and RHEL/CentOS distributions:
- On Ubuntu/Debian distributions, update your packages index:
root@kvm:~# apt-get update
- Install the package:
root@kvm:~# apt-get install -y qemu
- On CentOS/RHEL distributions execute:
root@kvm:~# yum install qemu-kvm
To install from source, execute the following:
- Download the archive first:
root@kvm:~#cd /usr/src && wget
http://download.qemu-project.org/qemu-2.8.0.tar.xz
- Extract the files from the archive:
root@kvm:/usr/src# tar xvJf qemu-2.8.0.tar.xz && cd qemu- 2.8.0
- Configure and compile the source code:
root@kvm:/usr/src/qemu-2.8.0# ./configure
root@kvm:/usr/src/qemu-2.8.0# make && make install
推薦閱讀
- 軟件工程
- 青少年Python編程入門
- Swift細致入門與最佳實踐
- Protocol-Oriented Programming with Swift
- Python Data Science Cookbook
- 汽車人機交互界面整合設計
- 工業機器人離線編程
- Vue.js光速入門及企業項目開發實戰
- Clojure Web Development Essentials
- RESTful Web API Design with Node.js(Second Edition)
- 數據結構與算法詳解
- Mastering Unity Scripting
- Java網絡編程實用精解
- 交互設計語言:與萬物對話的藝術(全兩冊)
- Learning Akka