Omarchy Linux

I started using Omarchy after listening to this interview. I am really impressed since i became more productive after the initial Hotkeys learning curve.

I think I might even be able to contribute to this project. I will keep this page here as a reference with the modifications i will be doing to the default installation

Create a USB for both win and linux

lsblk

sudo fdisk /dev/sdX

o -> n -> p -> default -> default -> w ( write)

sudo pacman -S dosfstools

sudo mkfs.fat -F 32 /dev/sdX1

sudo mount /dev/sdX1 /mnt/usbdata

Fix unbootable machine:

Boot from Arch live USB:

  1. Check partitions:lsblk
  1. Mount your system:mount /dev/nvme0n1pX /mnt # Your root partition mount /dev/nvme0n1p1 /mnt/boot # EFI partition
  1. Chroot:arch-chroot /mnt
  1. Reinstall kernel and Limine:pacman -Syy pacman -S linux linux-headers limine limine-deploy /dev/nvme0n1 # Deploy to disk (not partition)
  1. Verify/fix Limine config at /boot/limine.cfg: nano /boot/limine.cfgMake sure the kernel path is correct, should look like: PROTOCOL=linux KERNEL_PATH=boot():/vmlinuz-linux
  1. Exit and reboot:exit umount -R /mnt reboot

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *