상세 컨텐츠

본문 제목

Ubuntu 11.04 에서 jdk6 설치

Android 일반

by mobile 2013. 3. 17. 16:15

본문

반응형

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

반응형

관련글 더보기

댓글 영역