Hint: :q!
Sister communities:
* LemmyMemes: Memes
* LemmyShitpost: Anything and everything goes.
* RISA: Star Trek memes and shitposts
Community rules (click to expand)
1. Follow the site-wide rules
- Instance-wide TOS: https://legal.lemmy.world/tos/
- Lemmy code of conduct: https://join-lemmy.org/docs/code_of_conduct.html
2. Be civil
- Understand the difference between a joke and an insult.
- Do not harrass or attack members of the community *for any reason*.
- 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.
:::spoiler 4. No recent reposts
- Everybody uses Arch btw, can't quit Vim, and wants to interject for a moment. You can stop now.
:::
Please report posts and comments that break these rules!
Moderators
btw funny story since many comments mention NFS/CIFS:
I have a share mounted at /smb and the server sometimes just dies so when I want to unmount it I run umount /smb but my shell (zsh) hangs after typing umount /sm and the b doesn't even show
I guess zsh does a kind of stat() on everything you type but bash came to save the day
I don't know if clean ZSH does it, but if you have the zsh-syntax-highlighting plugin, it tests if the path you're typing exists every time you edit the line.
https://youtu.be/Fow7iUaKrq4
Sigterm: "End this process or next time I bring my -9"
My tec-9
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.
Well, with linux you get the option of sending mixed signals through the use of varying count of guns. I find 9 to be highly effective.
Deleted by author
Next, you'll tell me I *shouldn't* get all my news from memes!
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.
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.
oh, that's good to know! iirc that's the same reason it happens on windows too
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.
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.
Add a -f to your umount and you can clear up those blocked processes. Sometimes you need to do it multiple times (seems like it maybe only unblocks one stuck process at a time).
When you mount your NFS share you can add the "soft" option which will let those stuck calls timeout on their own.
Because that's better for the software, Linux however kills it outright when it doesn't respond at all. Windows just... Waits. And you can't really hardkill the processes from the task manager. Or at last my last knowledge is that.
You can easily make a program unkillable (or to be more precise untermable) on Linux. Here's a simple bash script that will do that.
League of Legends captures and discards the ALT-F4 keystroke combination.
Microsoft trusts app developers to use Microsoft's standards (such as terminating the process when a close message is received) and they shouldn't. App developers like Riot have taken advantage of this trust and tuned their apps to act differently than expected, and include code which makes the app minimize to the system tray instead, or force the user to answer questions ("Are you SURE you want to close?"), or do nothing at all.
It should be punishable by death.
I mean, "are you sure" is useful... sometimes
Linux programs can also capture signal calls. They usually only capture sigints so that they can close gracefully, but theoretically you could also capture a sigkill.
You cannot catch SIGKILL.
https://stackoverflow.com/questions/2541597/how-to-gracefully-handle-the-sigkill-signal-in-java/2541618#2541618
Thanks!
Deleted by author
Hmmmm...
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.
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.
My problem with Windows is that when I want to eject a USB drive, Windows refuses to do so, refuses to tell me what program is apparently still using the drive, and certainly refuses to kill that program. *I am removing the drive.* I can't just not remove it!
I've found that in those cases its usually explorer that's the culprit. Just having the removable drive open in explorer is enough to keep windows from being able to unmount the drive.
The worst part is that with Quick Removal it's pretty much always safe to just remove it
Okay, yes. This fucking sucks and it happens all the time on Windows.
At that point, you need to live dangerously and just yank it.
That's how the task manager does it.
There's third party alternatives that do it like Linux does it
SuperF4 was my savior when I tried playing modded FalloutNV.
Doesn't taskkill /force also do so for the most part? Except maybe a system protected service or something. Haven't tried it on those.
yes, but you need to make sure you type the EXEs name in correctly instead of just clicking on it and killing it that way
Typing “kill -9” into a terminal is the equivalent to breaking out the acetylene torch when a nut won’t budge
Can't be tight if it's liquid
Unless it is nfs unmount on down server. Or failed disk...
Bigger fish to fry at that point bub
How the OOM Killer asks a process to terminate:
*indiscriminate spraying*
This is entirely wrong
Lol yes oh so wrong.
Wait until you find out about taskill /F /IM explore.exe
Deleted by author
“Userid 1000 will shut down in 2 minutes”
Or whatever it says
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)
I was just using it as an example against the 2nd image
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().
Never used kill -9. What's the difference between that and taskkill. I usually used taskkill /pid processiwanttokill.exe /f
Kill -9 is a command on Unix and Linux to send signal 9 (SIGKILL) to a process. That's the version of kill that is the most reliable and has immediate effect.
Taskkill is a Windows command line program. I believe that taskkill /f uses the TerminateProcess() API. This is more forceful than the End Task button on the Task Manager. There is a different End Process button on the Task Manager that does use TerminateProcess().
Is the 9 pertaining to permissions like chmod uses them? I'll have to look it up sometime. Been awhile since I've ever actually needed to force quit something in a Linux os
No, it's just the number of a specific signal.
https://www.man7.org/linux/man-pages/man7/signal.7.html
Thanks for that, I'll have a ganter. Need to spin up a new VM soon and figure out a new distro to play with. Been slacking on exploring new things. Mostly only played with Yellow dog (small enough to dual boot on a PS3 with 512mb of ram back in the day), Ubuntu, Debian for other things. Likely will look for something that will work well for a media server.
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
I always go straight for the SIGKILL
Every time you SIGKILL, a poorly-drawn penguin dies!
Some software: fork()
Me: Welcome to the process gauntlet loser, better not hang for a millisecond or you are dead and gone.
xkill
is one of my favorite commandsBeware the floating X , you don't want to missclick what you're killing lmao
Is there a Wayland equivalent?
Open the process list in your system monitor of choice, right click, signal, sigkill.
You can also open a monitor and use top or any variant to detect the prices number and manually
kill -KILL number
I really want the convenience of binding xkill to a key, which I can use to double tap programs like the undead zombie they've become.
Deleted by author
xkill isn't a function of Wayland.
Dunno, create a script that uses a program to get the process number of the current active window or the window the mouse is hovering, and then kill that? Bind that script inor a key with whatever program and voilá.
It's more involved sure but there's your option.
Great idea, now I just need to know how to do that.
I dunno; I sadly can't use Wayland yet bc I have Nvidia
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.
Good to know; I'll check it out!
idk if this could be subjective, but what do you mean by upstream here? Does that mean it’s included in most distros?
Yep. Most modern distros should be providing the 555 driver by now.
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.
Do you have enough swap allocated to your linux machine? I found that my GUI froze frequently due to not having enough of it when the computer was under heavy load.
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.
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.
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.
It definitely creeps up every once in a while on my Windows computer. It's really not a common occurrence and only happens when I'm doing something that's not recommended.
most distros have something, yeah, generally called [something] monitor
Try ctrl+shift+ESC
And remember, there are customizable hotkeys, just explore the settings
I've heard those quick keys a thousand times but my brain has determined that it is not necessary information for me to retain.
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
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.
both OS ask a process to end nicely? Then force closing in windows is with task manager or kill -9 in linux
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
Skill issue.
Enters the chat
I've honestly not had this problem on windows since Windows 8.
It even kills threads currently executing a system call! The brutality!
Never even returned to userspace…
KDE now too
KDE can murder windows instantly (you have to set a shortcut), or you can also just send SIGKILL to the process
ps aux | grep
killall
works great for this.At that point you can just hard restart as well. Most motherboards accept 10 to 15 seconds of power button as "my OS is fucked please help" and restart the machine for you.
They also accept pulling the power cord out as "oh no" and shutdown for you!
The most I work with restart, but I think you can configure it in the bios.
killall just kills all instances of a program, not everything.
and also, long pressing the power button should just shut it down, no?
kill -9 $(pidof