Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pkill -f doesn't work for process killing

I have this process running:

342 pts/2    T    0:00 sh -c sudo screen /usr/bin/python /usr/bin/btdownloadcurses "http://zoink.it/torrent/732A4A9B54B7E3A916C2835D936D985942F65A6D.torrent" --display_interval 20 --saveas "/srv/"
343 pts/2    T    0:00 sudo screen /usr/bin/python /usr/bin/btdownloadcurses http://zoink.it/torrent/732A4A9B54B7E3A916C2835D936D985942F65A6D.torrent --display_interval 20 --saveas /srv/
344 pts/2    T    0:00 screen /usr/bin/python /usr/bin/btdownloadcurses http://zoink.it/torrent/732A4A9B54B7E3A916C2835D936D985942F65A6D.torrent --display_interval 20 --saveas /srv/

I tried to run:

pkill -f http://zoink.it/torrent/732A4A9B54B7E3A916C2835D936D985942F65A6D.torrent

But the process still running.
How do I force kill the processes that contain: "http://zoink.it/torrent/732A4A9B54B7E3A916C2835D936D985942F65A6D.torrent" ?


Question as edited below:

ps ax | grep 'Momomoko.E01.140011.HDTV.H264.720p.mp4'

I want to kill all process that contain the above string.

I tried running the above line, and it returns three results:

  342 pts/2    T    0:00 sh -c sudo screen /usr/bin/python /usr/bin/btdownloadcurses "http://zoink.it/torrent/732A4A9B54B7E3A916C2835D936D985942F65A6D.torrent" --display_interval 20 --saveas "/srv/Momomoko.E01.140011.HDTV.H264.720p.mp4"
  343 pts/2    T    0:00 sudo screen /usr/bin/python /usr/bin/btdownloadcurses http://zoink.it/torrent/732A4A9B54B7E3A916C2835D936D985942F65A6D.torrent --display_interval 20 --saveas /srv/Momomoko.E01.140011.HDTV.H264.720p.mp4
  344 pts/2    T    0:00 screen /usr/bin/python /usr/bin/btdownloadcurses http://zoink.it/torrent/732A4A9B54B7E3A916C2835D936D985942F65A6D.torrent --display_interval 20 --saveas /srv/Momomoko.E01.140011.HDTV.H264.720p.mp4

How do I run this line:

ps ax | grep 'Momomoko.E01.140011.HDTV.H264.720p.mp4'

..with php, and kill -9 all the matching processes?

like image 279
Lim zhen xiang Avatar asked Nov 13 '14 05:11

Lim zhen xiang


People also ask

Is pkill same as kill?

The main difference between these tools is that kill terminates processes based on Process ID number (PID), while the killall and pkill commands terminate running processes based on their names and other attributes.


2 Answers

Try to use kill command rather

kill -9 <pid>

It will work for sure, cause I have tried it myself and very handy all times.

Use the following in a script file then run for loop with kill command,

ps|grep torrent|cut -f1 -d' '

like this for loop as shown below, as exact working copy from my system;

for p in `ps|grep torrent|cut -f1 -d' '`; do
   kill -9 $p
done

I hope this will help you finally.

As per latest edited question you want to run this with PHP, it can be implemented through exec command, please follow the question for solution.

like image 67
Skynet Avatar answered Sep 22 '22 06:09

Skynet


As you can see, the process are being run with screen command.

sh -c sudo screen /usr/bin/python
sudo screen /usr/bin/python
screen /usr/bin/python

Due to this you cannot kill the process with the command what you have used.

To kill the process, first search the PID process ID of the process and then use kill command with the PID. Like

$ kill -9 342

Also looking from your process list, it is visible that you have started the same process many times with different permission. So I suggest you kill all except one that is needed.

EDIT : This single command would suffice:

$ ps ax | grep 'Momomoko.E01.140011.HDTV.H264.720p.mp4' | awk -F ' ' '{print $1}' | xargs sudo kill -9

Here is what it does :

  1. ps ax : list the process 2. grep : grep for the requred process name 3. awk : to get only the PID's of the process from the grep ouput 4. xargs sudo kill -9 : xargs will pass one by one PID number to kill command
like image 24
Santosh A Avatar answered Sep 22 '22 06:09

Santosh A