From 62aff669830aa8fc6b80ebf896e4835a508fc0f3 Mon Sep 17 00:00:00 2001 From: eichehome Date: Tue, 25 Jul 2023 20:37:36 +0200 Subject: [PATCH] =?UTF-8?q?Script=20zum=20erstellen=20der=20Partitionen=20?= =?UTF-8?q?f=C3=BCr=20Tests=20hinzugef=C3=BCgt.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- prepare.uefi | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 prepare.uefi diff --git a/prepare.uefi b/prepare.uefi new file mode 100644 index 0000000..05ab5ea --- /dev/null +++ b/prepare.uefi @@ -0,0 +1,11 @@ +#!/bin/bash +sgdisk -og "${DRIVE}" +# EFI System Partition erstellen +sgdisk -n 0:0:+"${ESP}" -t 0:c12a7328-f81f-11d2-ba4b-00a0c93ec93b -c 0:"EFI System Partition" "${DRIVE}" +#sgdisk -n 0:0:+512M -t 0:ef00 -c 0:ESP "${DRIVE}" +# usr-Partition erstellen +sgdisk -n 0:0:+"${USR}" -t 0:8484680c-9521-48c6-9c11-b0720656f69e -c 0:"ArchOS_0.1" "${DRIVE}" +# usrhash-Partition erstellen +sgdisk -n 0:0:+512M -t 0:77ff5f63-e7b6-4633-acf4-1565b864c0e6 -c 0:"ArchOS_0.1" "${DRIVE}" +# Root-Partition erstellen +sgdisk -n 0:0:0 -t 0:4f68bce3-e8cd-4db1-96e7-fbcaf984b709 -c 0:"ArchOS Root" "${DRIVE}" \ No newline at end of file