|
The stable version of Oracle Java 8 has recently been released, with many new feature changes. Among them, the function of the program support through the "Lambda project", received a number of security updates and interface improvements on the bug fixes, making the development of the work easier.
This article will show you how to install Java 8 on Debian 7 "Wheezy" and Debian 8 "Jessie" systems and derived versions.
Debian 8 Jessie installed on the order:
Sudo sh -c 'echo "deb http://ppa.launchpad.net/webupd8team/java/Ubuntu trusty main" >> /etc/apt/sources.list
Sudo sh -c 'echo "deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main" >> /etc/apt/sources.list
Sudo apt-key adv --keyserver keyserver.ubuntu.com --recv -keys EEA14886
Sudo apt-get update
Sudo apt-get install oracle-java8-installer
Debian 7 Wheezy installed on the order:
Sudo sh -c 'echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main" >> /etc/apt/sources.list
Sudo sh -c 'echo "deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu precise main" >> /etc/apt/sources.list
Sudo apt-key adv --keyserver keyserver.ubuntu.com --recv -keys EEA14886
Sudo apt-get update
Sudo apt-get install oracle-java8-installer |
|
|
|