0x2d@lemmy.ml to 196@lemmy.blahaj.zone · 9 months agorulelemmy.mlimagemessage-square44fedilinkarrow-up1280arrow-down10
arrow-up1280arrow-down1imagerulelemmy.ml0x2d@lemmy.ml to 196@lemmy.blahaj.zone · 9 months agomessage-square44fedilink
minus-squareI_like_cats@lemmy.onelinkfedilinkarrow-up29·9 months agoIt’s easy. Just open up a terminal and type kill $PID (Replace the $PID with the process id of the process) if you don’t know the process id you can do killall process_name If these don’t work you can add a -9 to banish them and give them no chance to resist
minus-squareSoonaPaana@lemmy.worldlinkfedilinkarrow-up5·9 months agoAlso please refresh my memory on how to find the process ID
minus-squareI_like_cats@lemmy.onelinkfedilinkarrow-up11·9 months agoYou can do ps aux | grep -i <part of process name> and the PID is in the second column of the output. However for this use case I recommend a process manager like htop or btop
minus-squareassaultpotato@sh.itjust.workslinkfedilinkarrow-up5·9 months agoI use ps -aux | grep $EXECUTABLE
minus-squareRefurbished Refurbisher@lemmy.sdf.orglinkfedilinkarrow-up2·9 months agohtop or any process monitor will tell you.
minus-squareKrzd@lemmy.worldlinkfedilinkarrow-up1·9 months agotop for Ubuntu at least will show you the top processes, I think sorted by averaged CPU usage.
minus-squareunalivejoy@lemm.eelinkfedilinkEnglisharrow-up5·9 months agoSimilarly, $$ is the current PID, $PPID is the parent PID. (Bash)
minus-squareHappyFrog@lemmy.blahaj.zonelinkfedilinkarrow-up3·9 months agoSo ‘kill -9 $$’ is just suicide?
minus-squareunalivejoy@lemm.eelinkfedilinkEnglisharrow-up5·9 months agoWith suicide, you have a chance to get your affairs in order. kill -9 $$ is hiring an assassin to kill you and not tell you when it will happen. It happens suddenly without warning.
minus-squareAnUnusualRelic@lemmy.worldlinkfedilinkarrow-up4·9 months agoYou probably want to get on the habit of using pkill instead of killall in case you’re ever on a different system. You could have a surprise.
It’s easy. Just open up a terminal and type
kill $PID
(Replace the $PID with the process id of the process) if you don’t know the process id you can do
If these don’t work you can add a
-9
to banish them and give them no chance to resistAlso please refresh my memory on how to find the process ID
You can do
ps aux | grep -i <part of process name>
and the PID is in the second column of the output. However for this use case I recommend a process manager like htop or btop
I use
ps -aux | grep $EXECUTABLE
htop or any process monitor will tell you.
Pidof
top for Ubuntu at least will show you the top processes, I think sorted by averaged CPU usage.
Similarly,
$$
is the current PID,$PPID
is the parent PID. (Bash)So ‘kill -9 $$’ is just suicide?
With suicide, you have a chance to get your affairs in order.
kill -9 $$
is hiring an assassin to kill you and not tell you when it will happen. It happens suddenly without warning.You can type
seppuku
for thatYou probably want to get on the habit of using pkill instead of killall in case you’re ever on a different system. You could have a surprise.