WhitewaterFoundry / Fedora-Remix-for-WSL

Fedora Remix for Windows Subsystem for Linux.
Other
698 stars 51 forks source link

Unable to update #106

Open ukulanne opened 3 years ago

ukulanne commented 3 years ago

Some weeks ago I started seeing:

$ sudo dnf update Unable to detect release version (use '--releasever' to specify release version) Fedora $releasever openh264 (From Cisco) - x86_64 31 kB/s | 71 kB 00:02 Errors during downloading metadata for repository 'fedora-cisco-openh264':

I can add the release but tho the command completes, I have not been able to find any updates in weeks:

$ sudo dnf update --releasever 33 Last metadata expiration check: 0:07:06 ago on Mon 12 Apr 2021 11:05:48 AM CDT. Dependencies resolved. Nothing to do. Complete!

$ cat /etc/redhat-release Generic release 33 (Generic)

thanks

crramirez commented 3 years ago

Looks like your /etc/os-release file is corrupted. Could you please run these commands?

BASE_URL="https://raw.githubusercontent.com/WhitewaterFoundry/fedora-remix-rootfs-build/master"
sudo curl -L -f "${BASE_URL}/linux_files/os-release-33" -o /etc/os-release
curl -L -f "${BASE_URL}/linux_files/upgrade.sh" | bash

Regards, Carlos

ukulanne commented 3 years ago

[panda@pandatlan ~]$ export BASE_URL="https://raw.githubusercontent.com/WhitewaterFoundry/fedora-remix-rootfs-build/master" [panda@pandatlan ~]$ BASE_URL="https://raw.githubusercontent.com/WhitewaterFoundry/fedora-remix-rootfs-build/master" o curl -[panda@pandatlan ~]$ sudo curl -L -f "${BASE_URL}/linux_files/os-release-33" -o /etc/os-release % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 566 100 566 0 0 8323 0 --:--:-- --:--:-- --:--:-- 8323 [panda@pandatlan ~]$ [panda@pandatlan ~]$ sudo curl -L -f "${BASE_URL}/linux_files/upgrade.sh" | bash % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 1709 100 1709 0 0 25893 0 --:--:-- --:--:-- --:--:-- 25893 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 1709 100 1709 0 0 31072 0 --:--:-- --:--:-- --:--:-- 31072 /usr/local/bin/upgrade.sh: OK Unable to detect release version (use '--releasever' to specify release version) Fedora $releasever openh264 (From Cisco) - x86_64 23 kB/s | 71 kB 00:03 Errors during downloading metadata for repository 'fedora-cisco-openh264':

ukulanne commented 3 years ago

$ cat /etc/os-release NAME="Fedora Remix for WSL" VERSION="33" ID=fedoraremixforwsl ID_LIKE=fedora VERSION_ID=33 PLATFORM_ID="platform:f33" PRETTY_NAME="Fedora Remix for WSL" ANSI_COLOR="0;34" CPE_NAME="cpe:/o:fedoraproject:fedora:33" HOME_URL="https://github.com/WhitewaterFoundry/Fedora-Remix-for-WSL" SUPPORT_URL="https://github.com/WhitewaterFoundry/Fedora-Remix-for-WSL" BUG_REPORT_URL="https://github.com/WhitewaterFoundry/Fedora-Remix-for-WSL/issues" PRIVACY_POLICY_URL="https://github.com/WhitewaterFoundry/Fedora-Remix-for-WSL/blob/master/PRIVACY.md" FEDORA_REMIX_VERSION=33.2.1

rdelpellegrino commented 3 years ago

I also observed the same behaviour described.

The issue may be running it under WSL2. I found that converting the machine to WSL1 appeared to resolve the issue.

In an elevated powershell (or cmd) session

PS C:\WINDOWS\system32> wsl --set-version fedoraremix 1 Conversion in progress, this may take a few minutes... Conversion complete. PS C:\WINDOWS\system32>

Then when I ran the update again it worked.

e.g.

sudo yum check-update Copr repo for wslu owned by trustywolf 1.4 kB/s | 1.5 kB 00:01 Fedora 34 openh264 (From Cisco) - x86_64 2.0 kB/s | 2.5 kB 00:01 Fedora Modular 34 - x86_64 2.0 MB/s | 4.9 MB 00:02 Fedora Modular 34 - x86_64 - Updates 1.4 MB/s | 4.2 MB 00:03 Fedora 34 - x86_64 - Updates 3.9 MB/s | 10 MB 00:02 Fedora 34 - x86_64 7.3 MB/s | 74 MB 00:10 whitewaterfoundry_fedoraremix 8.1 kB/s | 34 kB 00:04 whitewaterfoundry_fedoraremix-source 74 B/s | 296 B 00:03

