this post was submitted on 13 Aug 2026
287 points (99.0% liked)

linuxmemes

32473 readers
1212 users here now

Hint: :q!


Sister communities:


Community rules (click to expand)

1. Follow the site-wide rules

2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack users for any reason. This includes using blanket terms, like "every user of thing".
  • Don't get baited into back-and-forth insults. We are not animals.
  • Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry of any kind will not be tolerated. This is an LGBTQ+-friendly community -- if that is a problem for you, you should leave.
  • 3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn, no politics, no trolling or ragebaiting.
  • Don't come looking for advice, this is not the right community.
  • 4. No recent reposts
  • Everybody uses Arch btw, can't quit Vim, <loves / tolerates / hates> systemd, and wants to interject for a moment. You can stop now.
  • 5. πŸ‡¬πŸ‡§ Language/язык/Sprache
  • This is primarily an English-speaking community. πŸ‡¬πŸ‡§πŸ‡¦πŸ‡ΊπŸ‡ΊπŸ‡Έ
  • Comments written in other languages are allowed.
  • The substance of a post should be comprehensible for people who only speak English.
  • Titles and post bodies written in other languages will be allowed, but only as long as the above rule is observed.
  • 6. (NEW!) Regarding public figuresWe all have our opinions, and certain public figures can be divisive. Keep in mind that this is a community for memes and light-hearted fun, not for airing grievances or leveling accusations.
  • Keep discussions polite and free of disparagement.
  • We are never in possession of all of the facts. Defamatory comments will not be tolerated.
  • Discussions that get too heated will be locked and offending comments removed.
  • Β 

    Please report posts and comments that break these rules!


    Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't remove France.

    founded 3 years ago
    MODERATORS
     

    TranscriptMeme format: Undertaker standing behind AJ Styles

    AJ styles caption: Stubborn process consuming too much memory.

    Undertaker caption: OOM Killer

    top 28 comments
    sorted by: hot top controversial new old
    [–] vinyl@lemmy.world 3 points 1 day ago

    heh one time I was compiling Linux kernel, I used full LTO with all 24 threads used for compilation, like within a minute of starting, it ate up all 48gb of ram before the oom killer could do anything about it and proceeded to lock up my system, since then I left 1 or 2 threads alone.

    True story:

    • doing research. About 100 ff tabs open.
    • about 50 emacs buffers open.
    • run script that goes roge.
    • oom killer kills emacs.

    me: YOU, SON OF A BIT**H!

    just go into system monitor, select processes, ctrl-a, right click end ___ processes. checkmate system.

    [–] mvirts@lemmy.world 8 points 1 day ago

    Thoughts and prayers go out to the innocent shell processes killed in the crossfire

    [–] Bismyth@piefed.social 13 points 2 days ago (2 children)

    Random but in Afrikaans, oom means uncle. Thought that was mildly humorous.

    [–] deathmetal27@lemmy.world 3 points 1 day ago

    Ah yes, the uncle killer that kills uncle processes.

    So an uncle process is the parent process' sibling process. Makes sense.

    [–] MonkderVierte@lemmy.zip 3 points 1 day ago* (last edited 1 day ago)

    Well, earlyoom maybe. Linux' own oom-killer is famously too slow to act, and can't work a long time then, because the PC is already in memory pressure limbo. And also often kills the wrong thing, prelockd and nohang also help against this.

    [–] massive_bereavement@fedia.io 29 points 2 days ago (1 children)

    I would rather change the meme to:

    "Yeah, with modern RAM settings, you don't need Swap."

    OOM killer lurking behind.

    [–] MonkderVierte@lemmy.zip 3 points 1 day ago* (last edited 1 day ago)

    You do need swap with Linux, no matter the amount of RAM. It works without any swap, but not well.

    [–] CameronDev@programming.dev 18 points 2 days ago (1 children)

    Except that most likely, it kills something completely unrelated instead.

    [–] palordrolap@fedia.io 8 points 2 days ago (3 children)

    It is now my head canon that it randomly chooses a memory location and kills whatever process owns it, repeating as necessary.

    The perverse logic of there being a greater chance of hitting a memory hog makes far too much sense.

    It can't actually be this though, can it?

    [–] lfox02@lemmy.blahaj.zone 2 points 1 day ago

    Eeny, meeny, miny- YOU

    [–] CameronDev@programming.dev 9 points 2 days ago (1 children)

    I believe, and I could be very wrong, that it kills the largest memory process. The problem is that it may not be the problematic process. You could have a well behaved DB that is using a stable 80%, and a runaway process that rapidly fills the remaining 20%, and OOM will kill the DB, and let the out of control process keep consuming memory until it becomes the largest. Then your DB is down and you don't known why.

    I like the idea of just killing processes at random though. Determinism is overrated.

    [–] Quetzalcutlass@lemmy.world 5 points 1 day ago (1 children)

    Go full Russian roulette and include the OOM killer itself in the list of targetable processes.

    [–] CameronDev@programming.dev 3 points 1 day ago (1 children)

    Oom killer is in the kernel, so that definitely would be exciting.

    The kernel handles memory, so it's only fair it takes a share of the blame!

    [–] black0ut@pawb.social 2 points 1 day ago* (last edited 1 day ago)

    It isn't.

    ~~On Linux, the OOM generally weighs 2 things, and based on those, starts killing processes until the system dies or goes back to life.~~

    ~~The 2 things it weighs are memory footprint and how recent the process is.~~

    ~~The reasoning is that, by killing a recently spawned process that is hogging a lot of memory, you will probably kill an unruly app that a user started and not a critical system component. Even in the case of servers with databases that use hundreds of GB of memory, it should in theory not kill them if there's a recent process that has quickly hogged a lot of ram.~~

    ~~Of course, it can still be a bit of a hit or miss (after all, it's a last resource before crashing, and you can't afford much complexity). But for the most part, it works well enough.~~

    Edit: I actually looked at the code. It doesn't check if the process is recent. I don't know where I read that it did. Maybe it was the OOM code for something else.

    There are still ways to mark an app as non oom killable, like a critical DB process. But it needs to be manually done.

    [–] eager_eagle@lemmy.world 15 points 2 days ago (1 children)

    the only times I had OOM killer kick in, the machine was already frozen for a long time trying to swap things in and out and whatnot. So I started using earlyoom - it'll just nuke that memory hogging process out of existence before it takes the whole machine down.

    [–] xthexder@l.sw0.com 1 points 2 days ago* (last edited 2 days ago) (1 children)

    That sounds to me like it's basically the same as turning off swap. I don't think oom killer activates until you fill up your swap as well.

    I guess it could still be useful since it's more tunable than the kernel oom killer.

    [–] eager_eagle@lemmy.world 7 points 2 days ago (1 children)

    it's not, because it takes swap usage into account, so you can benefit from swap without risking a frozen system

    [–] xthexder@l.sw0.com 1 points 2 days ago (1 children)

    I guess swap can still be useful for background browser tabs and apps. I haven't run swap on my machines for years now, so I can't really remember how and when it decides to start moving stuff there.

    The last few times I ran into OOM killer it's been from compiling/linking some huge project that used up 90% of my ram on its own... so I've probably been having a different experience than most people.

    [–] eager_eagle@lemmy.world 2 points 2 days ago (1 children)

    yeah, swap is definitely still useful and it gets used by the kernel well before the main memory is full

    [–] ScoffingLizard@lemmy.dbzer0.com 1 points 1 day ago* (last edited 1 day ago) (1 children)

    For what applications? Is it for people who don't have a lot if RAM? I have not had a swap partition in ages.

    [–] eager_eagle@lemmy.world 2 points 1 day ago

    For most things. The only exception I see is if you have really over dimensioned memory, or have a very predictable load so that having the extra reclaimable space won't make a difference.

    https://chrisdown.name/2018/01/02/in-defence-of-swap.html

    [–] rumschlumpel@feddit.org 4 points 2 days ago (1 children)

    I'll need to look into that again. At some point, OOM mostly annoyed me by killing Firefox while I my RAM wasn't quite full and everything was running smoothly, so I disabled it and never bothered again since then. But occasionally I do run into issues.

    [–] anonfopyapper@lemmy.world 4 points 2 days ago* (last edited 2 days ago) (1 children)

    Are you sure it was OOM? Just in case, run memtest.

    Also make sure to setup enough swap. Swap is literally almost free RAM. Sure it won't replace it, but on 8gb shitbox, having 32GB on swap really helps. Especially if swapping starts at 70% of ram usage.

    And zswap to make less writes to nvme and make it last longer.

    [–] FishFace@piefed.social 1 points 2 days ago

    It will have been systemd-oomd