CyberPanel install on AlmaLinux 10

CyberPanel 2.4.5 says it supports AlmaLinux 10, but when I use the install script from:

sh <(curl https://cyberpanel.net/install.sh || wget -O - https://cyberpanel.net/install.sh)

It comes back, and says, “CyberPanel is supported on Ubuntu 18.04, Ubuntu 20.04, Ubuntu 22.04, Ubuntu 24.04, AlmaLinux 8, AlmaLinux 9 and CloudLinux 7.x…”

Also curious, the Docs tab at the top hasn’t been working, at least on Chrome.

I have just downloaded the install.sh and yes, it does not check for AlmaLinux 10, at this time. Luckily it is just a little wrapper script.

If you need to get going, just do this:

SERVER_OS="CentOS8" curl --silent -o cyberpanel.sh "https://cyberpanel.sh/?dl&$SERVER_OS" 
chmod +x cyberpanel.sh
./cyberpanel.sh

The cyberpanel.sh script does support AlmaLinux 10, I was just reading the code to double check that.

curl -o cyberpanel.sh "https://cyberpanel.sh/?dl&CentOS8" && chmod +x cyberpanel.sh

The above should work for AlmaLinux 10.