cm0002@infosec.pub to Programmer Humor@programming.dev · 2 months agoClosing programsinfosec.pubimagemessage-square150fedilinkarrow-up1783
arrow-up1783imageClosing programsinfosec.pubcm0002@infosec.pub to Programmer Humor@programming.dev · 2 months agomessage-square150fedilink
minus-squaremarcos@lemmy.worldlinkfedilinkarrow-up9·2 months agoYeah, by default kill sends sigterm, and not kill the process at all. It’s the correct behavior, sending sigkill by default would be harmful. Now take a look at how killall worked in Solaris (before it adopted GNU).
Yeah, by default
killsends sigterm, and not kill the process at all.It’s the correct behavior, sending sigkill by default would be harmful. Now take a look at how
killallworked in Solaris (before it adopted GNU).