Skip to main content

Install Base System

Install Packages

pacstrap /mnt \
\
# Base System
base \
base-devel \
linux \
linux-firmware \
amd-ucode \
\
# File System Tooling
btrfs-progs \
dosfstools \
lvm2 \

\
# Base Tooling
zsh \
zsh-autosuggestions \
zsh-completions \
zsh-history-substring-search \
zsh-syntax-highlighting \
nano \
man \
rsync \
\
# Network
networkmanager \

Generate fstab

genfstab -U /mnt >> /mnt/etc/fstab

chroot into installation

arch-chroot /mnt