diff --git a/README.md b/README.md
index e930b2095..316262d9a 100644
--- a/README.md
+++ b/README.md
@@ -85,6 +85,9 @@ Any applications not in ported or unsupported need to be tested for whether they
⭕ Jackett
⭕ Jellyfin
⭕ Jellyseerr
+ ⭕ k0s
+ ⭕ Kavita
+ ⭕ Keycloak
⭕ Mafl
⭕ Nginx Proxy Manager
⭕ Prowlarr
diff --git a/ct/k0s.sh b/ct/k0s.sh
index 3b62bfc69..77847f952 100644
--- a/ct/k0s.sh
+++ b/ct/k0s.sh
@@ -1,5 +1,5 @@
#!/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
# Author: tteck (tteckster)
# License: MIT
diff --git a/ct/kavita.sh b/ct/kavita.sh
index 206778fb4..94410c656 100644
--- a/ct/kavita.sh
+++ b/ct/kavita.sh
@@ -1,5 +1,5 @@
#!/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
# Author: tteck (tteckster)
# License: MIT
@@ -58,7 +58,7 @@ if [[ ! -d /opt/Kavita ]]; then msg_error "No ${APP} Installation Found!"; exit;
msg_info "Updating $APP LXC"
systemctl stop kavita
RELEASE=$(curl -s https://api.github.com/repos/Kareadita/Kavita/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
-tar -xvzf <(curl -fsSL https://github.com/Kareadita/Kavita/releases/download/$RELEASE/kavita-linux-x64.tar.gz) --no-same-owner &>/dev/null
+tar -xvzf <(curl -fsSL https://github.com/Kareadita/Kavita/releases/download/$RELEASE/kavita-linux-arm64.tar.gz) --no-same-owner &>/dev/null
rm -rf Kavita/config
cp -r Kavita/* /opt/Kavita
rm -rf Kavita
diff --git a/ct/keycloak.sh b/ct/keycloak.sh
index 5e461722f..ea2051860 100644
--- a/ct/keycloak.sh
+++ b/ct/keycloak.sh
@@ -1,5 +1,5 @@
#!/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
# Author: tteck (tteckster)
# License: MIT
diff --git a/install/k0s-install.sh b/install/k0s-install.sh
index 14ec64cb4..a5e03464f 100644
--- a/install/k0s-install.sh
+++ b/install/k0s-install.sh
@@ -18,6 +18,7 @@ $STD apt-get install -y curl
$STD apt-get install -y sudo
$STD apt-get install -y mc
$STD apt-get install -y git
+$STD apt-get install -y wget
msg_ok "Installed Dependencies"
msg_info "Installing k0s Kubernetes"
diff --git a/install/kavita-install.sh b/install/kavita-install.sh
index 17e208ae2..6dc6531c7 100644
--- a/install/kavita-install.sh
+++ b/install/kavita-install.sh
@@ -22,7 +22,7 @@ msg_ok "Installed Dependencies"
msg_info "Installing Kavita"
cd /opt
RELEASE=$(curl -s https://api.github.com/repos/Kareadita/Kavita/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
-$STD tar -xvzf <(curl -fsSL https://github.com/Kareadita/Kavita/releases/download/$RELEASE/kavita-linux-x64.tar.gz) --no-same-owner
+$STD tar -xvzf <(curl -fsSL https://github.com/Kareadita/Kavita/releases/download/$RELEASE/kavita-linux-arm64.tar.gz) --no-same-owner
msg_ok "Installed Kavita"
msg_info "Creating Service"
diff --git a/install/keycloak-install.sh b/install/keycloak-install.sh
index ea7d0f919..e0c30430f 100644
--- a/install/keycloak-install.sh
+++ b/install/keycloak-install.sh
@@ -19,6 +19,7 @@ $STD apt-get install -y sudo
$STD apt-get install -y mc
$STD apt-get install -y ca-certificates-java
$STD apt-get install -y openjdk-17-jre-headless
+$STD apt-get install -y wget
msg_ok "Installed Dependencies"
RELEASE=$(curl -s https://api.github.com/repos/keycloak/keycloak/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')