Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Linux \ Ubuntu Tutorial - Manually install Oracle Java JDK 8     - Linux in order to make NMAP hide and seek with the firewall (Linux)

- User and user group management Linux Command (Linux)

- Linux System Getting Started Learning: The Linux command line burn ISO or NRG image to DVD (Linux)

- TCP network communication Java Programming (Programming)

- Keepalived + HAProxy high availability load balancing (Server)

- PostgreSQL export table structure information (Database)

- JVM garbage collector and memory allocation strategy (Programming)

- Linux Network Security: nmap port scanning software (Linux)

- Use matplotlib scientific drawing in Linux (Linux)

- Using PHP MySQL library (Programming)

- UNIX and class UNIX system security check notes (Linux)

- iOS in Singleton (Programming)

- Download Google Android source code under Ubuntu 4.4 (Linux)

- Oracle archive log summary (Database)

- Ubuntu Server 14.04 installation Web server (Linux + Apache + MySQL + PHP) (Server)

- Install Gnome Flashback Classic Desktop on Ubuntu 14.10 / Mint 7 (Linux)

- CentOS 6.5 install VNC-Server (Linux)

- Linux operating system ARP Spoofing Defense (Linux)

- Ubuntu 14.04 forget solution root password (Linux)

- Oracle RMAN backups of the control file backup (Database)

 
         
  Ubuntu Tutorial - Manually install Oracle Java JDK 8
     
  Add Date : 2017-03-30      
         
         
         
  This brief tutorial will demonstrate how to install Oracle's latest release of the Java JDK 8 in the Ubuntu system. The method used here is to teach you how to download the installation package from the download page, then install Ubuntu PPA does not use external or third-party source.

This method does not rely on third-party source repository. You just download page from Oracle's official direct download and then installed on the line.

JDK 8 is a major release, also joined the latest called Lambda expressions new language feature that can "function is used as the method parameter, or a block of code using the data as a date."

This version also released a new collection of bags java.util.stream, provides flow-based API, to support the functional operation function.

For more information about the release version, visit its home page @ http://www.oracle.com/technetwork/java/javase/8-whats-new-2157071.html release

To download and install Java JDK8, visit the download page for the latest releases. The basis of your machine Ubuntu system can choose to download the 32-bit or 64-bit release.

Here is the download page

Before downloading, you must accept the license agreement.

Download the file and save. In the Ubuntu system, Firefox browser will default saved to ~ / Downloads directory.

The second step, open a terminal and run the following command to decompress the downloaded file.

tar -xvf ~ / Downloads / jdk-8-linux-x64.tar.gz
Then run the following command to create a directory to save the Java JDK 8 files in / usr / lib directory.

sudo mkdir -p /usr/lib/jvm/jdk1.8.0/
Next, run the following command to extract the contents of JDK files are moved to the directory created.

sudo mv jdk1.8.0 / * /usr/lib/jvm/jdk1.8.0/
Next, run the following commands to configure Java

sudo update-alternatives --install "/ usr / bin / java" "java" "/usr/lib/jvm/jdk1.8.0/bin/java" 1
Next, copy and paste the following line to the terminal execution to enable Javac module.

sudo update-alternatives --install "/ usr / bin / javac" "javac" "/usr/lib/jvm/jdk1.8.0/bin/javac" 1
Finally, copy and paste the following line to the terminal in order to complete the final installation.

sudo update-alternatives --install "/ usr / bin / javaws" "javaws" "/usr/lib/jvm/jdk1.8.0/bin/javaws" 1
To verify whether Java is already under fully installed, you can run the following command to test.

java -version
I wish you have fun ~
     
         
         
         
  More:      
 
- Install KVM on Ubuntu and build a virtual environment (Linux)
- MongoDB start under Linux (Database)
- Linux basic introductory tutorial ---- simple text processing (Linux)
- Linux command find (Linux)
- Hadoop 2.7.1 Installation and Configuration under RedHat Linux 6.5 (Server)
- Linux in order to make NMAP hide and seek with the firewall (Linux)
- MySQL database under Linux to achieve automatic backup scheduled backup day (Database)
- Bash mathematical extension (Programming)
- Four IDS intrusion detection tool under Linux environment (Linux)
- Installation Yarock 1.1.4 Music Player in Ubuntu (Linux)
- IPTABLES configuration steps under Linux (Linux)
- linux system optimization and security configuration (Linux)
- How to generate Linux, random password encryption or decryption (Linux)
- Linux Security trust with users (Linux)
- MySQL use benchmarking tool sysbench (Database)
- NIC configuration parameters under Linux (Linux)
- Linux kernel likely and unlikely to resolve macro definitions (Linux)
- Docker + Nginx + Tomcat7 simple load balancing configuration (Server)
- Linux Network Security Tips Share (Linux)
- To remove those IP is prohibited Fail2ban on CentOS 6/7 (Server)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.