• 50 Posts
  • 233 Comments
Joined 2 years ago
cake
Cake day: December 27th, 2023

help-circle













    1. Boot live USB
    2. Find the correct partitions using lsblk (you may only need the root partition)
    3. Mount them (root goes on /mnt, others go within the root)
    4. chroot /mnt (if permission denied, run it with sudo)
    5. Search the logs or journals for the error (journald was the first to fail, maybe check its logs first)

    If you get errors like “no proc filesystem mounted”, then you also need to mount special filesystems before entering the chroot. Run these commands as root:

    mount /proc -t proc /mnt/proc
    mount /sys -t sysfs /mnt/sys
    mount /dev -t devtmpfs /mnt/dev