Upgrade CentOS to Rocky Linux

if you update behind a proxy server:

sudo sed -i "/^enabled=.*/a proxy=<YOUR PROXY:PORT>"  /etc/leapp/files/leapp_upgrade_repositories.repo
sudo sed -i "/^enabled=.*/a proxy=<YOUR PROXY:PORT>"  /etc/leapp/files/vendors.d/epel.repo

MORE ERROR: https://neilrieck.net/docs/linux_notes_leapp.html

Step 1: Create a Backup

Before migrating any system, the best practice is to create backups and snapshots of the system. The exact steps depend on the infrastructure, but a bare-metal restore is recommended. Tools such as the dd command and reliable backup and restore solutions are recommended before moving production systems.

Important: It is highly recommended to do a trial run of the migration in a sandbox environment before commiting.

Step 2: Install Migration Packages

Install the required packages for migration. Follow the steps below:

1. Install the elevate-release package from the repository for the latest version. Use the following command:

sudo yum install -y http://repo.almalinux.org/elevate/elevate-release-latest-el$(rpm --eval %rhel).noarch.rpm

sudo yum install elevate CentOS 7

2. Install the Leapp migration data packages for Rocky Linux and the upgrade utility with the following:

sudo yum install -y leapp-upgrade leapp-data-rocky

sudo yum install leapp-upgrade leapp-data-rocky CentOS 7

Note: Other options include centosalmalinuxeurolinux, and oraclelinux.

The Leapp utility handles OS and application upgrades.

Step 3: Run Pre-Upgrade Checks

Run a pre-upgrade to do a system check before upgrading:

sudo leapp preupgrade

leapp preupgrade results inhibited CentOS 7 terminal output

The pre-upgrade takes some time. When completed, it generates files in the /var/log/leapp/ directory that contain all potential upgrade issues and how to address them. The following files contain crucial information:

  • answerfile - Contains questions that require a true or false answer to proceed with the upgrade.
  • leapp-report.txt - Contains all possible problems and fixes to perform before or after the upgrade.
  • leapp-preupgrade.log - The complete pre-upgrade log and debug output.

Check the first two files and perform all required pre-upgrade actions. Some common pre-upgrade fixes when migrating from CentOS 7 are:

1. Removing the pata_acpi kernel module:

sudo rmmod pata_acpi

2. Updating the SSH config file to permit root login:

echo PermitRootLogin yes | sudo tee -a /etc/ssh/sshd_config

3. Confirming the removal of the PAM PKCS#11 module:

sudo leapp answer --section remove_pam_pkcs11_module_check.confirm=True

Pre-upgrade common fixes terminal output CentOS 7

The command updates the answerfile, confirming the removal.

Address all fixes and rerun the pre-upgrade command to confirm everything is fixed:

sudo leapp preupgrade

leapp upgrade results success terminal output CentOS 7

The system is ready for upgrade when the "Upgrade Inhibited" message disappears.

Step 4: Run Upgrade

When no more suggested actions exist, the system is ready to upgrade. Proceed with the OS upgrade steps below:

1. Run the Leapp upgrade command:

sudo leapp upgrade

sudo leapp upgrade CentOS 7 to Rocky Linux 8 terminal output

Wait for the upgrade to complete. If the upgrade fails, return to the previous step and address any issues missed in the pre-upgrade check.

2. When the process completes successfully, reboot the machine:

reboot

The reboot is required for the package-swapping process to begin.

3. The GRUB menu shows a new entry called ELevate-Upgrade-Initramfs.

Grub entry elevate-upgrade-initramfs

After five seconds, the system automatically boots into this selection and continues the upgrade process.

4. The system restarts twice more after the upgrades. When the restarts are complete, the GRUB menu shows a Rocky Linux 8 entry.

Grub entry Rocky Linux 8

The entry indicates a successful upgrade from CentOS 7 to Rocky Linux 8. The system automatically boots into the upgraded version.

Step 5: Post-Upgrade Steps

After the upgrade, complete the following post-upgrade tasks:

1. Log in as the root user using the same credentials from the CentOS 7 system.

2. Clean up any orphaned packages from CentOS 7:

rpm -qa | grep -E 'el7[.-]' | xargs rpm -e

