this has happened on my device a lot of times now, whenver I start my laptop, I have installed arch on it. can anyone please tell me what is it and how to fix this? and I am a newbie.

  • Aniki 🌱🌿@lemm.ee
    link
    fedilink
    arrow-up
    6
    arrow-down
    1
    ·
    edit-2
    1 year ago

    You have a kernel panic.

    If you’re a noobie, figure out why.

    Place to start: What is your kernel doing when it crashes?

    Tip: System logs are your friend.

    Hint: recovery root.

      • Last@lemmy.world
        link
        fedilink
        arrow-up
        5
        arrow-down
        3
        ·
        1 year ago

        Paste your log into ChatGPT and ask it for help. I did the same thing last week and it worked.

        • Makussu@feddit.de
          link
          fedilink
          arrow-up
          3
          arrow-down
          1
          ·
          1 year ago

          This is bad advice tho. Friend of mine did the same and ChatGPT said some bullshit and he locked himself out of gui. Had to help him to get it back. Please dont just copy paste anything from ChatGPT

          • Last@lemmy.world
            link
            fedilink
            arrow-up
            1
            ·
            edit-2
            1 year ago

            I think it even warns you itself. The things it gets right outweigh the things it gets wrong.

  • jlsalvador@lemmy.ml
    link
    fedilink
    arrow-up
    3
    ·
    1 year ago

    syscall -> asm -> page_fault

    This a native machine code execution that crashed in your system. Could be an instruction that your CPU doesn’t understand (because the instruction is newer than your CPU, example: AVX512), or because your hardware returns an error when this instruction is executed (RAM issues?). Too difficult for me to understand this ASM crash.

    • picl0_pabasso@lemmy.sdf.orgOP
      link
      fedilink
      arrow-up
      1
      ·
      1 year ago

      I don’t think it’s some cpu issue because I used arch for sometime on my another laptop which is poorer in terms of hardware and cpu than current one. But again I might be wrong, will try to understand if this happens again.

  • signofzeta
    link
    fedilink
    arrow-up
    2
    ·
    1 year ago

    Does it say anything above that? Look for the last line written in plain English. That should be what Linux was trying to do before it panicked.

  • Krik@feddit.de
    link
    fedilink
    arrow-up
    3
    arrow-down
    1
    ·
    1 year ago

    The OS splits memory into pages and assigns the pages to applications. A page fault usually means one of two things:

    • hardware fault
    • programming error

    You can check your memory with Memtest86. Some LiveCDs come with it. If it’s a programs fault you can only try other software if possible.