From 6960bb9d67d940d02385e117eb2518bfdd0c15ba Mon Sep 17 00:00:00 2001
From: kerta1n <36344851+kerta1n@users.noreply.github.com>
Date: Sun, 12 Sep 2021 17:35:59 -0400
Subject: [PATCH 1/2] Update README.md

Added GCC and UUID-runtime which when previously not added would give make error 127 and uuidgen: command not found errors
---
 README.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index 7ab3d52..e469da3 100644
--- a/README.md
+++ b/README.md
@@ -65,14 +65,14 @@ Used at runtime in [Docker-OSX](https://github.com/sickcodes/Docker-OSX).
 ```bash
 # Ubuntu, Debian, Pop
 sudo apt update -y
-sudo apt install libguestfs-tools build-essential wget git linux-generic sudo -y
+sudo apt install libguestfs-tools build-essential wget git linux-generic gcc uuid-runtime sudo -y
 
 # Fedora, RHEL, CentOS
-sudo yum install libguestfs libguestfs-tools wget git kernel-devel sudo -y
+sudo yum install libguestfs libguestfs-tools wget git kernel-devel gcc uuidd sudo -y
 sudo yum groupinstall 'Development Tools' -y
 
 # Arch, Manjaro
-sudo pacman -Sy libguestfs wget git base-devel linux sudo
+sudo pacman -Sy libguestfs wget git base-devel linux gcc uuidd sudo
 
 ```
 
@@ -546,4 +546,4 @@ Ignored:
             <key>PointerSpeedDiv</key>
 ```
 
------------------
\ No newline at end of file
+-----------------

From d38c9dd88250925b172a0c512d6f4267ecad1535 Mon Sep 17 00:00:00 2001
From: sickcodes <65906298+sickcodes@users.noreply.github.com>
Date: Mon, 13 Sep 2021 09:46:42 +0000
Subject: [PATCH 2/2] Fix uuidgen requirements.

Other distros have them in the default docker containers
---
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index e469da3..5722153 100644
--- a/README.md
+++ b/README.md
@@ -68,11 +68,11 @@ sudo apt update -y
 sudo apt install libguestfs-tools build-essential wget git linux-generic gcc uuid-runtime sudo -y
 
 # Fedora, RHEL, CentOS
-sudo yum install libguestfs libguestfs-tools wget git kernel-devel gcc uuidd sudo -y
+sudo yum install libguestfs libguestfs-tools wget git kernel-devel gcc sudo -y
 sudo yum groupinstall 'Development Tools' -y
 
 # Arch, Manjaro
-sudo pacman -Sy libguestfs wget git base-devel linux gcc uuidd sudo
+sudo pacman -Sy libguestfs wget git base-devel linux gcc sudo
 
 ```