-
Notifications
You must be signed in to change notification settings - Fork 236
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e04c9eb
commit 242ce31
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Initial Packages | ||
sudo apt-get -yq install gnupg curl | ||
|
||
# Setup Azul's Public Key | ||
sudo apt-key adv \ | ||
--keyserver hkp://keyserver.ubuntu.com:80 \ | ||
--recv-keys 0xB1998361219BD9C9 | ||
|
||
# Download Azul's Repo | ||
curl -O https://cdn.azul.com/zulu/bin/zulu-repo_1.0.0-3_all.deb | ||
|
||
# Install Azul's Repo | ||
sudo apt-get install ./zulu-repo_1.0.0-3_all.deb | ||
|
||
# Post Update | ||
sudo apt-get update | ||
|
||
# Install Java-Zulu v18 | ||
sudo apt-get install zulu18-jdk |