Port Apache Cassandra to ARM64

This commit is contained in:
Sam Heinz
2024-04-08 17:49:53 +10:00
parent f8a3bcd72e
commit 760480c676
3 changed files with 5 additions and 3 deletions
+2 -1
View File
@@ -30,8 +30,9 @@ Any applications not in ported or unsupported need to be tested for whether they
<li>ActualBudget</li> <li>ActualBudget</li>
<li>Adguard</li> <li>Adguard</li>
<li>AgentDVR</li> <li>AgentDVR</li>
<li>Apache Cassandra</li>
<li>Docker</li> <li>Docker</li>
<li>Prowlarr <li>Prowlarr</li>
<li>Radarr</li> <li>Radarr</li>
<li>Sonarr</li> <li>Sonarr</li>
</details> </details>
+1 -1
View File
@@ -1,5 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build.func) source <(curl -s https://raw.githubusercontent.com/asylumexp/Proxmox/main/misc/build.func)
# Copyright (c) 2021-2024 tteck # Copyright (c) 2021-2024 tteck
# Author: tteck (tteckster) # Author: tteck (tteckster)
# License: MIT # License: MIT
+2 -1
View File
@@ -19,11 +19,12 @@ $STD apt-get install -y sudo
$STD apt-get install -y mc $STD apt-get install -y mc
$STD apt-get install -y apt-transport-https $STD apt-get install -y apt-transport-https
$STD apt-get install -y gpg $STD apt-get install -y gpg
$STD apt-get install -y wget
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
msg_info "Installing Eclipse Temurin (Patience)" msg_info "Installing Eclipse Temurin (Patience)"
wget -qO- https://packages.adoptium.net/artifactory/api/gpg/key/public | gpg --dearmor >/etc/apt/trusted.gpg.d/adoptium.gpg wget -qO- https://packages.adoptium.net/artifactory/api/gpg/key/public | gpg --dearmor >/etc/apt/trusted.gpg.d/adoptium.gpg
echo 'deb [arch=amd64 signed-by=/etc/apt/trusted.gpg.d/adoptium.gpg] https://packages.adoptium.net/artifactory/deb bookworm main' >/etc/apt/sources.list.d/adoptium.list echo 'deb [arch=arm64 signed-by=/etc/apt/trusted.gpg.d/adoptium.gpg] https://packages.adoptium.net/artifactory/deb bookworm main' >/etc/apt/sources.list.d/adoptium.list
$STD apt-get update $STD apt-get update
$STD apt-get install -y temurin-11-jdk $STD apt-get install -y temurin-11-jdk
msg_ok "Installed Eclipse Temurin" msg_ok "Installed Eclipse Temurin"