From bc5f70d1ed2cb08fb4d41837b28a3c73c6935f40 Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Tue, 17 May 2022 16:28:41 -0700 Subject: [PATCH] docs: Add dependency qemu-img The qemu-img tool is used as part of the tutorial but is not installed by default on a fresh ubuntu 22.04 server. Signed-off-by: Steven Dake --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5fb95c1c9..5a27661a8 100644 --- a/README.md +++ b/README.md @@ -88,12 +88,10 @@ Hypervisor. Here, all the steps are based on Ubuntu, for other Linux distributions please replace the package manager and package name. ```shell -# Install git -$ sudo apt install git +# Install build-essential, git, and qemu-img +$ sudo apt install git build-essential qemu-img # Install rust tool chain $ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -# Install build-essential -$ sudo apt install build-essential # If you want to build statically linked binary please add musl target $ rustup target add x86_64-unknown-linux-musl ```