Arch install process - UEFI
I was sure I wrote this stuff down the first time I fumbled through an arch uefi install. Guess not. Since this is going to be the process I use in whatever new laptop I end up getting, I thought I'd best record it as I go. A few differences from previous arch self-guide. I'm not doing the partitioning from a gui in a live CD, I'm just using the archlive installation usb to run cli programs like gdisk. I'm also not using LVM - I'll need to look at how that works with UEFI and stuff going forward. I'm using a 128G SSD, so don't need / can't have loads of other OSs. Anyway, let's go. Clear disk, create partitions and filesystems Boot into the latest arch iso then run gdisk on the disk you want to use (sda here): gdisk /dev/sda Clear the existing partition table: O Create a new EFI System partition n 1 [return] +512M ef00 Create swap partition: n 2 [return] +2G 8200 Create a partition on the rest of the disk for the OS and ...