280
rule (lemmy.ml)
submitted 7 months ago by [email protected] to c/[email protected]
top 44 comments
sorted by: hot top controversial new old
[-] [email protected] 43 points 7 months ago* (last edited 7 months ago)
[-] [email protected] 29 points 7 months ago

I thought that removes the French language pack?

[-] [email protected] 12 points 7 months ago
[-] [email protected] 8 points 7 months ago

yeah it probably does

[-] [email protected] 5 points 7 months ago

No, that's rm -fr /*

[-] [email protected] 5 points 7 months ago

Pedant time: That actually wouldn’t kill any process that’s already loaded in memory and running. Unless the process attempts to access something else from the filesystem and crashes.

[-] [email protected] 29 points 7 months ago

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

killall process_name

If these don't work you can add a -9 to banish them and give them no chance to resist

[-] [email protected] 5 points 7 months ago

Similarly, $$ is the current PID, $PPID is the parent PID. (Bash)

[-] [email protected] 3 points 7 months ago

So 'kill -9 $$' is just suicide?

[-] [email protected] 5 points 7 months ago

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.

[-] [email protected] 3 points 7 months ago

You can type seppuku for that

[-] [email protected] 5 points 7 months ago

Also please refresh my memory on how to find the process ID

[-] [email protected] 11 points 7 months ago

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

[-] [email protected] 5 points 7 months ago

I use ps -aux | grep $EXECUTABLE

[-] [email protected] 2 points 7 months ago

htop or any process monitor will tell you.

[-] [email protected] 1 points 7 months ago

top for Ubuntu at least will show you the top processes, I think sorted by averaged CPU usage.

[-] [email protected] 1 points 7 months ago
[-] [email protected] 4 points 7 months ago

You 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.

[-] [email protected] 28 points 7 months ago

Uninterruptible sleep makes this harder than it looks

[-] [email protected] 19 points 7 months ago
[-] [email protected] 3 points 7 months ago

I remember that kid! She was friends with that boy named Sue, right? Both of them always hanging out with little Bobby tables?

[-] [email protected] 18 points 7 months ago

xkill (assuming GUI and not headless/remote)

xkill lets you click on any X application, at which point it will close the X server connection. In most cases the client application will self-terminate at the loss of the X connection. It's wonderfully straightforward.

[-] [email protected] 5 points 7 months ago

True, xkill is super easy to use. Who needs a task manager, if you can just click on the program you want to close.

[-] [email protected] 14 points 7 months ago* (last edited 7 months ago)

KWin has this shortcut (Ctrl + Win + Esc) that turns your cursor into a skull that kills the windows you click on

[-] [email protected] 4 points 7 months ago* (last edited 7 months ago)

For me its Ctrl+Alt+Esc that does it, Ctrl+Meta+Esc just highlights where my mouse cursor is.

[-] [email protected] 2 points 7 months ago

Could be a distro related difference ^^

[-] [email protected] 3 points 7 months ago
[-] [email protected] 3 points 7 months ago

Yes, in Wayland it's built into kwin.

[-] [email protected] 2 points 7 months ago

It does work for me at least

[-] [email protected] 7 points 7 months ago
[-] [email protected] 1 points 7 months ago
[-] [email protected] 5 points 7 months ago

I usually just scream into my keyboard

[-] [email protected] 4 points 7 months ago
[-] [email protected] 3 points 7 months ago

immediately subscribed lol

[-] [email protected] 4 points 7 months ago

Just open htop, find the process you wish to kill. Press F9,9,enter.

Done task killed

[-] [email protected] 4 points 7 months ago
ps -e | grep app
kill id
[-] [email protected] 4 points 7 months ago

pkill

Or what I prefer:

pkill -f <process/programm name>

[-] [email protected] 2 points 7 months ago

htop is how I usually send signals. TUIs are fun!

[-] [email protected] 2 points 7 months ago

at least on GNOME you can just open the system monitor and use it like task manager

[-] [email protected] 1 points 7 months ago

Uh, I'm not a cool terminal god, I just know how to use vim, so xkill is my way.

[-] [email protected] 2 points 7 months ago

I use the terminal on a daily basis. My job involves writing software for terminals.

Ctrl+Meta+Esc in KDE is still how I kill a misbehaving graphical app.

[-] [email protected] 1 points 7 months ago

sudo init 0

[-] [email protected] 1 points 7 months ago

I prefer matricide: sudo kill -9 1

[-] [email protected] 1 points 7 months ago
this post was submitted on 17 Feb 2024
280 points (100.0% liked)

196

16240 readers
1814 users here now

Be sure to follow the rule before you head out.

Rule: You must post before you leave.

^other^ ^rules^

founded 1 year ago
MODERATORS