Jump to content

How do I kill bad processes in Mandrake 9.2


newbie4ever
 Share

Recommended Posts

You have two methods:

1. Go to the start menu -> applications -> monitoring -> Xkill

Click on XKill and then when the cursor changes, click on whatever app is misbehaving and it will kill it for you.

2. Open up a terminal and type in killall app-name (replace app-name with whatever program is acting up). The only problem with this is that the name of the app and the name of the process may not be that same. So, you can always do this

 

$ ps -ef | more

 

This will list all the processes running on your computer. Find the one that you need to kill and then issue the above command (killall app-name) to remove it.

Link to comment
Share on other sites

There are a couple of ways to do it. Try opening a console and running:

 

$ killall totem

 

Also in the start menu go to Applications>Monitoring>Xkill and click on it. The mouse pointer will turn into a little skull and crossbones. Place it on the totem window and click and it will kill totem. Watch where you click though; it will kill any X application that your on when you click it.

Link to comment
Share on other sites

Another method is to do a ctrl / alt / esc. Your curser will change to the little skull and crossbones. Now you're lethal. :lol: Then you can just click on the title bar of totem.

Edited by Xeroid
Link to comment
Share on other sites

FYI, killing with xkill kills the window, not the process behind it.

You can alternatively start xkill by hitting ctrl-alt-escape.

 

Use this (by preference) only if the process has died with a segmentation fault (happens to mplayer quite often if there's something wrong with the video drivers) but the windows are still there (empty, usually).

 

Before you kill with

kill -9 [PID]

where PID is the process ID as in the result of a ps -fu [user]

try just to get the program to exit:

kill [PID]

 

Some processes die but stay around and you can't seem to kill them -- but you can if you manage to kill the parent process -- don't kill that if it has PID 1.... :P

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

×
×
  • Create New...