The command searches for and removes all unnecessary CentOS packages and may hinder the following upgrade.


Kickstart RHEL 9 / Rocky Linux 9 / AlmaLinux 9

kickstart  — metoda szybkiej instalacji systemów operacyjnych opartych na systemie Red Hat. Automatyczna instalacja systemu Linux w trybie wsadowym.

Zmiany wprowadzono wraz z wydaniem RHEL 9 / AlmaLinux 9 / Rocky Linux 9

  • Zdalna autoryzacja użytkownika root domyślnie zablokowana

Aby przywrócić autoryzację użytkownikowi root, należy uruchomić następujące polecenia:

  • Ustawienia interfejsu sieciowego zostały całkowicie przerobione i teraz znajdują się:

Pakiet skryptów sieciowych został usunięty. Aby skonfigurować interfejs sieciowy, nadal możesz użyć pseudograficznego narzędzia nmtui lub mncli


Konfiguracja kickstart dla wygląda następująco:


# version=RHEL9
# Use text install
text
# License agreement
eula --agreed
# Reboot after installation
reboot --eject
# System language
lang en_US --addsupport=pl_PL
# Keyboard layouts
keyboard --vckeymap=pl --xlayouts='us','pl' --switch='grp:alt_shift_toggle'
# System authorization information
auth --enableshadow --passalgo=sha512
# Use CDROM installation media
cdrom
 
# Network information
#network  --bootproto=dhcp --device=link --ipv6=auto --activate
network --bootproto=static --device=link --gateway=10.0.2.2 --ip=10.0.2.15 --nameserver=8.8.8.8,8.8.4.4 --netmask=255.255.255.0 --ipv6=auto --activate
network --hostname=localhost
 
# Root password
rootpw --iscrypted $HASHA_PASSWORD
# Add user
user --groups=wheel --name=admin --iscrypted --password=$HASHA_PASSWORD
 
# Add ssh user key
sshkey --username=root "ssh-ed25519 HASH ed25519-root"
sshkey --username=admin "ssh-ed25519 HASH ed25519-admin"
 
# Disable the Setup Agent on first boot
firstboot --disable
# Do not configure the X Window System
skipx
# System services
#services --disabled="chronyd"
# System timezone
timezone Europe/Warsaw --utc
 
# System bootloader configuration
bootloader --append=" crashkernel=auto" --location=mbr --boot-drive=sda
# Partition clearing information
zerombr
clearpart --all --initlabel --disklabel=gpt --drives=sda
#clearpart --all --initlabel --drives=sda,sdb
 
# Disk partitioning information
part /boot --fstype="xfs" --size=1024 --label="boot" --ondisk=sda
part biosboot --fstype="biosboot" --size=1 --ondisk=sda
#part /boot/efi --fstype="xfs" --size=200 --label="efi" --ondisk=sda
part pv.1874 --fstype="lvmpv" --ondisk=sda --size=1 --grow
#part pv.7906 --fstype="lvmpv" --ondisk=sdb --size=1 --grow
volgroup rl --pesize=4096 pv.1874
#volgroup vg_docker --pesize=4096 pv.7906
logvol swap  --fstype="swap" --size=1024 --name=swap --vgname=rl
#logvol /var  --fstype="xfs" --size=1024 --grow --name=var --vgname=rl
logvol /  --fstype="xfs" --size=1024 --grow --name=root --vgname=rl
#logvol /var/lib/docker  --fstype="xfs" --size=1024 --grow --name=lv_docker --vgname=vg_docker
 
# Create repositories
repo --name=BaseOS --baseurl=https://download.rockylinux.org/pub/rocky/9/BaseOS/x86_64/os/
repo --name=AppStream --baseurl=https://download.rockylinux.org/pub/rocky/9/AppStream/x86_64/os/
repo --name=Extras --baseurl=https://download.rockylinux.org/pub/rocky/9/extras/x86_64/os/
 
%packages
@^minimal-environment
wget
curl
traceroute
net-tools
nano
bind-utils
telnet
lsof
git
rsync
policycoreutils-python-utils
tcpdump
mlocate
cloud-utils-growpart
 
%end

LinkWithin-4

Related Posts Plugin for WordPress, Blogger...