1

It does not advance. There is no "cancel" button. Is there a way to escape the installation process, perhaps via a terminal command or something else?

belacqua
  • 23,120
Fabio
  • 11
  • 2

2 Answers2

1

There are several ways to do this as described in the other question:

  • In System->Admin you have an application called System Monitor

  • you can also kill with xkill. Just go to the "run" dialog (Alt+F2), type in xkill and your mouse pointer will change to an "x". Point on the application that you want to kill and click, and it'll be killed.

0

Run this:

ps -e

Find the process matlab-support. and its PID

Kill it using:

sudo kill -9 PID
Max
  • 101