• TheBannedLemming@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    3 months ago

    I fully support Linux, but Firefox doesn’t deserve that kind of heat. Yes, the Mozilla Foundation has been in hot water over the press release describing the direction and implementation of AI into the browser. But compared to the competition they are still are far better then the rest.

  • jet@hackertalks.com
    link
    fedilink
    English
    arrow-up
    0
    ·
    3 months ago

    Graceful like closing a laptop and putting it in a backpack only to have windows refuse to shutdown and become a heater until it cooks the battery and ruins the screen…

      • baropithecus@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        3 months ago

        It absolutely isn’t. If a laptop lid is closed, it needs to be sleeping, period. No random updates, no search indexing. I’ve also had this happen after explicitly putting laptops into sleep AND closing the lid. No idea how Apple is the only company able to do this consistently.

  • da_cow (she/her)@feddit.org
    link
    fedilink
    arrow-up
    0
    ·
    edit-2
    3 months ago

    While the meme is very funny, it is technically incorrect. Linux has two major ways of terminating a process. When Linux wants a process to terminate execution (for whatever reason) it first sends the SIGTERM signal to the process, which basically “asks” the process to terminate itself. This has the advantage, that the process gets the chance to save its state in a way, that the execution can continue at another time. If the process however ignores the SIGTERM signal at some point Linux will instead forcefully terminate the execution using the SIGKILL signal. This represents what the image shows.

    Before someone gets mat at me: I know, that there are like 50 more Signals relevant to this, but wanted to keep it simple.