1

Topic: Error updating system

==== REQUIRED BASIC INFO OF YOUR IREDMAIL SERVER ====
- iRedMail version (check /etc/iredmail-release): 1.6.2 MARIADB edition
- Deployed with iRedMail Easy or the downloadable installer? Installer
- Linux/BSD distribution name and version: AlmaLinux 8
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): MariaDB
- Web server (Apache or Nginx): Nginx
- Manage mail accounts with iRedAdmin-Pro? No
- [IMPORTANT] Related original log or error message is required if you're experiencing an issue.
====

While performing a 'dnf update' today I got the following error. Any idea how to solve?

Error:
Problem 1: package sope49-sbjson-2.3.1-20221208_1664.el8.1.1.x86_64 requires libgnustep-base.so.1.24()(64bit), but none of the providers can be installed
  - cannot install both gnustep-base-libs-1.28.0-3.el8.x86_64 and gnustep-base-libs-1.24.9-1.el8.x86_64
  - cannot install both gnustep-base-libs-1.24.9-1.el8.x86_64 and gnustep-base-libs-1.28.0-3.el8.x86_64
  - cannot install the best update candidate for package sope49-sbjson-2.3.1-20220817_1664.el8.1.1.x86_64
  - cannot install the best update candidate for package gnustep-base-libs-1.24.9-1.el8.x86_64
Problem 2: package sogo-5.8.0.20221230-1.el8.x86_64 requires sope49-sbjson, but none of the providers can be installed
  - package sope49-sbjson-2.3.1-20220817_1664.el8.1.1.x86_64 requires libgnustep-base.so.1.24()(64bit), but none of the providers can be installed
  - package sope49-sbjson-2.3.1-20221208_1664.el8.1.1.x86_64 requires libgnustep-base.so.1.24()(64bit), but none of the providers can be installed
  - cannot install both gnustep-base-libs-1.28.0-3.el8.x86_64 and gnustep-base-libs-1.24.9-1.el8.x86_64
  - cannot install both gnustep-base-libs-1.24.9-1.el8.x86_64 and gnustep-base-libs-1.28.0-3.el8.x86_64
  - package gnustep-base-1.28.0-3.el8.x86_64 requires libgnustep-base.so.1.28()(64bit), but none of the providers can be installed
  - package gnustep-base-1.28.0-3.el8.x86_64 requires gnustep-base-libs(x86-64) = 1.28.0-3.el8, but none of the providers can be installed
  - cannot install the best update candidate for package sogo-5.7.1.20221018-1.el8.x86_64
  - cannot install the best update candidate for package gnustep-base-1.24.9-1.el8.x86_64

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2 (edited by Cthulhu 2023-01-01 02:40:15)

Re: Error updating system

Try this:

sudo rpm --import "http://pgp.mit.edu/pks/lookup?op=get&search=0xCB2D3A2AA0030E2C"
sudo rpm --import "https://keys.openpgp.org/vks/v1/by-fingerprint/74FFC6D72B925A34B5D356BDF8A27B36A6E2EAE9"
sudo tee /etc/yum.repos.d/SOGo.repo <<EOF
[sogo]
name=SOGo Repository
baseurl=https://packages.sogo.nu/nightly/5/rhel/8/\$basearch
gpgcheck=1
EOF
sudo yum install sogo

3 (edited by xof 2023-01-02 19:04:44)

Re: Error updating system

Cthulhu wrote:

Try this:

sudo rpm --import "hxxp://pgp.mit.edu/pks/lookup?op=get&search=0xCB2D3A2AA0030E2C"

The first command is giving an error so I stopped there.

curl: (22) The requested URL returned error: 408 Request Timeout
error: hxxp://pgp.mit.edu/pks/lookup?op=get&search=0xCB2D3A2AA0030E2C: import read failed(2).

Is this working on your end?

4

Re: Error updating system

Try to exclude "gnustep" packages in EPEL repo by adding a `excude=` line in the [epel] section in /etc/yum.repos.d/epel.repo:

[epel]
...
exclude=gnustep*

5

Re: Error updating system

That worked. Thank you.