this post was submitted on 18 Jan 2024
976 points (97.7% liked)

Comic Strips

18708 readers
924 users here now

Comic Strips is a community for those who love comic stories.

The rules are simple:

Web of links

founded 2 years ago
MODERATORS
top 50 comments
sorted by: hot top controversial new old
[–] teft@lemmy.world 111 points 2 years ago (2 children)

Ctrl-shift-esc will open the task manager directly. None of that Carl alt del nonsense.

[–] buycurious@lemmy.world 74 points 2 years ago (10 children)

Ctrl-alt-del is meant to be a hard interrupt to the system.

Ctrl-shift-esc treats it like another task.

[–] Sheeple@lemmy.world 20 points 2 years ago

Interesting so that's why system performance gets wonky when task Manager is opened with CTRL+alt+Del

I'll keep that in mind when I wanna kill tasks but not disrupt performance

[–] jaybone@lemmy.world 6 points 2 years ago

I assume this terminology originally referred to an actual interrupt handled by a kernel interrupt handler, and half of the people in this thread have no idea what that means.

load more comments (8 replies)
[–] GBU_28@lemm.ee 20 points 2 years ago
[–] gnutrino@programming.dev 92 points 2 years ago (4 children)
[–] Sheeple@lemmy.world 30 points 2 years ago (2 children)

I don't even get why force shutting a program isn't the fucking default.

Because you run the risk of corrupting files.

[–] dandroid@dandroid.app 43 points 2 years ago (5 children)

It can be really dangerous for some programs. I don't know too much about Windows, but in Linux, if we try to close a program once, it sends SIGTERM (or SIGINT, I can't remember right now), which basically asks your program to stop. You program can receive that signal and finish things up and exit cleanly. But if your program is deadlocked and can't handle that right now, closing the program again sends it a SIGKILL, which is basically the OS saying, "Get fucked. You're done whether you like it or not."

[–] oce@jlai.lu 8 points 2 years ago (1 children)

It's not dangerous for programs, it's dangerous for files it may be editing, like not writing some ending characters that leaves the file in a state that cannot be opened by some applications.

[–] dandroid@dandroid.app 5 points 2 years ago

I didn't mean the programs were in danger. When this is done to some programs, it can cause bad things to happen to your computer.

[–] barsoap@lemm.ee 3 points 2 years ago* (last edited 2 years ago)

which is basically the OS saying, “Get fucked. You’re done whether you like it or not.”

Nah, the OS is not really saying anything. Definitely not to the program. It's more of a 1984 shot in the back of your head while you walk down a corridor kind of situation. Also it's not a gun your bits just vanish in the ether. Then it sends a death certificate to the parent, without further explanation.

Side note: Have you ever used killall? Was the standard way to send signals by name instead of PID before pkill. I found out the hard way that it does something rather different on other Unices.

load more comments (3 replies)
[–] cmnybo@discuss.tchncs.de 13 points 2 years ago
[–] hakunawazo@lemmy.world 6 points 2 years ago (2 children)
[–] barsoap@lemm.ee 3 points 2 years ago

The one thing they're missing, which honestly shouldn't happen on at least desktop distros, is the system becoming unresponsive under memory pressure because before the kernel decides to kill off anything it rather swaps its own data structures out to disk, grinding everything to such a crawl that it's indistinguishable from a complete freeze.

The solution is early OOM, which is more aggressive at killing things off and it honestly should be installed and activated by default.

load more comments (1 replies)
load more comments (1 replies)
[–] Zellith@kbin.social 38 points 2 years ago (1 children)

I prefer control & shift & esc.

load more comments (1 replies)
[–] jinarched@lemm.ee 36 points 2 years ago (2 children)

Ctrl-Shift-esc

You're welcome.

[–] Just_Pizza_Crust@lemmy.world 11 points 2 years ago* (last edited 2 years ago) (2 children)

As the fifth person to say that, I think the author may have baited you into writing this. It's sinilar to when someone misspells a word in the title of a TikTok video, as tons of well meaning people will comment on the error, thus generating attention.

[–] dual_sport_dork@lemmy.world 3 points 2 years ago

I see what you did, there.

load more comments (1 replies)
[–] shalafi@lemmy.world 7 points 2 years ago

Faster to open, doesn't send a system interrupt.

If all is well: CTRL+SHIFT+ESC

Stuck program needs a kick in the ass: CTRL+ALT+DELETE

[–] bulwark@lemmy.world 26 points 2 years ago* (last edited 2 years ago) (2 children)