adwaita-cursor-theme.noarch 40.1.1-1.fc34 updates adwaita-icon-theme.noarch 40.1.1-1.fc34 update

cat /etc/os-release NAME="Fedora Remix for WSL" VERSION="34" ID=fedoraremixforwsl ID_LIKE=fedora VERSION_ID=34 PLATFORM_ID="platform:f34" PRETTY_NAME="Fedora Remix for WSL" ANSI_COLOR="0;34" CPE_NAME="cpe:/o:fedoraproject:fedora:34" HOME_URL="https://github.com/WhitewaterFoundry/Fedora-Remix-for-WSL" SUPPORT_URL="https://github.com/WhitewaterFoundry/Fedora-Remix-for-WSL" BUG_REPORT_URL="https://github.com/WhitewaterFoundry/Fedora-Remix-for-WSL/issues" PRIVACY_POLICY_URL="https://github.com/WhitewaterFoundry/Fedora-Remix-for-WSL/blob/master/PRIVACY.md" FEDORA_REMIX_VERSION=34.4.3

MS have made a bit of a mess with this, having two versions of WSL with different capabilities...

fire commented 3 years ago

Setting PS C:\WINDOWS\system32> wsl --set-version fedoraremix 2. works for me.

sudo yum install git git-lfs
faandg commented 3 years ago

I'm having the same issue (also started in April around the same time) and the suggestions above did not solve it for me. Seems like something went wrong during a previous dnf update causing my $releasever to be empty:

python -c 'import dnf, json; db = dnf.dnf.Base(); print(json.dumps(db.conf.substitutions, indent=2))'
{
  "arch": "x86_64",
  "basearch": "x86_64",
  "releasever": null
}

even though /etc/os-release seems to be intact:

NAME="Fedora Remix for WSL"
VERSION="33"
ID=fedoraremixforwsl
ID_LIKE=fedora
VERSION_ID=33
PLATFORM_ID="platform:f33"
PRETTY_NAME="Fedora Remix for WSL"
ANSI_COLOR="0;34"
CPE_NAME="cpe:/o:fedoraproject:fedora:33"
HOME_URL="https://github.com/WhitewaterFoundry/Fedora-Remix-for-WSL"
SUPPORT_URL="https://github.com/WhitewaterFoundry/Fedora-Remix-for-WSL"
BUG_REPORT_URL="https://github.com/WhitewaterFoundry/Fedora-Remix-for-WSL/issues"
PRIVACY_POLICY_URL="https://github.com/WhitewaterFoundry/Fedora-Remix-for-WSL/blob/master/PRIVACY.md"
FEDORA_REMIX_VERSION=33.4.0

EDIT: in my case the issue is solved by installing a package Updating did not do anything:

dnf update --releasever=33
Last metadata expiration check: 0:37:53 ago on Fri 28 May 2021 03:38:51 PM CEST.
Dependencies resolved.
Nothing to do.
Complete!

But installing:

dnf -y install java-1.8.0-openjdk java-1.8.0-openjdk-devel --releasever=33
....
Transaction Summary
244 Packages

Total download size: 151 M
Installed size: 701 M

Yes, 244 packages suddenly... releasever is now fixed

python -c 'import dnf, json; db = dnf.dnf.Base(); print(json.dumps(db.conf.substitutions, indent=2))'
{
  "arch": "x86_64",
  "basearch": "x86_64",
  "releasever": "33"
}
crramirez commented 3 years ago

Could you see in the list of just installed packages if "generic-release" is one of them?

faandg commented 3 years ago

hi @crramirez -- according to the dnf history it wasn't among them, but here is the full list:

