After updating my PC today around 8pm, my PC locked itself in emergency mode, which I can’t get it out of.
Changing kernels does nothing, and neither does loading old snapshots.
I would post the results of Garuda-inxi but I can’t get that copied from my computer onto my phone to put here.
Here is a picture of the emergency mode screen that I’m talking about, it’s mentioning this error: failed to start Remount Root and Kernel File Systems. What does that mean? How do I do that?
Boot a live.iso and chroot into your system (and post your garuda-inxi from there) and then first check how much free disk space is available (may be root is full). If root is full, then create enough free space, for example by deleting old snapshots, clearing the cache and removing other files that are no longer needed. Then try to repeat the update (from the live environment):
Not sure if this is helpful, but the chroot command is designed to “change root”. This means that if you’re booting off the live ISO, then you need to tell it to change the root to your BTRFS partition, so that further commands now operate on that storage location, and NOT on the iso.
Generally speaking, you’ll need to mount your BTRFS partition onto a directory, then issue the chroot command to the directory where you mounted it. For example, if you mounted /dev/nvme0n1p2 (the partition of your BTRFS install), onto /mnt/hd (that directory needs to exist first before you mount the drive there), and then use chroot /mnt/hd this will then change your root (i.e., / path) to /mnt/hd. Good luck!