DaDesktop

AlmaLinux8

v1 : Initial template for migration from CentOS8 template due to EOL. Almalinux is a 1:1 binary replacement for CentOS8.
 

Migration notes for those wishing to Upgrade/Migrate their CentOS8 templates

This is from the official guide by AlmaLinux, which can be found at https://github.com/AlmaLinux/almalinux-deploy. Please refer to the latest version at that link; the text below is provided for reference as of 29 March 2022.

This information is provided as a guide for our community; however, we assume no responsibility for any errors or issues that may arise from these notes.
 

almalinux-deploy

An EL to AlmaLinux migration tool.

Usage

To convert your EL8 operating system to AlmaLinux, follow these steps:

  1. You need CentOS 8.4 or 8.5 to migrate to AlmaLinux. While updating to 8.5 beforehand is recommended, it's not required if you're already running at least CentOS 8.4. A reboot after the updates is advised if new packages have been installed.

    sudo dnf update -y
    sudo reboot
    
  1. Back up your system. We haven't tested every possible scenario, so there's a risk something could go wrong. If that happens, you'll have a restore point.

  2. Download the almalinux-deploy.sh script:

    $ curl -O https://raw.githubusercontent.com/AlmaLinux/almalinux-deploy/master/almalinux-deploy.sh
  3. Run the script and check its output for errors:

    $ sudo bash almalinux-deploy.sh
      ...
      Migration to AlmaLinux is completed
  4. A reboot is recommended to boot with the AlmaLinux kernel:

    sudo reboot
    
  5. Confirm that your system has been successfully migrated:

    # check release file
    $ cat /etc/redhat-release
    AlmaLinux release 8.5 (Arctic Sphynx)
    
    # check that the system boots AlmaLinux kernel by default
    $ sudo grubby --info DEFAULT | grep AlmaLinux
    title="AlmaLinux (4.18.0-348.el8.x86_64) 8.5 (Arctic Sphynx)"
  6. Thank you for choosing AlmaLinux!