From d1d0c39a8ff1d2358a304eae9dfb6acbe29ee358 Mon Sep 17 00:00:00 2001 From: Augusto Gunsch Date: Mon, 9 Aug 2021 15:51:18 -0300 Subject: [PATCH] Fix sector --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 77a6644..9e83e8a 100755 --- a/install.sh +++ b/install.sh @@ -106,7 +106,7 @@ partition() { echo -n "Partitioning drive..." parted --script "$DRIVE_TARGET" \ mklabel gpt \ - mkpart swap ext4 0MiB 4GiB \ + mkpart swap ext4 1MiB 4GiB \ mkpart boot ext4 4GiB 5Gib \ mkpart root ext4 5GiB 100% echo "done"