skip to Main Content

After updating graphics card and during installation of Steam on CentOS 8 I get:

[root@comp pawel]# yum install epel-release
    Error:
     Problem: conflicting requests
      - nothing provides libxcrypt-compat(x86-32) needed by steam-1.0.0.66-2.el8.i686

[root@comp pawel]# yum install libxcrypt-compat
No match for argument: libxcrypt-compat

[root@comp pawel]# yum install libxcrypt

libxcrypt-4.1.1-4.el8.x86_64 is already installed.
libxcrypt-4.1.1-4.el8.i686 is already installed.

I have epel version:

epel-release-8-8.el8.noarch is already installed.

How to install Steam?

3

Answers


  1. Chosen as BEST ANSWER

    The latest version is broken. The solution is installation of older version.


  2. Try the following
    yum upgrade
    yum update
    yum install libxcrypt-compat
    yum install epel-release

    Login or Signup to reply.
  3. you will get rpm here https://centos.pkgs.org/8/centos-baseos-x86_64/libxcrypt-4.1.1-4.el8.x86_64.rpm.html

    then try rpm –i libxcrypt-4.1.1-4.el8.x86_64.rpm
    and then
    yum install epel-release

    you may get more dependencies. same way

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search