You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ bootctl --path=/boot install
$ cd /boot/loader/
$ nvim loader.conf
# add the line(s)
default arch.conf # should be same name as the conf file in entries directory
$ cd entries/
$ nvim arch.conf
# add the lines
title Arch Linux
linux /vmlinuz-linux
initrd /intel-ucode.img
initrd /initramfs-linux.img
options root=/dev/nvme0n1p2 rw quiet splash loglevel=3
$ nvim arch-fb.conf
# add the lines
title Arch Linux Fallback Image
linux /vmlinuz-linux
initrd /intel-ucode.img
initrd /initramfs-linux-fallback.img
options root=/dev/nvme0n1p2 rw quiet splash loglevel=3
$ nvim arch-lts.conf
# add the lines
title Arch Linux LTS
linux /vmlinuz-linux-lts
initrd /intel-ucode.img
initrd /initramfs-linux-lts.img
options root=/dev/nvme0n1p2 rw quiet splash loglevel=3
$ nvim arch-zen.conf
# add the lines
title Arch Linux Zen
linux /vmlinuz-linux-zen
initrd /intel-ucode.img
initrd /initramfs-linux-zen.img
options root=/dev/nvme0n1p2 rw quiet splash loglevel=3