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,287 times
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 inxkilland 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