Results 1 to 7 of 7

Thread: Kill program from X11 like CAD

  1. #1
    Join Date
    Aug 2008
    Location
    It is believed I exist.
    Beans
    145

    Kill program from X11 like CAD

    How do I kill an X11 application using a keyboard command? The program does not have Linux specific bindings (interupts). I want something like Ctrl-alt-del and process manager.

    thanks

    10.04, gnome

  2. #2
    Join Date
    Nov 2008
    Location
    Maine
    Beans
    1,126
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Kill program from X11 like CAD

    Have a look at this thread:
    http://ubuntuforums.org/showthread.php?t=202558

    so yeah, I tried ctrl+alt+print-screen+b
    and it turned my computer off instantly. I'm thinking thats not what you want.
    maybe use the keyboard shortcuts app under
    system > preferences >keyboard shortcuts

    use the xkill command with some custom keybinding
    Last edited by conradin; July 6th, 2011 at 05:16 AM. Reason: cmd
    ~Conradin~

  3. #3
    Join Date
    Feb 2007
    Location
    Almere.
    Beans
    643
    Distro
    Ubuntu

    Re: Kill program from X11 like CAD

    Gnome has the "system monitor" and also a process tab on that.
    It's under system > administration.

    Right click on the process and kill it.
    That was left handed...

  4. #4
    Join Date
    Jun 2011
    Location
    Wollongong, Australia
    Beans
    148
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Kill program from X11 like CAD

    Using a keyboard only:

    CTRL-ALT-F1 to drop into a terminal session.

    Log in.

    Code:
    ps -aef | grep "CAD PROGRAM NAME"
    kill -9 "PID of CAD PROCESS"
    and so on until all associated processes are killed. Great for killing wine when Windows games screw up...

    CTRL-ALT-F7 (may be F8, but unlikely) to get back to your desktop.

    If no program shows up, just
    ps -aef
    and find the program you're looking for, note the process ID and kill it.

  5. #5
    Join Date
    Aug 2008
    Location
    It is believed I exist.
    Beans
    145

    Re: Kill program from X11 like CAD

    ps -aef with drop to console and kill solves my problem. Thanks everyone!

  6. #6
    Join Date
    Nov 2008
    Location
    Maine
    Beans
    1,126
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Kill program from X11 like CAD

    Solved I know, but heres an alternate solution:
    http://ubuntuforums.org/showthread.php?t=1798638
    ~Conradin~

  7. #7
    Join Date
    Aug 2008
    Location
    It is believed I exist.
    Beans
    145

    Re: Kill program from X11 like CAD

    Thanks!

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
  •