From ef664a4fb12d241f31abfcb8f247bae49c58bab1 Mon Sep 17 00:00:00 2001 From: Augustin Trancart Date: Wed, 19 Jun 2019 15:57:57 +0200 Subject: [PATCH] Add required package for ubuntu On ubuntu qemu-utils is necessary to have qemu-img, qemu-system-x86 is necessary for qemu-system-x86_64 in basic.sh --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 205251f..6dd6edf 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ By [@FoxletFox](https://twitter.com/foxletfox), and the help of many others. You'll need a Linux system with `qemu`, `python3`, `pip` and the KVM extensions installed for this project. A Mac is **not** required. Some examples for different distributions: ``` - sudo apt-get install qemu python3 python3-pip # for Ubuntu, Debian, Mint, and PopOS. + sudo apt-get install qemu python3 python3-pip qemu-utils qemu-system # for Ubuntu, Debian, Mint, and PopOS. sudo pacman -S qemu python python-pip # for Arch. sudo xbps-install -Su qemu python3 python3-pip # for Void Linux. ```