Have you tried using
top
to get all the active processes and then
kill(PID)
Where will the PID refer to the EyeTV process ID passed to you from above? Also (and I'm not sure if this works two, but it is possible), you can try
kill(pid,SIGTERM)
which sends a completion signal to the process (however, it is used in C programming to kill the process, so I'm not 100% sure that it will work outside the programming language, but it's worth a try)
Spade johnsson
source share