From 487f73d82ed2420653a150f30847ba00a72097ef Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Mon, 13 Jul 2020 16:36:26 +0200 Subject: [PATCH] [cash] Update install instructions Update instructions with BIOS configurations: 1. SATA driver mode (AHCI) 2. UEFI Secure Boot Also update instructions regarding how to create swap space. --- cash/installation.mdwn | 36 +++++++++++++++++++++++++++++------- 1 file changed, 29 insertions(+), 7 deletions(-) diff --git a/cash/installation.mdwn b/cash/installation.mdwn index 7ce8079..02cc03c 100644 --- a/cash/installation.mdwn +++ b/cash/installation.mdwn @@ -1,6 +1,6 @@ Följande är installationen: - * Senaste inbyggd programvara + * Senaste inbyggd programvara * Debian GNU/Linux 10 Buster -- Stable Debian 10.1 * Standard Gnome skrivbordsmiljö * Hårddisk partitionerad för separat boot och full diskkryptering @@ -24,23 +24,45 @@ behov. [ch04s03]: https://www.debian.org/releases/stable/amd64/ch04s03.sv.html [stable]: https://www.debian.org/releases/stable/amd64/ +# Inställningar BIOS + +Utifall att maskinen har BIOS (vanligt för datorer som inte är +flashade med Coreboot) kan följande behöva ses över: + + 1. Stäng av (deactivate) [UEFI Secure boot][secboot] + 2. Växla läget för SATA till AHCI från RAID + +[secboot]: https://wiki.debian.org/SecureBoot # partitionering, diskkryptering och växlingsutrymme Partitionera enligt följande + * 100 MB, efi, /boot/efi (eventuellt) * Primär, 500 MB, ext4, /boot, startbar Ja * Primär, resterande, krypterad volym (dm-crypt) -Konfigurera krypterad volymn till ext4 monterad som root, -/. Konfigurera *inget* växligsutrymme. +Beroende på om inställningarna i BIOS ändrades, kan */boot/efi* +behövas. Konfigurera krypterad volymn till ext4 monterad som root, +*/*. Konfigurera *inget* växligsutrymme. Att radera tidigare innehåll är bäst men det kan ta timmar. -Konfigurera växlingsturymme (swap) som fil enligt Debians guide -för [Swap](https://wiki.debian.org/Swap): `of=/swapfile bs=1K -count=4M` för 4 GB växlingsfil.. - +Konfigurera växlingsturymme (swap) som fil enligt Debians guide för +[Swap](https://wiki.debian.org/Swap). Undersök först `/sbin/swapon +--sh ow`. Kör annars följande (som root): + +``` +size=$(( $(cat /proc/meminfo | awk '/MemTotal/ {print $2}') / 2 / 1000)) +dd if=/dev/zero of=/swapfile bs=MiB count=$size +chmod 600 /swapfile +/sbin/mkswap /swapfile +/sbin/swapon /swapfile +cat <