dnf history info 24
Transaction ID : 24
Begin time     : Fri 28 May 2021 04:17:35 PM CEST
Begin rpmdb    : 0:da39a3ee5e6b4b0d3255bfef95601890afd80709
End time       : Fri 28 May 2021 04:18:02 PM CEST (27 seconds)
End rpmdb      : 244:53baf94e9f0a189ee0a95728bb77ca5dc5a6bf18
User           : root <root>
Return-Code    : Success
Releasever     : 33
Command Line   : -y install java-1.8.0-openjdk java-1.8.0-openjdk-devel --releasever=33
Comment        :
Packages Altered:
    Install acl-2.2.53-9.fc33.x86_64                                  @fedora
    Install alternatives-1.14-3.fc33.x86_64                           @fedora
    Install atk-2.36.0-2.fc33.x86_64                                  @fedora
    Install basesystem-11-10.fc33.noarch                              @fedora
    Install bash-5.0.17-2.fc33.x86_64                                 @fedora
    Install bzip2-libs-1.0.8-4.fc33.x86_64                            @fedora
    Install ca-certificates-2020.2.41-4.fc33.noarch                   @fedora
    Install cairo-1.16.0-9.fc33.x86_64                                @fedora
    Install cpio-2.13-8.fc33.x86_64                                   @fedora
    Install cracklib-2.9.6-24.fc33.x86_64                             @fedora
    Install cracklib-dicts-2.9.6-24.fc33.x86_64                       @fedora
    Install crypto-policies-20200918-1.git85dccc5.fc33.noarch         @fedora
    Install crypto-policies-scripts-20200918-1.git85dccc5.fc33.noarch @fedora
    Install cyrus-sasl-lib-2.1.27-6.fc33.x86_64                       @fedora
    Install dbus-1:1.12.20-2.fc33.x86_64                              @fedora
    Install dbus-common-1:1.12.20-2.fc33.noarch                       @fedora
    Install dbus-libs-1:1.12.20-2.fc33.x86_64                         @fedora
    Install dejavu-sans-fonts-2.37-15.fc33.noarch                     @fedora
    Install device-mapper-1.02.173-1.fc33.x86_64                      @fedora
    Install device-mapper-libs-1.02.173-1.fc33.x86_64                 @fedora
    Install expat-2.2.8-3.fc33.x86_64                                 @fedora
    Install file-5.39-3.fc33.x86_64                                   @fedora
    Install file-libs-5.39-3.fc33.x86_64                              @fedora
    Install filesystem-3.14-3.fc33.x86_64                             @fedora
    Install findutils-1:4.7.0-7.fc33.x86_64                           @fedora
    Install fontconfig-2.13.92-12.fc33.x86_64                         @fedora
    Install fonts-filesystem-1:2.0.5-4.fc33.noarch                    @fedora
    Install fribidi-1.0.10-3.fc33.x86_64                              @fedora
    Install fuse-libs-2.9.9-10.fc33.x86_64                            @fedora
    Install gawk-5.1.0-2.fc33.x86_64                                  @fedora
    Install gawk-all-langpacks-5.1.0-2.fc33.x86_64                    @fedora
    Install gettext-0.21-3.fc33.x86_64                                @fedora
    Install gettext-libs-0.21-3.fc33.x86_64                           @fedora
    Install giflib-5.2.1-6.fc33.x86_64                                @fedora
    Install gmp-1:6.2.0-5.fc33.x86_64                                 @fedora
    Install gnutls-3.6.15-1.fc33.x86_64                               @fedora
    Install graphite2-1.3.14-6.fc33.x86_64                            @fedora
    Install grep-3.4-5.fc33.x86_64                                    @fedora
    Install grubby-8.40-47.fc33.x86_64                                @fedora
    Install gzip-1.10-3.fc33.x86_64                                   @fedora
    Install harfbuzz-2.7.2-1.fc33.x86_64                              @fedora
    Install hicolor-icon-theme-0.17-9.fc33.noarch                     @fedora
    Install javapackages-filesystem-5.3.0-13.fc33.noarch              @fedora
    Install jbigkit-libs-2.1-19.fc33.x86_64                           @fedora
    Install json-c-0.14-7.fc33.x86_64                                 @fedora
    Install kbd-2.3.0-2.fc33.x86_64                                   @fedora
    Install kbd-legacy-2.3.0-2.fc33.noarch                            @fedora
    Install kbd-misc-2.3.0-2.fc33.noarch                              @fedora
    Install kmod-27-3.fc33.x86_64                                     @fedora
    Install kmod-libs-27-3.fc33.x86_64                                @fedora
    Install kpartx-0.8.4-7.fc33.x86_64                                @fedora
    Install langpacks-core-font-en-3.0-4.fc33.noarch                  @fedora
    Install libXau-1.0.9-4.fc33.x86_64                                @fedora
    Install libXcomposite-0.4.5-3.fc33.x86_64                         @fedora
    Install libXcursor-1.2.0-3.fc33.x86_64                            @fedora
    Install libXdamage-1.1.5-3.fc33.x86_64                            @fedora
    Install libXext-1.3.4-4.fc33.x86_64                               @fedora
    Install libXfixes-5.0.3-12.fc33.x86_64                            @fedora
    Install libXft-2.3.3-4.fc33.x86_64                                @fedora
    Install libXi-1.7.10-4.fc33.x86_64                                @fedora
    Install libXinerama-1.1.4-6.fc33.x86_64                           @fedora
    Install libXrandr-1.5.2-4.fc33.x86_64                             @fedora
    Install libXrender-0.9.10-12.fc33.x86_64                          @fedora
    Install libXtst-1.2.3-12.fc33.x86_64                              @fedora
    Install libacl-2.2.53-9.fc33.x86_64                               @fedora
    Install libargon2-20171227-5.fc33.x86_64                          @fedora
    Install libattr-2.4.48-10.fc33.x86_64                             @fedora
    Install libcap-ng-0.8-1.fc33.x86_64                               @fedora
    Install libcbor-0.5.0-7.fc33.x86_64                               @fedora
    Install libcom_err-1.45.6-4.fc33.x86_64                           @fedora
    Install libdatrie-0.2.9-12.fc33.x86_64                            @fedora
    Install libeconf-0.3.8-4.fc33.x86_64                              @fedora
    Install libevent-2.1.8-10.fc33.x86_64                             @fedora
    Install libffi-3.1-26.fc33.x86_64                                 @fedora
    Install libfido2-1.4.0-3.fc33.x86_64                              @fedora
    Install libfontenc-1.1.3-13.fc33.x86_64                           @fedora
    Install libidn2-2.3.0-4.fc33.x86_64                               @fedora
    Install libjpeg-turbo-2.0.5-5.fc33.x86_64                         @fedora
    Install libmetalink-0.1.3-13.fc33.x86_64                          @fedora
    Install libmnl-1.0.4-12.fc33.x86_64                               @fedora
    Install libnetfilter_conntrack-1.0.7-5.fc33.x86_64                @fedora
    Install libnfnetlink-1.0.1-18.fc33.x86_64                         @fedora
    Install libnl3-3.5.0-5.fc33.x86_64                                @fedora
    Install libnsl2-1.2.0-8.20180605git4a062cf.fc33.x86_64            @fedora
    Install libpsl-0.21.1-2.fc33.x86_64                               @fedora
    Install libseccomp-2.5.0-3.fc33.x86_64                            @fedora
    Install libselinux-3.1-2.fc33.x86_64                              @fedora
    Install libsemanage-3.1-2.fc33.x86_64                             @fedora
    Install libsepol-3.1-3.fc33.x86_64                                @fedora
    Install libsigsegv-2.11-11.fc33.x86_64                            @fedora
    Install libssh-0.9.5-1.fc33.x86_64                                @fedora
    Install libssh-config-0.9.5-1.fc33.noarch                         @fedora
    Install libtasn1-4.16.0-3.fc33.x86_64                             @fedora
    Install libtextstyle-0.21-3.fc33.x86_64                           @fedora
    Install libthai-0.1.28-5.fc33.x86_64                              @fedora
    Install libunistring-0.9.10-9.fc33.x86_64                         @fedora
    Install libutempter-1.2.1-2.fc33.x86_64                           @fedora
    Install libverto-0.3.0-10.fc33.x86_64                             @fedora
    Install libxcb-1.13.1-5.fc33.x86_64                               @fedora
    Install libxkbcommon-1.0.1-1.fc33.x86_64                          @fedora
    Install lksctp-tools-1.0.18-6.fc33.x86_64                         @fedora
    Install lua-posix-35.0-2.fc33.x86_64                              @fedora
    Install lz4-libs-1.9.1-3.fc33.x86_64                              @fedora
    Install memstrack-0.1.9-1.fc33.x86_64                             @fedora
    Install ncurses-6.2-3.20200222.fc33.x86_64                        @fedora
    Install ncurses-base-6.2-3.20200222.fc33.noarch                   @fedora
    Install ncurses-libs-6.2-3.20200222.fc33.x86_64                   @fedora
    Install nettle-3.6-3.fc33.x86_64                                  @fedora
    Install openldap-2.4.50-5.fc33.x86_64                             @fedora
    Install openssl-pkcs11-0.4.10-7.fc33.x86_64                       @fedora
    Install os-prober-1.77-6.fc33.x86_64                              @fedora
    Install pigz-2.4-7.fc33.x86_64                                    @fedora
    Install pixman-0.40.0-2.fc33.x86_64                               @fedora
    Install popt-1.18-2.fc33.x86_64                                   @fedora
    Install publicsuffix-list-dafsa-20190417-4.fc33.noarch            @fedora
    Install python-setuptools-wheel-49.1.3-1.fc33.noarch              @fedora
    Install python3-setuptools-49.1.3-1.fc33.noarch                   @fedora
    Install qrencode-libs-4.0.2-6.fc33.x86_64                         @fedora
    Install readline-8.0-5.fc33.x86_64                                @fedora
    Install sed-4.8-5.fc33.x86_64                                     @fedora
    Install setup-2.13.7-2.fc33.noarch                                @fedora
    Install shared-mime-info-2.0-3.fc33.x86_64                        @fedora
    Install ttmkfdir-3.0.9-62.fc33.x86_64                             @fedora
    Install which-2.21-20.fc33.x86_64                                 @fedora
    Install xkeyboard-config-2.30-3.fc33.noarch                       @fedora
    Install xml-common-0.6.3-55.fc33.noarch                           @fedora
    Install xorg-x11-fonts-Type1-7.5-25.fc33.noarch                   @fedora
    Install alsa-lib-1.2.4-5.fc33.x86_64                              @updates
    Install audit-libs-3.0.1-2.fc33.x86_64                            @updates
    Install avahi-libs-0.8-7.fc33.x86_64                              @updates
    Install copy-jdk-configs-4.0-0.fc33.noarch                        @updates
    Install coreutils-8.32-18.fc33.x86_64                             @updates
    Install coreutils-common-8.32-18.fc33.x86_64                      @updates
    Install cryptsetup-libs-2.3.5-2.fc33.x86_64                       @updates
    Install cups-libs-1:2.3.3op2-7.fc33.x86_64                        @updates
    Install curl-7.71.1-9.fc33.x86_64                                 @updates
    Install dbus-broker-28-3.fc33.x86_64                              @updates
    Install diffutils-3.7-7.fc33.x86_64                               @updates
    Install dracut-050-64.git20200529.fc33.x86_64                     @updates
    Install elfutils-debuginfod-client-0.183-1.fc33.x86_64            @updates
    Install elfutils-default-yama-scope-0.183-1.fc33.noarch           @updates
    Install elfutils-libelf-0.183-1.fc33.x86_64                       @updates
    Install elfutils-libs-0.183-1.fc33.x86_64                         @updates
    Install fedora-gpg-keys-33-5.noarch                               @updates
    Install fedora-release-33-4.noarch                                @updates
    Install fedora-release-common-33-4.noarch                         @updates
    Install fedora-release-identity-basic-33-4.noarch                 @updates
    Install fedora-repos-33-5.noarch                                  @updates
    Install freetype-2.10.4-1.fc33.x86_64                             @updates
    Install gdbm-libs-1:1.19-1.fc33.x86_64                            @updates
    Install gdk-pixbuf2-2.42.6-1.fc33.x86_64                          @updates
    Install gdk-pixbuf2-modules-2.42.6-1.fc33.x86_64                  @updates
    Install glib2-2.66.8-1.fc33.x86_64                                @updates
    Install glibc-2.32-6.fc33.x86_64                                  @updates
    Install glibc-all-langpacks-2.32-6.fc33.x86_64                    @updates
    Install glibc-common-2.32-6.fc33.x86_64                           @updates
    Install grub2-common-1:2.06~rc1-2.fc33.noarch                     @updates
    Install grub2-tools-1:2.06~rc1-2.fc33.x86_64                      @updates
    Install grub2-tools-minimal-1:2.06~rc1-2.fc33.x86_64              @updates
    Install gtk-update-icon-cache-3.24.29-1.fc33.x86_64               @updates
    Install gtk2-2.24.33-1.fc33.x86_64                                @updates
    Install hwdata-0.347-1.fc33.noarch                                @updates
    Install iptables-libs-1.8.5-6.fc33.x86_64                         @updates
    Install java-1.8.0-openjdk-1:1.8.0.292.b10-3.fc33.x86_64          @updates
    Install java-1.8.0-openjdk-devel-1:1.8.0.292.b10-3.fc33.x86_64    @updates
    Install java-1.8.0-openjdk-headless-1:1.8.0.292.b10-3.fc33.x86_64 @updates
    Install keyutils-libs-1.6.1-1.fc33.x86_64                         @updates
    Install krb5-libs-1.18.2-29.fc33.x86_64                           @updates
    Install libX11-1.6.12-3.fc33.x86_64                               @updates
    Install libX11-common-1.6.12-3.fc33.noarch                        @updates
    Install libarchive-3.5.1-1.fc33.x86_64                            @updates
    Install libblkid-2.36.1-1.fc33.x86_64                             @updates
    Install libbrotli-1.0.9-3.fc33.x86_64                             @updates
    Install libcap-2.48-2.fc33.x86_64                                 @updates
    Install libcurl-7.71.1-9.fc33.x86_64                              @updates
    Install libdb-5.3.28-45.fc33.x86_64                               @updates
    Install libfdisk-2.36.1-1.fc33.x86_64                             @updates
    Install libgcc-10.3.1-1.fc33.x86_64                               @updates
    Install libgcrypt-1.8.7-1.fc33.x86_64                             @updates
    Install libgomp-10.3.1-1.fc33.x86_64                              @updates
    Install libgpg-error-1.41-1.fc33.x86_64                           @updates
    Install libibverbs-35.0-1.fc33.x86_64                             @updates
    Install libkcapi-1.2.1-1.fc33.x86_64                              @updates
    Install libkcapi-hmaccalc-1.2.1-1.fc33.x86_64                     @updates
    Install libmount-2.36.1-1.fc33.x86_64                             @updates
    Install libnghttp2-1.43.0-1.fc33.x86_64                           @updates
    Install libpcap-14:1.10.0-1.fc33.x86_64                           @updates
    Install libpkgconf-1.7.3-5.fc33.x86_64                            @updates
    Install libpng-2:1.6.37-6.fc33.x86_64                             @updates
    Install libpwquality-1.4.4-2.fc33.x86_64                          @updates
    Install libsmartcols-2.36.1-1.fc33.x86_64                         @updates
    Install libstdc++-10.3.1-1.fc33.x86_64                            @updates
    Install libtiff-4.1.0-8.fc33.x86_64                               @updates
    Install libtirpc-1.2.6-3.rc4.fc33.x86_64                          @updates
    Install libuuid-2.36.1-1.fc33.x86_64                              @updates
    Install libwebp-1.2.0-1.fc33.x86_64                               @updates
    Install libxcrypt-4.4.20-2.fc33.x86_64                            @updates
    Install libxcrypt-compat-4.4.20-2.fc33.x86_64                     @updates
    Install libxml2-2.9.10-8.fc33.x86_64                              @updates
    Install libzstd-1.5.0-1.fc33.x86_64                               @updates
    Install lua-5.4.2-1.fc33.x86_64                                   @updates
    Install lua-libs-5.4.2-1.fc33.x86_64                              @updates
    Install mkpasswd-5.5.9-1.fc33.x86_64                              @updates
    Install mpfr-4.1.0-6.fc33.x86_64                                  @updates
    Install openssl-libs-1:1.1.1k-1.fc33.x86_64                       @updates
    Install p11-kit-0.23.22-2.fc33.x86_64                             @updates
    Install p11-kit-trust-0.23.22-2.fc33.x86_64                       @updates
    Install pam-1.4.0-10.fc33.x86_64                                  @updates
    Install pango-1.48.4-1.fc33.x86_64                                @updates
    Install pciutils-3.7.0-3.fc33.x86_64                              @updates
    Install pciutils-libs-3.7.0-3.fc33.x86_64                         @updates
    Install pcre-8.44-2.fc33.x86_64                                   @updates
    Install pcre2-10.36-4.fc33.x86_64                                 @updates
    Install pcre2-syntax-10.36-4.fc33.noarch                          @updates
    Install pkgconf-1.7.3-5.fc33.x86_64                               @updates
    Install pkgconf-m4-1.7.3-5.fc33.noarch                            @updates
    Install pkgconf-pkg-config-1.7.3-5.fc33.x86_64                    @updates
    Install procps-ng-3.3.16-2.fc33.x86_64                            @updates
    Install python-pip-wheel-20.2.2-2.fc33.noarch                     @updates
    Install python-unversioned-command-3.9.5-2.fc33.noarch            @updates
    Install python3-3.9.5-2.fc33.x86_64                               @updates
    Install python3-libs-3.9.5-2.fc33.x86_64                          @updates
    Install python3-pip-20.2.2-2.fc33.noarch                          @updates
    Install rdma-core-35.0-1.fc33.x86_64                              @updates
    Install rpm-4.16.1.3-1.fc33.x86_64                                @updates
    Install rpm-libs-4.16.1.3-1.fc33.x86_64                           @updates
    Install shadow-utils-2:4.8.1-6.fc33.x86_64                        @updates
    Install sqlite-libs-3.34.1-1.fc33.x86_64                          @updates
    Install systemd-246.14-1.fc33.x86_64                              @updates
    Install systemd-libs-246.14-1.fc33.x86_64                         @updates
    Install systemd-networkd-246.14-1.fc33.x86_64                     @updates
    Install systemd-pam-246.14-1.fc33.x86_64                          @updates
    Install systemd-rpm-macros-246.14-1.fc33.noarch                   @updates
    Install systemd-udev-246.14-1.fc33.x86_64                         @updates
    Install trousers-0.3.14-4.fc33.x86_64                             @updates
    Install trousers-lib-0.3.14-4.fc33.x86_64                         @updates
    Install tzdata-2021a-1.fc33.noarch                                @updates
    Install tzdata-java-2021a-1.fc33.noarch                           @updates
    Install util-linux-2.36.1-1.fc33.x86_64                           @updates
    Install whois-nls-5.5.9-1.fc33.noarch                             @updates
    Install xorg-x11-font-utils-1:7.5-47.fc33.x86_64                  @updates
    Install xz-5.2.5-4.fc33.x86_64                                    @updates
    Install xz-libs-5.2.5-4.fc33.x86_64                               @updates
    Install zlib-1.2.11-23.fc33.x86_64                                @updates
