Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to install JDK manually under Ubuntu system

2025-04-02 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article is about how to install JDK manually on Ubuntu. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

1. Manually install jdk6

First of all, download jdk-6u12-linux-i586.bin from http://java.sun.com, which is said to be easy to operate and does not require conversion.

Then, you can put it in any folder you like, and if it's a rookie like me, it's recommended to put it under the main folder (/ home/*).

Here's how to install jdk:

Enter you to store jdk-6u12-linux-i586.bin under the terminal, for example, my location is: / home/liangshihong

$sudo-s. / jdk-6u12-linux-i586.bin

Enter all the way until you are asked if you want to install it. Enter yes.

Ok, after installation, configure the environment variables below

Configure classpath to modify environment variables for all users

$sudo gedit / etc/profile

Add in the file *

# set java environment

JAVA_HOME=/home/liangshihong/jdk1.6.0_12

Export JRE_HOME=/home/liangshihong/jdk1.6.0_12/jre

Export CLASSPATH=.:$JAVA_HOME/lib:$JRE_HOME/lib:$CLASSPATH

Export PATH=$JAVA_HOME/bin:$JRE_HOME/bin:$PATH

Restart the computer and test the version of jdk with the command

Java-version

The following message is displayed: successful installation

Java version "1.6.012"

Java (TM) SE Runtime Environment (build 1.6.0_12-b04)

Java HotSpot (TM) Server VM (build 11.2-b01, mixed mode)

Liangshihong@liangshihong-Imagine:~$

Thank you for reading! This is the end of the article on "how to manually install JDK under the Ubuntu system". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it out for more people to see!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report