As you can see, the process is started using the on-screen command.
sh -c sudo screen /usr/bin/python sudo screen /usr/bin/python screen /usr/bin/python
Because of this, you cannot kill process using the command you used.
To kill a process, first search for the process ID of the process PID , and then use the kill command with the PID. how
$ **kill -9 342**
Also, looking from your list of processes, you can see that you started the same process many times with different resolutions. Therefore, I suggest that you kill everyone except the ones you need.
EDIT: This single command will suffice;
$ ps ax | grep 'Momomoko.E01.140011.HDTV.H264.720p.mp4' | awk -F ' ' '{print $1}' | xargs sudo kill -9
Here is what he does:
- ps ax: specify the process
- grep: grep for the name of the requested process
- awk: get only the process PID from grep ouput
- xargs sudo kill -9: xargs will pass the PID number one by one to kill the command
source share