Few things, I had to do after installation. Enable network. The easiest is to use systemd. Just: systemctl enable systemd-networkd systemctl enable systemd-resolved Install BTRFS utilities: pacman -S btrfs-progs Install micro-code updates for Intel procesors: pacman -S intel-ucode As having 2 and 3 completed, we shall recreate our boot configuration (2 enables btrfs.fsck in early user space - previously binary was not avaiable so was skipped from initial ram disk): mkinitcpio -p linux grub-mkconfig -o /boot/grub/grub.cfg Replace relatime with noatime for /boot partition (as this is on USB) in /etc/fstab. Install SSH client and server: pacman -S openssh systemctl enable sshd.socket Finally add a user not to play root anymore (also note that root is disabled to login using password via ssh): useradd -m -G wheel -s /bin/bash bart passwd bart Install sudo: pacman -S sudo , then use visudo to uncomment wheel group permission. Generate SSH keys for your user:...