···2020 * [Open your cloud firewall for HTTP and HTTPS](#open-your-cloud-firewall-for-http-and-https)
2121 * [Configure DNS for your domain](#configure-dns-for-your-domain)
2222 * [Check that DNS is working as expected](#check-that-dns-is-working-as-expected)
2323- * [Installer on Ubuntu 20.04/22.04 and Debian 11/12](#installer-on-ubuntu-20042204-and-debian-1112)
2323+ * [Installer on Ubuntu 20.04/22.04/24.04 and Debian 11/12](#installer-on-ubuntu-200422042404-and-debian-1112)
2424 * [Verifying that your PDS is online and accessible](#verifying-that-your-pds-is-online-and-accessible)
2525 * [Creating an account using pdsadmin](#creating-an-account-using-pdsadmin)
2626 * [Creating an account using an invite code](#creating-an-account-using-an-invite-code)
···8383**Server Recommendations**
8484| | |
8585| ---------------- | ------------ |
8686-| Operating System | Ubuntu 22.04 |
8686+| Operating System | Ubuntu 24.04 |
8787| Memory (RAM) | 1 GB |
8888| CPU Cores | 1 |
8989| Storage | 20 GB SSD |
···130130131131These should all return your server's public IP.
132132133133-### Installer on Ubuntu 20.04/22.04 and Debian 11/12
133133+### Installer on Ubuntu 20.04/22.04/24.04 and Debian 11/12
134134135135On your server via ssh, download the installer script using wget:
136136
+3-3
installer.sh
···9494 elif [[ "${DISTRIB_CODENAME}" == "jammy" ]]; then
9595 SUPPORTED_OS="true"
9696 echo "* Detected supported distribution Ubuntu 22.04 LTS"
9797- elif [[ "${DISTRIB_CODENAME}" == "mantic" ]]; then
9797+ elif [[ "${DISTRIB_CODENAME}" == "noble" ]]; then
9898 SUPPORTED_OS="true"
9999- echo "* Detected supported distribution Ubuntu 23.10 LTS"
9999+ echo "* Detected supported distribution Ubuntu 24.04 LTS"
100100 fi
101101 elif [[ "${DISTRIB_ID}" == "debian" ]]; then
102102 if [[ "${DISTRIB_CODENAME}" == "bullseye" ]]; then
···109109 fi
110110111111 if [[ "${SUPPORTED_OS}" != "true" ]]; then
112112- echo "Sorry, only Ubuntu 20.04, 22.04, Debian 11 and Debian 12 are supported by this installer. Exiting..."
112112+ echo "Sorry, only Ubuntu 20.04, 22.04, 24.04, Debian 11 and Debian 12 are supported by this installer. Exiting..."
113113 exit 1
114114 fi
115115