Trouble in Gotham: Guake frozen
This morning my guake terminal froze. No key combination within guake would work to get it back going, of course, because no keys worked within guake.So I used ctr-alt-t to open another terminal and top to list open processes. Perhaps because guake was frozen, it didn't make the top screen.
Enter pkill
Instead, from the other terminal I used pkill.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Try listing the processes associated with a term, for example guake. | |
$ pgrep guake | |
8494 | |
# Kill guake processes without bothering looking at them. | |
$ pkill guake |
This killed guake right away.