From 1f17ef5c2f3d0bcccb518e2ea2682322a2a36045 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20unbrot=20P=C3=A4tzold?= Date: Mon, 27 Apr 2026 17:15:06 +0200 Subject: [PATCH] Update install.md: download script before running with sudo Process substitution does not survive sudo, so the script must be downloaded to a temp file first. Co-Authored-By: Claude Sonnet 4.6 --- install.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/install.md b/install.md index 9e49a77..caec2b1 100644 --- a/install.md +++ b/install.md @@ -19,11 +19,12 @@ the script `./system_setup/install.sh` prepares a target machine for automated F ## Run directly from the repository -```bash -bash <(curl -fsSL https://gitea.dtext.online/obel1x/fedora-OEMDRV/raw/branch/main/system_setup/install.sh) -``` +Download the script first, then run it as root: -> The script requires root. Run the command above as root, or prefix with `sudo`. +```bash +curl -fsSL https://gitea.dtext.online/obel1x/fedora-OEMDRV/raw/branch/main/system_setup/install.sh -o /tmp/install.sh +sudo bash /tmp/install.sh +``` ## After the script completes