From a739151ebf0a7657266f114358c0fa16173e7f60 Mon Sep 17 00:00:00 2001 From: tomit4 Date: Sat, 25 Dec 2021 16:34:19 -0800 Subject: [PATCH] added troubleshooting notes for installing artix on asus tufbook --- artix_on_asus_tufbook.txt | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 artix_on_asus_tufbook.txt diff --git a/artix_on_asus_tufbook.txt b/artix_on_asus_tufbook.txt new file mode 100644 index 00000000..4d4145dc --- /dev/null +++ b/artix_on_asus_tufbook.txt @@ -0,0 +1,24 @@ +Use the live installation iso usb stick to boot into the live environment. + +Mount the nvme01p2 (your installed home partition) to /mnt (must be root) +su +mount /dev/nvme0n1p2 /mnt + +Chroot into it: +artix-chroot /mnt + +Then we need to make some adjustments + +nano /etc/default/grub +Change the GRUB_CMDLINE_LINUX_DEFAULT to "nvme_load=YES" +And update it: +sudo grub-mkconfig -o /boot/grub/grub.cfg + +Then: +nano /etc/mkinitcpio.conf +Change the Modules from an empty string to "vmd" +And also the line that has autodetect and block in it. Make sure that block is listed before autodetect in the line up. +And update it: +mkinitcpio -P + +And that's it, reboot, remove your installation media, and you're good.