787
submitted 3 months ago by Kory@lemmy.ml to c/linuxmemes@lemmy.world

Yes yes, I REALLY want to terminate that process and I am very sure about it too, ty.

top 50 comments
sorted by: hot top controversial new old
[-] bjoern_tantau@swg-empire.de 168 points 3 months ago

And as always with this meme: Both Windows and Linux can ask a process nicely to terminate or kill it outright. And the default for both is to ask nicely.

[-] Empricorn@feddit.nl 67 points 3 months ago

Next, you'll tell me I shouldn't get all my news from memes!

[-] WhyJiffie@sh.itjust.works 17 points 3 months ago* (last edited 3 months ago)

on windows a process can get in a state so that it is impossible to make it go away, even with process explorer or process hacker. mostly this also involves the bugged software becoming unusable.

I encounter such a situation from time to time. one way it could happen is if the USB controller has got in an invalid state, which one of my pendrives can semi-reliably reproduce. when that happens, any process attempting to deal with that device or its FS, even the built-in program to remove the drive letter, will stop working and hang as an unkillable process.

[-] zea_64 28 points 3 months ago

Linux has that issue too. A process in an uninterruptible blocking syscall stays until that syscall finishes, which can be never if something weird's going on.

[-] WhyJiffie@sh.itjust.works 3 points 3 months ago

oh, that's good to know! iirc that's the same reason it happens on windows too

load more comments (1 replies)
[-] bjoern_tantau@swg-empire.de 13 points 3 months ago* (last edited 3 months ago)

I've seen that on Linux as well. Funnily enough also with faulty file systems. I think NFS with spotty wifi for one.

Oh, and once with a dying RAID controller. That was a pain in the ass. At that point I swore to only ever do RAID in software.

[-] WhyJiffie@sh.itjust.works 3 points 3 months ago

oh yeah now that you say, SMB/CIFS mounted share if connection is no more. when I experienced this, it was temporary though, because there's a timeout which is half (or double?) of the configurable reconnection timeout. but now that I think of it, I'm not sure if it made it unkillable.

load more comments (1 replies)
[-] Zozano@lemy.lol 6 points 3 months ago

Windows can kill a process outright.

Hmmmm...

[-] linearchaos@lemmy.world 14 points 3 months ago

Taskkill /f is reasonably close to sudo kill -9

Hitting the X in Windows and hitting the X in Linux both cause the application to start a save yourself routine. From the OS standpoint they're not far off.

The problem is we have a lot of confirmation bias in windows because every time we want to close an application that's not working, that save yourself call has to sit around for a hellaciously long time out followed by a telemetry call so that Microsoft can track that it happened.

It's pretty rare that Linux apps don't just close.

[-] Bishma@discuss.tchncs.de 50 points 3 months ago

Sigterm: "End this process or next time I bring my -9"

[-] Vitaly@feddit.uk 7 points 3 months ago* (last edited 3 months ago)
[-] mlg@lemmy.world 44 points 3 months ago

Actually no, it's just that the programs on Linux usually accept SIGINT, SIGTERM, etc pretty gracefully. Some are even smart enough to handle it on a thread hang. SIGKILL is last resort.

Lots of Windows applications like to ignore the close request because Windows doesn't have signals and instead you can only pass a window name to request exit which is the same as clicking the close button.

So any hung software won't respond and you have to terminate it.

[-] possiblylinux127@lemmy.zip 43 points 3 months ago
[-] ILikeBoobies@lemmy.ca 7 points 3 months ago* (last edited 3 months ago)

“Userid 1000 will shut down in 2 minutes”

Or whatever it says

[-] possiblylinux127@lemmy.zip 4 points 3 months ago

I haven't seen that in a while. When you see that it means either that the service didn't handle the terminate signal correctly or that is is busy doing something. (Sometimes both)

load more comments (1 replies)
load more comments (3 replies)
[-] cupcakezealot 21 points 3 months ago

you forgot that you have to spend about 2 minutes with windows "searching for a solution" (who knows what that does??) and then another minute reporting it to microsoft

load more comments (1 replies)
[-] whodatdair 18 points 3 months ago

Typing “kill -9” into a terminal is the equivalent to breaking out the acetylene torch when a nut won’t budge

[-] lemming741@lemmy.world 15 points 3 months ago

Can't be tight if it's liquid

[-] dukatos@lemm.ee 14 points 3 months ago

Unless it is nfs unmount on down server. Or failed disk...

[-] RubberElectrons@lemmy.world 7 points 3 months ago

Bigger fish to fry at that point bub

[-] Xylight@lemdro.id 11 points 3 months ago

both OS ask a process to end nicely? Then force closing in windows is with task manager or kill -9 in linux

[-] drspod@lemmy.ml 11 points 3 months ago

How the OOM Killer asks a process to terminate:

