LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Desktop (https://www.linuxquestions.org/questions/linux-desktop-74/)
-   -   help me ....wanted to know how to start task manager when entire system got strucked (https://www.linuxquestions.org/questions/linux-desktop-74/help-me-wanted-to-know-how-to-start-task-manager-when-entire-system-got-strucked-4175459684/)

abhiram144 04-26-2013 11:14 AM

help me ....wanted to know how to start task manager when entire system got strucked
 
i have some processes which is making my system freeze ...
and those processes are important to me
so i just wanted to restart them instead of restarting entire system

teckk 04-26-2013 11:30 AM

Get the PID
Code:

ps -e | grep <process>
Then kill it
Code:

kill 1234
or
Code:

pkill <app>
http://linux.die.net/man/3/kill
http://linux.die.net/man/1/pkill
http://linux.die.net/man/1/xkill


All times are GMT -5. The time now is 08:08 AM.