Ubuntu – Android Studio update issue with jre/bin/java

android-studiojavajreupdates

While updating Android Studio I got the following error. The patch was downloaded and extracted, but there was some conflict with jre/bin/java Access denied. The error message is shown in the below screenshot.

The Error message is as shown in the linked image:
(Click image to enlarge)

Best Answer

Kill java for update

ps -A |grep java

output of this command will give the list of java processes running on your system. Note down Process ID (PID) of that process whom you want to kill and run

kill -9 PID

Related Question