indiscriminate spraying

[-] Magister@lemmy.world 9 points 3 months ago* (last edited 3 months ago)

mainly wrong, by default kill send a SIGTERM, you can try SIGINT or SIGQUIT too, and in the end SIGKILL of course. Same in windows there is different way

[-] SpaceNoodle@lemmy.world 10 points 3 months ago

I always go straight for the SIGKILL

[-] knexcar@lemmy.world 15 points 3 months ago
[-] SpaceNoodle@lemmy.world 10 points 3 months ago

Every time you SIGKILL, a poorly-drawn penguin dies!

[-] SaharaMaleikuhm@feddit.org 4 points 3 months ago* (last edited 3 months ago)

Some software: fork()
Me: Welcome to the process gauntlet loser, better not hang for a millisecond or you are dead and gone.

[-] mkwt@lemmy.world 9 points 3 months ago

TerminateProcess() is pretty reliable, but it doesn't form part of the C signals stack on Windows like kill -9. So for instance, if you're doing process control on Python, you need to use a special Windows-only API to access TerminateProcess().

load more comments (6 replies)
[-] MajinBlayze@lemmy.world 8 points 3 months ago

I feel like I've had the opposite experience in the gui (maybe a KDE issue?) closing gui windows frequently lock up, and I find I frequently have to drop to the command line in order to properly kill some programs

[-] fushuan@lemm.ee 2 points 3 months ago

That's because the end proces of the GUI sends a sigint, which does jack shit if the program hangs, you only archieve for a higher parent process to obtain it until it can off itself gracefully. You need to right click the process and send a sigkill signal to emulate the command line.

[-] antifa@infosec.pub 8 points 3 months ago

xkill is one of my favorite commands

[-] Zozano@lemy.lol 2 points 3 months ago

Is there a Wayland equivalent?

[-] antifa@infosec.pub 3 points 3 months ago

I dunno; I sadly can't use Wayland yet bc I have Nvidia

[-] Zozano@lemy.lol 8 points 3 months ago* (last edited 3 months ago)

I don't know if you heard, but the Nvidia issues are solved (mostly).

The issue most people had was with Explicit Sync, which was patched in the proprietary Nvidia driver 555 which is upstream on most distros.

[-] antifa@infosec.pub 2 points 3 months ago

Good to know; I'll check it out!

load more comments (2 replies)
load more comments (7 replies)
load more comments (1 replies)
[-] LesserAbe@lemmy.world 7 points 3 months ago

Is there some Linux equivalent to "ctrl + alt + del?" I get that killing a process from the terminal is preferred, but one of the few things I like about windows is if the GUI freezes up, I can pretty much always kill the process by pressing ctrl+alt+del and finding it in task manager. Using Linux if I don't already have the terminal open there are plenty of times I'm just force restarting the computer because I don't know what else to do.

[-] phlegmy@sh.itjust.works 11 points 3 months ago

Ctrl+alt+F1/F2/F3 etc.
It lets you switch to another terminal session, where you can use something like top/htop for a commandline equivalent to task manager.

[-] RecluseRamble@lemmy.dbzer0.com 5 points 3 months ago

That's what I don't get about what they said above. If the Windows desktop freezes up, Task Manager won't open either (happened to me quite some times over the years - less so since they moved to the NT kernel though). What you mentioned always works short of kernel panic.

[-] LesserAbe@lemmy.world 3 points 3 months ago

I'd say it's been over a decade since I've had an issue where windows task manager didn't work. Maybe I'm not using exciting enough programs.

load more comments (1 replies)
[-] Seqularise@lemmy.world 4 points 3 months ago

Try ctrl+shift+ESC And remember, there are customizable hotkeys, just explore the settings

[-] fleabomber@lemmy.world 3 points 3 months ago

I've heard those quick keys a thousand times but my brain has determined that it is not necessary information for me to retain.

[-] 1rre@discuss.tchncs.de 3 points 3 months ago* (last edited 3 months ago)

most distros have something, yeah, generally called [something] monitor

load more comments (1 replies)
[-] kekmacska@lemmy.zip 2 points 3 months ago
[-] jwt@programming.dev 4 points 3 months ago

kill -9 $(pidof )

[-] boredsquirrel@slrpnk.net 2 points 3 months ago
[-] zea_64 3 points 3 months ago* (last edited 3 months ago)

KDE can murder windows instantly (you have to set a shortcut), or you can also just send SIGKILL to the process

load more comments
view more: next ›
this post was submitted on 29 Oct 2024
787 points (100.0% liked)

linuxmemes

22686 readers
753 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 will not be tolerated.
  • These rules are somewhat loosened when the subject is a public figure. Still, do not attack their person or incite harrassment.
  • 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. Even if you watch it on a Linux machine.
  • 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.
  •  

    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 2 years ago
    MODERATORS