this post was submitted on 23 Jun 2026
21 points (95.7% liked)
Linux
14137 readers
133 users here now
A community for everything relating to the GNU/Linux operating system (except the memes!)
Also, check out:
Original icon base courtesy of lewing@isc.tamu.edu and The GIMP
founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
The function I used most often aside from the usual sequence is Alt-SysRq-F. This runs
oomkillerto SIGKILL what would appear to be the process hogging the most memory. That was usually enough to get control back from an agonizingly sluggish system caused by hitting the swapspace. I didn't need it anymore after I upgraded to 48GB of RAM.Another way to remember the classic mnemonic, it's "busier" in reverse, after holding down for a second the Alt and SysRq keys (which may require a function key combo on some keyboards).
You should check ahead of time whether the value of
/proc/sys/kernel/sysrqis not zero to be sure the Sysrq functions are enabled. If not, then in/etc/sysctl.d/99-sysctl.confyou can add the linekernel.sysrq = 1to enable all features, or a higher number to enable select features.Thanks, I'll try this next time