Scriptlet output:
   1 warning: /etc/yum.repos.d/fedora-cisco-openh264.repo created as /etc/yum.repos.d/fedora-cisco-openh264.repo.rpmnew
   2 warning: /etc/yum.repos.d/fedora-updates-testing.repo created as /etc/yum.repos.d/fedora-updates-testing.repo.rpmnew
   3 warning: /etc/yum.repos.d/fedora-updates.repo created as /etc/yum.repos.d/fedora-updates.repo.rpmnew
   4 warning: /etc/yum.repos.d/fedora.repo created as /etc/yum.repos.d/fedora.repo.rpmnew
   5 warning: /etc/group created as /etc/group.rpmnew
   6 warning: /etc/gshadow created as /etc/gshadow.rpmnew
   7 warning: /etc/hosts created as /etc/hosts.rpmnew
   8 warning: /etc/passwd created as /etc/passwd.rpmnew
   9 warning: /etc/shadow created as /etc/shadow.rpmnew
  10 warning: /etc/shells created as /etc/shells.rpmnew
  11 warning: /etc/subgid created as /etc/subgid.rpmnew
  12 warning: /etc/subuid created as /etc/subuid.rpmnew
  13 warning: /etc/nsswitch.conf created as /etc/nsswitch.conf.rpmnew
  14 warning: /etc/xml/catalog created as /etc/xml/catalog.rpmnew
  15 Couldn't write '0' to 'kernel/yama/ptrace_scope', ignoring: No such file or directory
  16 warning: /etc/systemd/networkd.conf created as /etc/systemd/networkd.conf.rpmnew
  17 Skipping presets for systemd-networkd.service, seems we are upgrading from old systemd.
  18 warning: /etc/systemd/resolved.conf created as /etc/systemd/resolved.conf.rpmnew
  19 warning: /etc/systemd/system.conf created as /etc/systemd/system.conf.rpmnew
crramirez commented 3 years ago

Ok, it installed "fedora-release-33-4.noarch" which makes me think that generic-release was not there.

Thanks for the detail and contribution

So, for others, if you face this issue try to install generic-release, or if you cannot use fedora-release