Results 1 to 2 of 2

Thread: What to do in case of not responsive desktop?

  1. #1
    Join Date
    Jun 2012
    Beans
    21

    What to do in case of not responsive desktop?

    Lets say I downloaded something like Alien Arena and I have had a problem where it stopped responding(This happens with other programs) or goes black, what should I do? My friends recommend using the terminal to find and kill the task. I notice that some games or other applications sometimes do this and I am unsure what to do in that scenario. Is the terminal the only way to regain control or can something else be done? What do you do in these cases?

  2. #2
    Join Date
    Oct 2011
    Location
    ZZ9 Plural Z Alpha
    Beans
    Hidden!
    Distro
    Ubuntu

    Re: What to do in case of not responsive desktop?

    Quote Originally Posted by timetopat View Post
    Lets say I downloaded something like Alien Arena and I have had a problem where it stopped responding(This happens with other programs) or goes black, what should I do? My friends recommend using the terminal to find and kill the task. I notice that some games or other applications sometimes do this and I am unsure what to do in that scenario. Is the terminal the only way to regain control or can something else be done? What do you do in these cases?
    If only one program has locked up and you still can manipulate the desktop, you can kill the process most easily with a terminal.
    List running processes with

    Code:
    ps -ef
    Which will be a lot of processes. Narrow it down with grep-

    Code:
    ps -ef | grep alien
    will list only running process with the word "alien" in the process name. Kill processes with

    Code:
    kill -9 process_id
    The process ID is the 4+ digit number in the second column in ps. If the process was started by root (i.e., installing software, making system changes) you'll need to use sudo with kill -9.

    Just a rough overview.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •