5

I've been doing some WebGL development, and of course crashing Chrome occasionally along the way.

When this happens, WebGL in Chrome won't work until I restart my PC, which makes me think that even though I close every Chrome window I can see, it's still running somehow.

In Windows I am used to using task manager to ensure an application has actually stopped running, what's the Ubuntu equivalent?

Thanks

JMK
  • 161
  • 1
  • 1
  • 6
  • [This thread on super user may be helpful](http://superuser.com/questions/131019/killing-all-instances-of-chrome-on-the-command-line) – Mitch Jun 22 '14 at 02:06
  • 6
    Addressing the question title : Chrome has a special URL *`chrome://restart`* and I think that is quite platform-independent :) – jave.web Jan 06 '15 at 08:10

2 Answers2

4

Try:

killall chrome
# or
pkill -9 -f chrome

If either of the above don't work, then try adding sudo:

sudo killall chrome
# or
sudo pkill -9 -f chrome
Gabriel Staples
  • 8,025
  • 7
  • 66
  • 105
user519694
  • 41
  • 2
1

The GUI for this is gnome-system-monitor (see Wolf F.'s answer to Where is the Task Manager?).

Or, optionally, you could go the terminal route (open a terminal with Ctrl+Alt+T):

ps -ef
kill <process ID of the suspicious process>

(Process IDs are the numbers on the left.)

Eliah Kagan
  • 116,445
  • 54
  • 318
  • 493
hal7df
  • 656
  • 4
  • 14
  • Furthermore you can use the top command if you prefer using the terminal. The top command lists your CPU tasks and enables you to kill them (like task manager) – D-unit Jun 23 '14 at 01:28