You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/install-guides/java.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,28 +33,28 @@ Below are some of the common methods that you can use to install Java. This incl
33
33
Pick the one that works best for you.
34
34
35
35
{{% notice Note %}}
36
-
The Java Technology Compatibility Kit (TCK) is a test suite that you can use to verify whether a Java implementation conforms to the Java SE Platform Specification. It's a crucial tool for ensuring that Java applications can run consistently across different platforms and implementations.
36
+
The Java Technology Compatibility Kit (TCK) is a test suite that you can use to verify whether a Java implementation conforms to the Java SE Platform Specification. It is a crucial tool for ensuring that Java applications can run consistently across different platforms and implementations.
37
37
38
38
Check the [OCTLA Signatories List](https://openjdk.org/groups/conformance/JckAccess/jck-access.html) to see who has been granted access to the TCK.
39
39
{{% /notice %}}
40
40
41
41
## Can I install Java using the Linux package manager?
42
42
43
-
For distributions using `apt` - including Debian and Ubuntu, you can install Java using this code:
43
+
For distributions using `apt`, including Debian and Ubuntu, you can install Java using this code:
44
44
45
45
```console
46
46
sudo apt update
47
47
sudo apt install default-jre -y
48
48
sudo apt install default-jdk -y
49
49
```
50
50
51
-
For distributions using `dnf` - including Fedora and Red Hat, you can install Java using this code:
51
+
For distributions using `dnf`, including Fedora and Red Hat, you can install Java using this code:
52
52
53
53
```console
54
54
sudo dnf install java-latest-openjdk
55
55
```
56
56
57
-
For distributions using `pacman` - including Arch and Manjaro, you can install Java using this code:
57
+
For distributions using `pacman`, including Arch and Manjaro, you can install Java using this code:
58
58
59
59
```console
60
60
sudo pacman -S jdk-openjdk
@@ -63,7 +63,7 @@ sudo pacman -S jre-openjdk
63
63
64
64
## Can I install Java using Snap?
65
65
66
-
For Linux distributions with`snap` you can install Java using this code:
66
+
For Linux distributions using`snap`, you can install Java using this code:
More installation options for Corretto are available in the [Amazon Corretto 21 Guide for Linux](https://docs.aws.amazon.com/corretto/latest/corretto-21-ug/linux-info.html).
84
+
You can find out more about the installation options for Corretto in the [Amazon Corretto 21 Guide for Linux](https://docs.aws.amazon.com/corretto/latest/corretto-21-ug/linux-info.html).
85
85
86
86
## How do I install the Microsoft Build of OpenJDK?
0 commit comments