Knowledge base

1000 FAQs, 500 tutorials and instructional videos. Here, there are only solutions!

Install Acronis Agent on AlmaLinux 9

Update 03/19/2026

This guide explains how to prepare your server and install the Acronis Backup Agent for Swiss Backup on AlmaLinux 9.

 

Install the Acronis CyberProtect agent

 

1. System requirements

  • Use a root privileged account.
  • Internet access required for repositories and download.
  • Available disk space: approximately 2 GB.

 

2. System preparation

  1. Switch to root user:

    # Switch to root user
    sudo -i
  2. Update the DNF metadata cache:

    # Refresh DNF metadata cache
    dnf -y makecache
  3. Check the current kernel and GCC versions:

    # Check current kernel and GCC version
    cat /proc/version

    If the kernel version does not match the package kernel-devel available, an update will be required in the next step.

  4. Install the build tool (make):

    # Install make utility
    dnf install -y make
    # Verify installation
    make -v | head -n 1
  5. Install the GCC compiler:

    # Install GCC compiler
    dnf install -y gcc
    # Verify version (should match the one in /proc/version)
    gcc -dumpfullversion
  6. Install the latest kernel and its headers (kernel-devel):

    # List available versions
    dnf list kernel kernel-devel --showduplicates | sort -r
    # Install latest kernel and headers
    dnf install -y kernel kernel-devel
  7. Restart the server to load the new kernel:

    # Reboot the system
    systemctl reboot

    After the restart, reconnect and switch back to root (sudo -i).

  8. Confirm the presence of all required tools:

    # Final environment check
    uname -r
    rpm -qa | grep ^kernel-devel
    make -v | head -n 1
    gcc -dumpfullversion
    perl -v | head -n 2

 

3. Downloading the installer

  1. Install wget if necessary:

    # Install wget
    dnf install -y wget
  2. Get the download URL:
    • Log in to https://acronis.infomaniak.com.
    • Go to TerminalsAll terminals.
    • Click on Add and select Linux.
    • Copy the full URL containing your token.
  3. Download the binary to your server:

    # Download the installer using your URL
    wget -O CyberProtect_AgentForLinux_x86_64.bin "metre_ici_URL_obtenue_avant"
  4. Make the file executable:

    # Set execution permissions
    chmod +x CyberProtect_AgentForLinux_x86_64.bin

 

4. Agent installation

  1. Start the installation:

    # Run the installation script
    ./CyberProtect_AgentForLinux_x86_64.bin
  2. Use the Tab key to navigate and Enter to validate in the text interface.
  3. Select Install.
  4. Accept the automatic installation of missing dependencies via YUM.
  5. At the end of the process, choose Display registration information.
  6. Carefully note the Registration code displayed (e.g., ABCD-1234).

 

5. Registration on the Acronis console

  1. Go back to your Acronis console (browser).
  2. Click on Add, then at the bottom of the list, choose Registration by code.
  3. Enter the code obtained from the server and click on Validate.
  4. Important: On the plan selection screen, click on the dropdown menu
  5. and choose Do not apply.
  6. Click on Next
  7. then on Save.
  8. Check that your server appears in the list of terminals after a few seconds.

 

6. Creating the protection plan

  1. Click on the name of your server in the list, then on the Protect button.
  2. Choose Create a planProtection.
  3. Define your backup parameters (frequency, retention, destination).
  4. Attention: If you enable encryption, keep the password in a safe place. Without it, your backups will be unusable.
  5. Check the configuration and click on Create.

Has this FAQ been helpful?