From 45d78f6435dd00db18d7220267360be364aba8a8 Mon Sep 17 00:00:00 2001 From: networkException Date: Mon, 9 May 2022 17:01:37 +0200 Subject: [PATCH] Documentation: Update the required packages for arch based systems Since qemu 7 the Arch Linux repository is using a different naming system for the various required packages. This patch updates the required dependencies for running serenity. See https://archlinux.org/news/qemu-700-changes-split-package-setup/ --- Documentation/BuildInstructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/BuildInstructions.md b/Documentation/BuildInstructions.md index 158f37398f..39115335b1 100644 --- a/Documentation/BuildInstructions.md +++ b/Documentation/BuildInstructions.md @@ -48,7 +48,7 @@ for details. ### Arch Linux / Manjaro ```console -sudo pacman -S --needed base-devel cmake curl mpfr libmpc gmp e2fsprogs ninja qemu qemu-arch-extra ccache rsync unzip +sudo pacman -S --needed base-devel cmake curl mpfr libmpc gmp e2fsprogs ninja qemu-desktop qemu-emulators-full ccache rsync unzip ``` Optional: `fuse2fs` for [building images without root](https://github.com/SerenityOS/serenity/pull/11224).