mirror of
https://pagure.io/fedora-docs/quick-docs.git
synced 2024-11-25 05:37:32 +00:00
22 lines
906 B
Text
22 lines
906 B
Text
|
[id='installing-oracle-java']
|
||
|
= Installing Oracle Java SE
|
||
|
|
||
|
To install Oracle Java SE:
|
||
|
|
||
|
. Navigate to link:http://www.oracle.com/technetwork/java/javase/downloads[Oracle Java SE downloads page].
|
||
|
. Choose the version of Java you wish to use. Typically, you would navigate to the link:http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html
|
||
|
[version 8 page].
|
||
|
. Accept the license agreement and download the appropriate rpm file for your systems architecture. For example, if you run 64 bit Fedora, choose the `jdk-8u151-linux-x64.rpm` file.
|
||
|
. Enter the following command to install Oracle Java SE:
|
||
|
+
|
||
|
----
|
||
|
$ rpm -i jdk-8u151-linux-x64.rpm
|
||
|
----
|
||
|
[NOTE]
|
||
|
====
|
||
|
If you have installed other versions of Java, you might need to switch the active version of java:
|
||
|
----
|
||
|
sudo alternatives --config java
|
||
|
----
|
||
|
A list of installed java versions is displayed. Choose the version you require.
|
||
|
====
|