From 1ca1b71f9cf128e45188e69088dd26731565cd4f Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Mon, 22 Jan 2018 15:41:20 +0000 Subject: [PATCH] docs: Fix image builder instructions. The `image_builder.sh` script must be run as `root`. Fixes #36. Signed-off-by: James O. D. Hunt --- image-builder/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image-builder/README.md b/image-builder/README.md index af0b0f9419..21bb9c24b5 100644 --- a/image-builder/README.md +++ b/image-builder/README.md @@ -11,7 +11,7 @@ This uses a rootfs directory created by the `rootfs-builder/rootfs.sh` script. To create a guest OS image run: ``` -$ ./image_builder.sh path/to/rootfs +$ sudo ./image_builder.sh path/to/rootfs ``` Where `path/to/rootfs` is the directory populated by `rootfs.sh`.