Manually install Sun-jdk1.6 under Ubuntu10.4

Source: Internet
Author: User

1. Go to http://www.oracle.com/technetwork/java/javase/downloads/index.htmlto download jdk-6u30-linux-i586.bin
 
2. Place it in the/usr/lib/jvm/java directory, and use the chmod command to modify it so that it has the running permission.
 
3. $ sudo./jdk-6u30-linux-i586.bin
 
Press enter until you are asked whether to install it. Enter yes and press enter until the installation is complete.
 
4. Configure Environment Variables
 
 
Configure classpath and modify the environment variables of all users: $ sudo gedit/etc/profile
 
 
Add at the end of the file
 
 
View sourceprint? 1 # set java environment
 
2
 
3 export JAVA_HOME =/usr/lib/jvm/java/jdk1.6.0 _ 30
 
4
 
5 export JRE_HOME =/usr/lib/jvm/java/jdk1.6.0 _ 30/jre
 
6
 
7 export CLASSPATH =.: $ JAVA_HOME/lib: $ JRE_HOME/lib: $ CLASSPATH
 
8
 
9 export PATH = $ JAVA_HOME/bin: $ JRE_HOME/bin: $ PATH
 
 
 
 
 
Restart the computer and run the command to test the jdk version.
 
Java-version
 
If the version information is displayed, the installation is successful.
 
Do not make any mistakes. Otherwise, you may not be able to enter the system after the reboot. if the system is incorrect, there will be only a blank page after the boot. Do not worry, press ctrl + Alt + F1 to enter the tty1 command line interface. Enter $ sudo vi/etc/profile to check whether the configuration has been incorrect. Correct the configuration and restart. Note that the export command = has no space on both sides.


From a strange blog

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.