Hello, not much of a Linux user (situations like this are why)…but long story short, I’m trying to rehab a ROG PC from 2018.

I made a bootable USB of the current Mint distro, but booting leads to a black screen. I tried compatibility mode, but the boot process hangs on “EFI stub: Measured initrd data into PCR 9”

The PC came with an Nvidia 2080, but it’s actually a 980ti. Also there isn’t integrated graphics here. Any troubleshooting advice would be cool

  • FauxLiving@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    5 days ago

    Sorry you’re having such annoying problems so early in the process, I know it’s frustrating… Most people at least get to their DE before having problems at least!

    Try https://www.system-rescue.org/

    It’s not a distro that you’ll use day-to-day, but it’s a great live environment to keep on a USB. It boots on basically everything, has a lightweight DE and a ton of applications to diagnose and fix most systems.

    Importantly for us is that it’ll let us see if maybe Mint is doing something funky with their bootloader options. If you can’t boot into sysrescue it’s likely something we can fix in the UEFI.

    Just in case you’re not already using it. Instead of writing the images to a USB drive, you can write a ventoy (https://www.ventoy.net/en/index.html) image the USB drive. It’ll have a partition where you can just put your iso files and it’ll boot to a menu where you can choose which iso image you want to boot to. It’ll saves a lot of time and USB drives to have something like this.

    Keep at it, it’s frustrating at first, but it’s worth it.

    • LazerDickMcCheese@sh.itjust.worksOP
      link
      fedilink
      arrow-up
      0
      ·
      5 days ago

      You weren’t kidding, ventoy is more efficient. What’s the expected system rescue behavior? I went through a couple menus and ended up at a terminal window. ‘startx’ gets me to a desktop. Assuming that’s how it should operate, what’s next to get this machine running properly?

      • FauxLiving@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        5 days ago

        Ventoy rocks, everyone should use it.

        That is the expected behavior for sysrescuecd, it dumps you into a terminal because that’s enough for most tasks but if you run startx you get a de (xfce, I think).

        Ok, so that means this is something specific to how Mint is doing things.

        How far in the boot process do you get? Ideally, you don’t need to use compatibility mode because your laptop supports UEFI. Just stick to that option. As long as you don’t have

        Does GRUB load? This screen:

        It sounds like you do, since you’re able to try nomodeset. If you have an NVIDIA gpu, you can also try nouveau.noaccel=1 in the boot options.

        Going through their Installation Guide, the last thing Mint recommends is to try to install an older version, and then upgrade via the package manager. You can pick the iso with the DE you want here: https://www.linuxmint.com/download_all.php I’d try installing 21

        • LazerDickMcCheese@sh.itjust.worksOP
          link
          fedilink
          arrow-up
          0
          ·
          edit-2
          4 days ago

          Mint 21 works! I just got to the desktop environment…and guidance from here?

          Edit: I went ahead with the installation. A clean erase and rebuild. The computer didn’t appreciate that. First restart took me to a hanging ROG logo. A second restart took me to GRUB then a black screen

          • FauxLiving@lemmy.world
            link
            fedilink
            arrow-up
            0
            ·
            edit-2
            4 days ago

            Ah, just saw edit2.

            Are you saying that there are two options in GRUB one works and the other doesn’t?

            If so, this is probably the easiest way: https://wiki.archlinux.org/title/GRUB/Tips_and_tricks#Recall_previous_entry

            If it’s multiple options in a menu before you get to GRUB (i.e. there are multiple boot devices), you can edit the order with efibootmgr (https://wiki.archlinux.org/title/Unified_Extensible_Firmware_Interface#efibootmgr).

            This will show you the boot options. You have to run this as root (using sudo)

            efibootmgr --unicode
            

            This will change the boot order

            efibootmgr --bootorder XXXX,XXXX --unicode
            

            You can remove unwanted entries with

            efibootmgr --delete-bootnum --bootnum XXXX --unicode
            

            Make sure you use the full 4 digit number and verify that you’re deleting the right one. You can add an entry back, but it is tedious to explain.

            • LazerDickMcCheese@sh.itjust.worksOP
              link
              fedilink
              arrow-up
              0
              ·
              4 days ago

              Just to clarify, none of the options “work.” But ‘Advanced options for Linux Mint 21’ > ‘recovery mode’ gives me the option to ‘Resume normal boot’. And for whatever reason, that works when a normal boot (without extra steps) doesn’t.

              • FauxLiving@lemmy.world
                link
                fedilink
                arrow-up
                0
                ·
                4 days ago

                You’re using GRUB: https://wiki.archlinux.org/title/GRUB

                There’s a .cfg file in your EFI system partition, sometimes mounted on /boot. /boot/grub/grub.cfg has the settings for the items in that menu. If you can figure out what works about the recovery mode (it’s probably just launching with no kernel parameters), then you can edit the default one.