Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for ARM systems #82

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions virtualmin-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,8 @@ fi
arch="$(uname -m)"
if [ "$arch" = "i686" ]; then
arch="i386"
elif [ "$arch" = "arm64" ] || [ "$arch" = "aarch64" ]; then
arch="arm64"
fi
if [ "$SERIAL" = "GPL" ]; then
LOGIN=""
Expand Down Expand Up @@ -571,13 +573,13 @@ fi
# Message to display in interactive mode
install_msg() {
supported=" ${CYANBG}${BLACK}${BOLD}Red Hat Enterprise Linux and derivatives${NORMAL}${CYAN}
- RHEL 8 and 9 on x86_64
- Alma and Rocky 8 and 9 on x86_64
- CentOS 7 on x86_64${NORMAL}
- RHEL 8 and 9 on x86_64 and aarch64
- Alma and Rocky 8 and 9 on x86_64 and aarch64
- CentOS 7 on x86_64 and aarch64${NORMAL}
UNSTABLERHEL
${CYANBG}${BLACK}${BOLD}Debian Linux and derivatives${NORMAL}${CYAN}
- Debian 10 and 11 on i386 and amd64
- Ubuntu 20.04 LTS and 22.04 LTS on i386 and amd64${NORMAL}"
- Debian 10 and 11 on i386, amd64 and arm64
- Ubuntu 20.04 LTS and 22.04 LTS on i386, amd64 and arm64${NORMAL}"

cat <<EOF

Expand Down