From ea4fb0c978600445e699594287efd88206a1ed86 Mon Sep 17 00:00:00 2001 From: Sam Johnson Date: Tue, 24 Feb 2026 14:25:36 +0100 Subject: [PATCH 1/2] Update README.md with RPM Dependencies Added Fedora/RHEL instructions to Installation Preparations section --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4391186..4c7b3b8 100644 --- a/README.md +++ b/README.md @@ -63,13 +63,23 @@ processors work just fine (even for macOS Sonoma). * Install QEMU and other packages. +This step may need to be adapted for your Linux distribution. + +#### Debian/Ubuntu + ``` sudo apt-get install qemu-system uml-utilities virt-manager git \ wget libguestfs-tools p7zip-full make dmg2img tesseract-ocr \ tesseract-ocr-eng genisoimage vim net-tools screen -y ``` - This step may need to be adapted for your Linux distribution. +#### Fedora/RHEL + + ``` + sudo dnf install qemu-system-x64 virt-manager git \ + wget libguestfs-tools p7zip make dmg2img tesseract-common \ + tesseract-langpack-eng genisoimage vim net-tools screen -y + ``` * Clone this repository on your QEMU system. Files from this repository are used in the following steps. From d950e8d382d6900ed6b7346fed84edc6686b2576 Mon Sep 17 00:00:00 2001 From: Sam Johnson Date: Tue, 24 Feb 2026 14:29:19 +0100 Subject: [PATCH 2/2] Update README.md with fedora installation Update README.md with fedora installation instructions (fix x64 dep to x86) --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4c7b3b8..1e005e3 100644 --- a/README.md +++ b/README.md @@ -61,9 +61,7 @@ processors work just fine (even for macOS Sonoma). ### Installation Preparation -* Install QEMU and other packages. - -This step may need to be adapted for your Linux distribution. +* Install QEMU and other packages. (Note: This step may need to be adapted for your Linux distribution.) #### Debian/Ubuntu @@ -76,7 +74,7 @@ This step may need to be adapted for your Linux distribution. #### Fedora/RHEL ``` - sudo dnf install qemu-system-x64 virt-manager git \ + sudo dnf install qemu-system-x86 virt-manager git \ wget libguestfs-tools p7zip make dmg2img tesseract-common \ tesseract-langpack-eng genisoimage vim net-tools screen -y ```