Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to remove open-jdk completely in ubuntu?

Tags:

ubuntu

openjdk

I hava installed oracle-jdk,so want to remove openjdk completely to ensure every java-based apps will use oracle jdk,but when I try to run "sudo apt-get remove openjdk-6-",ubuntu will remove openjdk-6 but try to install openjdk-7- at the same time automatically. So,how to remove openjdk-6 and stop ubuntu to install openjdk-7 at the same time.

like image 987
Alex Luya Avatar asked Oct 11 '12 09:10

Alex Luya


2 Answers

Finally,I got a solution:disconnect from Internet,then do removing,it is removed completely

like image 141
Alex Luya Avatar answered Oct 04 '22 23:10

Alex Luya


update-alternatives does a great job switching the default java version, just in case you haven't known it:

$ sudo update-alternatives --config java
There are 2 choices for the alternative java (providing /usr/bin/java).

  Selection    Path                                            Priority   Status
------------------------------------------------------------
  0            /usr/lib/jvm/java-7-oracle/jre/bin/java          1071      auto mode
  1            /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/java   1061      manual mode
* 2            /usr/lib/jvm/java-7-oracle/bin/java              1065      manual mode
  3            /usr/lib/jvm/java-7-oracle/jre/bin/java          1071      manual mode

Press enter to keep the current choice[*], or type selection number: 
like image 32
Dmytro Sirenko Avatar answered Oct 04 '22 22:10

Dmytro Sirenko