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?
Asked
Active
Viewed 2,232 times
1
-
2Possible duplicate? http://askubuntu.com/questions/13441 – fossfreedom Nov 17 '12 at 09:54
-
1possible duplicate of How to kill applications – Raja G Nov 19 '12 at 16:49
2 Answers
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 inxkill
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.

Dennis Jaheruddin
- 138
- 7
0
Run this:
ps -e
Find the process matlab-support.
and its PID
Kill it using:
sudo kill -9 PID

Max
- 101