본문 바로가기
운영체제/linux

JDK 설치

by 신일석 2014. 10. 24.

How To Install Java on Ubuntu with Apt-Get

Introduction

As a lot of articles and programs require to have Java installed, this article will guide you through the process of installing and managing different versions of Java.

Installing default JRE/JDK

This is the recommended and easiest option. This will install OpenJDK 6 on Ubuntu 12.04 and earlier and on 12.10+ it will install OpenJDK 7.

Installing Java with apt-get is easy. First, update the package index:

sudo apt-get update

Then, check if Java is not already installed:

java -version

If it returns "The program java can be found in the following packages", Java hasn't been installed yet, so execute the following command:

sudo apt-get install default-jre

This will install the Java Runtime Environment (JRE). If you instead need the Java Development Kit (JDK), which is usually needed to compile Java applications (for example Apache AntApache MavenEclipseand IntelliJ IDEA execute the following command:

sudo apt-get install default-jdk

That is everything that is needed to install Java.

All other steps are optional and must only be executed when needed.

'운영체제 > linux' 카테고리의 다른 글

VMware Player 설치  (0) 2014.10.25
VMware Workstation 설치  (0) 2014.10.24
How can I shorten my command line (bash) prompt?  (0) 2014.10.24