'sun-java6-jdk'에 해당되는 글 1건

  1. 2012.04.05 Ubuntu 11.04 에서 jdk6 깔기
안드로이드/포팅2012. 4. 5. 14:58


Android 소스를 다운 받고 환경 구축을 할 때, jdk를 깔아야 한다.


Android 웹사이트에는 다음과 같이 하라고 나와 있다.

Installing the JDK

The Sun JDK is no longer in Ubuntu's main package repository. In order to download it, you need to add the appropriate repository and indicate to the system which JDK should be used.

Java 6: for Gingerbread and newer
$ sudo add-apt-repository "deb http://archive.canonical.com/ lucid partner"
$ sudo apt-get update
$ sudo apt-get install sun-java6-jdk

Java 5: for Froyo and older
$ sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu hardy main multiverse"
$ sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu hardy-updates main multiverse"
$ sudo apt-get update
$ sudo apt-get install sun-java5-jdk

Note: The lunch command in the build step will ensure that the Sun JDK is used instead of any previously installed JDK.


위와 같은 방법은 우분투 10.x 에서는 잘 되나, 11.x(11.04 특히)에서는 되지 않는다.


그럴 땐 다음과 같이 하면  jdk6을 깔 수 있다.


sudo add-apt-repository ppa:ferramroberto/java
sudo apt-get update
sudo apt-get install sun-java6-jdk sun-java6-plugin


Posted by code cat