Remember how Volkswagen got in trouble a few years back for faking emissions when the car detected it was being tested. It would interesting to see if something like that could exist with RAM and task manager.

[–] applebusch@lemmy.world 11 points 2 years ago (1 children)

It definitely can for the graphics card. I got a trojan one time that was mining crypto using 100% of the gpu causing it to heat up and blow the fan like crazy, and it stopped every time I opened the task manager.

I didn't even think of the possibility that a program could detect task manager.

Just keep task manager open and they cant do shit lol

[–] eating3645@lemmy.world 8 points 2 years ago (1 children)
[–] bulwark@lemmy.world 4 points 2 years ago

Lol I love this guy's channel. I thought of him as soon as I asked that question.

[–] a_wild_mimic_appears@lemmy.dbzer0.com 19 points 2 years ago (1 children)

For everyone who wants a better task manager, go to Microsofts Sysinternals Website and get Process Explorer. You're welcome.

[–] naticus@lemmy.world 3 points 2 years ago

Yeah, I hate how multi-process apps never really show their memory usage very well anymore in Task Manager. Been using Process Explorer since before Russinovich sold to Microsoft and it's easily been the best one I've used on Windows to get a better picture of what is going wrong.

[–] loudWaterEnjoyer@lemmy.dbzer0.com 18 points 2 years ago (4 children)

I'm running Linux but I thought CTRL, Shift and ESC is the shortcut for Task Manager

[–] swag_money@lemmy.world 11 points 2 years ago

it is! but you can also launch it from the ctrl alt delete menu

[–] sag@lemm.ee 5 points 2 years ago

You just thought?? I was damn sure

[–] shalafi@lemmy.world 5 points 2 years ago (2 children)

True, but CTRL+ALT+DEL sends a system interrupt in addition. Breaks a lot of deadlocks, hence why people think it's magic.

load more comments (2 replies)
load more comments (1 replies)
[–] BassaForte@lemmy.world 18 points 2 years ago (1 children)

Time to kill some child... processes

[–] Sheeple@lemmy.world 15 points 2 years ago (1 children)
load more comments (1 replies)
[–] AceFuzzLord@lemm.ee 13 points 2 years ago (1 children)

Yeah, windows task manager doesn't do shit if you are already low on resources. My desktop doesn't have a lot of resources to be used up and there have been a few times task manager is just as bad as the programs I want it to kill due to lack of resources.

[–] marcos@lemmy.world 11 points 2 years ago* (last edited 2 years ago) (2 children)

It will very gladly show you all the resources are being consumed by some service you don't need, can't uninstall or disable, and will just consume more resources by restarting if you terminate the process.

load more comments (2 replies)
[–] problematicPanther@lemmy.world 12 points 2 years ago (2 children)

what i really want, what i really need, is just a windows equivalent to xkill. window not responding? ctrl+alt+esc, click. it's dead along with its entire family.

[–] DragonOracleIX@lemmy.ml 4 points 2 years ago (2 children)

SuperF4? It hasn't been updated in years, but I haven't had any issues with it.

load more comments (2 replies)
load more comments (1 replies)
[–] mariusafa@lemmy.sdf.org 12 points 2 years ago

Everybody gangsta until kill -9 showsup

[–] otter@lemmy.ca 12 points 2 years ago (1 children)

Lol every time

I know it's just psychology (and any resource reallocation that happens when task manager opens) but it's still funny

[–] dual_sport_dork@lemmy.world 28 points 2 years ago

I have totally caught malware checking to see if task manager is running, and cooling it until it is closed. Some cryptocurrency mining trojans do this. You can verify it by using a tool other than task manager, e.g. System Explorer or Process Hacker. Usually they're not smart enough to poll for third party tools, so they'll quiet down when only task manager is opened and not when you're using any third party tools.

[–] thecookingsenpai@lemmy.world 10 points 2 years ago

I am still convince that soon or after they will discover an hidden function in Windows that overclock briefly every component when task manager is opened

[–] caseyweederman@lemmy.ca 7 points 2 years ago (5 children)
load more comments (5 replies)
[–] guyrocket@kbin.social 6 points 2 years ago

DAD'S HOME!!!

[–] shalva97@lemmy.world 3 points 2 years ago (1 children)

I have never opened task manager after I added second 16GB RAM stick. It just all works okay, I don't even have to close programs.

[–] ICastFist@programming.dev 7 points 2 years ago (1 children)

I see you don't use Chrome

load more comments (1 replies)
load more comments
view more: next ›