Upgrade from 9.4 to 9.5

Something isn’t right here.

I did a DNF upgrade and I’m still seeing these:

$ sudo dnf upgrade --refresh
[sudo] password for scott: 
AlmaLinux 9.4-beta - AppStream                                                          6.4 kB/s | 4.8 kB     00:00    
AlmaLinux 9.4-beta - BaseOS                                                             7.1 kB/s | 4.3 kB     00:00    
AlmaLinux 9 - CRB                                                                       7.4 kB/s | 4.2 kB     00:00    
AlmaLinux 9.4-beta - Extras                                                             7.4 kB/s | 4.3 kB     00:00    
AlmaLinux 9.4-beta - Plus                                                               5.5 kB/s | 3.5 kB     00:00    
Extra Packages for Enterprise Linux 9 - x86_64                                           47 kB/s |  36 kB     00:00    
Extra Packages for Enterprise Linux 9 openh264 (From Cisco) - x86_64                    3.1 kB/s | 993  B     00:00    
Extra Packages for Enterprise Linux 9 - Testing - x86_64                                 57 kB/s |  24 kB     00:00    
Dependencies resolved.
Nothing to do.
Complete!

ABD

$ cat /etc/os-release
NAME="AlmaLinux"
VERSION="9.4 (Seafoam Ocelot)"
ID="almalinux"
ID_LIKE="rhel centos fedora"
VERSION_ID="9.4"
PLATFORM_ID="platform:el9"
PRETTY_NAME="AlmaLinux 9.4 Beta (Seafoam Ocelot)"
ANSI_COLOR="0;34"
LOGO="fedora-logo-icon"
CPE_NAME="cpe:/o:almalinux:almalinux:9::baseos"
HOME_URL="https://almalinux.org/"
DOCUMENTATION_URL="https://wiki.almalinux.org/"
BUG_REPORT_URL="https://bugs.almalinux.org/"

ALMALINUX_MANTISBT_PROJECT="AlmaLinux-9"
ALMALINUX_MANTISBT_PROJECT_VERSION="9.4"
REDHAT_SUPPORT_PRODUCT="AlmaLinux"
REDHAT_SUPPORT_PRODUCT_VERSION="9.4 Beta"

You seem to have repo definitions that point to some “beta”, not to correct repos.

sudo dnf repolist all
$ sudo dnf repolist all
[sudo] password for scott: 
repo id                         repo name                                                                       status
appstream                       AlmaLinux 9.4-beta - AppStream                                                  enabled
appstream-debuginfo             AlmaLinux 9.4-beta - AppStream - Debug                                          disabled
appstream-source                AlmaLinux 9.4-beta - AppStream - Source                                         disabled
baseos                          AlmaLinux 9.4-beta - BaseOS                                                     enabled
baseos-debuginfo                AlmaLinux 9.4-beta - BaseOS - Debug                                             disabled
baseos-source                   AlmaLinux 9.4-beta - BaseOS - Source                                            disabled
crb                             AlmaLinux 9 - CRB                                                               enabled
crb-debuginfo                   AlmaLinux 9 - CRB - Debug                                                       disabled
crb-source                      AlmaLinux 9 - CRB - Source                                                      disabled
epel                            Extra Packages for Enterprise Linux 9 - x86_64                                  enabled
epel-cisco-openh264             Extra Packages for Enterprise Linux 9 openh264 (From Cisco) - x86_64            enabled
epel-cisco-openh264-debuginfo   Extra Packages for Enterprise Linux 9 openh264 (From Cisco) - x86_64 - Debug    disabled
epel-cisco-openh264-source      Extra Packages for Enterprise Linux 9 openh264 (From Cisco) - x86_64 - Source   disabled
epel-debuginfo                  Extra Packages for Enterprise Linux 9 - x86_64 - Debug                          disabled
epel-source                     Extra Packages for Enterprise Linux 9 - x86_64 - Source                         disabled
epel-testing                    Extra Packages for Enterprise Linux 9 - Testing - x86_64                        enabled
epel-testing-debuginfo          Extra Packages for Enterprise Linux 9 - Testing - x86_64 - Debug                disabled
epel-testing-source             Extra Packages for Enterprise Linux 9 - Testing - x86_64 - Source               disabled
extras                          AlmaLinux 9.4-beta - Extras                                                     enabled
extras-debuginfo                AlmaLinux 9.4-beta - Extras - Debug                                             disabled
extras-source                   AlmaLinux 9.4-beta - Extras - Source                                            disabled
highavailability                AlmaLinux 9.4-beta - HighAvailability                                           disabled
highavailability-debuginfo      AlmaLinux 9.4-beta - HighAvailability - Debug                                   disabled
highavailability-source         AlmaLinux 9.4-beta - HighAvailability - Source                                  disabled
nfv                             AlmaLinux 9.4-beta - NFV                                                        disabled
nfv-debuginfo                   AlmaLinux 9.4-beta - NFV - Debug                                                disabled
nfv-source                      AlmaLinux 9.4-beta - NFV - Source                                               disabled
plus                            AlmaLinux 9.4-beta - Plus                                                       enabled
plus-debuginfo                  AlmaLinux 9.4-beta - Plus - Debug                                               disabled
plus-source                     AlmaLinux 9.4-beta - Plus - Source                                              disabled
resilientstorage                AlmaLinux 9.4-beta - ResilientStorage                                           disabled
resilientstorage-debuginfo      AlmaLinux 9.4-beta - ResilientStorage - Debug                                   disabled
resilientstorage-source         AlmaLinux 9.4-beta - ResilientStorage - Source                                  disabled
rt                              AlmaLinux 9.4-beta - RT                                                         disabled
rt-debuginfo                    AlmaLinux 9.4-beta - RT - Debug                                                 disabled
rt-source                       AlmaLinux 9.4-beta - RT - Source                                                disabled
sap                             AlmaLinux 9.4-beta - SAP                                                        disabled
sap-debuginfo                   AlmaLinux 9.4-beta - SAP - Debug                                                disabled
sap-source                      AlmaLinux 9.4-beta - SAP - Source                                               disabled
saphana                         AlmaLinux 9.4-beta - SAPHANA                                                    disabled
saphana-debuginfo               AlmaLinux 9.4-beta - SAPHANA - Debug                                            disabled
saphana-source                  AlmaLinux 9.4-beta - SAPHANA - Source                                           disabled

This is what I would do:

  1. Create repo file: /etc/yum.repos.d/scott.repo
[scott]
name=Rescue
mirrorlist=https://mirrors.almalinux.org/mirrorlist/$releasever/baseos
enabled=1
gpgcheck=1
countme=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux-9
metadata_expire=86400
enabled_metadata=1
  1. Run sudo dnf up alma\*
  2. If that changes the other repos (removes “beta”) and makes more packages visible (in sudo dnf check-update), then remove the /etc/yum.repos.d/scott.repo as you are good to go.
1 Like

Thank you so much! That fixed it.