Estou executando uma VM Fedora em um host Fedora e estou tentando instalar o emacs. Por motivos, não consigo acessar a internet da VM. Posso fazer rsync entre o host e a VM, mas yum/apt/etc é uma caixa preta para mim, então não tenho certeza se há algo que preciso copiar além de /bin/emacs ou /usr/bin/emacs (também não tenho certeza da diferença aí?)
Desde pelo menos ontem, meu Manjaro (kernel 6.1.112-1) falha em abrir a GUI do gerenciador de software. No entanto, ele consegue abri-lo em outras instâncias: quando o pequeno ícone me lembra que há atualizações a serem feitas, ele abre a GUI do gerenciador de software na aba de atualização e eu consigo executar atualizações, mas ele trava quando tento alternar para outra aba. Quando não há atualizações a serem feitas, não consigo abri-lo com nenhum dos cliques usuais do mouse - em vez disso, recebo apenas uma mensagem "adição/exclusão de software iniciada (falha)" (traduzido aproximadamente do idioma do meu sistema). No entanto, consigo abri-lo via terminal pamac-manager %U
e, se aberto dessa forma, posso alternar livremente as abas (ainda não tentei abri-lo dessa forma, atualizar algo e verificar se ainda funciona, só porque agora não há atualizações a serem feitas). sudo pacman -Syu
revela que tudo está atualizado (já que uma pesquisa no Google revelou que esse era o problema para outra pessoa).
Talvez um de vocês possa me ajudar com onde procurar o problema ou o que mais verificar ou tentar. Sou grato por quaisquer ideias.
Quando migrei do Windows para o Linux, fui misericordiosamente abençoado com gerenciadores de pacotes. Na maioria das vezes, os repositórios oficiais da minha distro (atualmente Debian 12) terão o pacote que preciso. Mas às vezes não, o que significa que se eu quiser instalar alguns aplicativos, tenho que fazer isso sem passar pelo gerenciador de pacotes; talvez clonando um repositório do GitHub e compilando a partir do código-fonte, ou usando wget
ou curl
para obter um instalador feito sob medida dos desenvolvedores.
É seguro fazer isso? Não estou perguntando sobre a confiabilidade desses pacotes. Em vez disso, isso quebrará o sistema de gerenciamento de pacotes se eu fizer isso? Os pacotes instalados dessa forma serão atualizados quando eu usar o gerenciador de pacotes da minha distribuição para executar uma atualização em todo o sistema, por exemplo? Poderei usar o gerenciador de pacotes para desinstalá-los?
Aqui está um exemplo concreto. Digamos que eu queira instalar o Rust. O site oficial do Rust informa aos usuários do Linux para executar o seguinte comando.
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Em outras palavras, baixe o rustup.rs
arquivo do site e execute-o para instalar o Rust. Este exemplo é duplamente intrigante para mim, já que o Debian está disponível rustup
como um pacote nos repositórios. Então, devo usar o pacote Debian ou devo seguir as instruções no site?
Aqui está outro exemplo. Digamos que eu queira instalar o Minecraft, que não está disponível nos repositórios do Debian. Devo, portanto, ir ao site do Minecraft, que me permite baixar um minecraft.deb
arquivo. Se estiver correto, eu usaria apt
para instalá-lo. Nesse caso, o pacote seria rastreado pelo gerenciador de pacotes? Eu conseguiria desinstalá-lo ou atualizá-lo com apt
?
Obrigado por sua ajuda para esclarecer essa confusão que estava me incomodando há algum tempo.
Sciancisco e eu desenvolvemos um marcador de sintaxe para a linguagem de marcação Groff para ser usado com Gedit, Pluma, Xed etc. Instalei /usr/share/gtksourceview-4/language-specs/groff.lang
e sempre funcionou bem, mas agora estou usando Debian Trixie e não funciona mais. Alguma pista?
<?xml version="1.0" encoding="UTF-8"?>
<!--
COPYRIGHT:
==========
Gedit groff syntax highlight. A definition of the groff syntax for
GtkSourceView.
Copyright (C) 2022 - Daniel Dias Rodrigues. All rights reserved.
Copyright (C) 2020 - Sciancisco. All rights reserved.
This library is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the Free
Software Foundation; either version 2.1 of the License, or (at your option) any
later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along
with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
AVAILABILITY:
=============
Originally available at:
* https://gist.github.com/nerun/6f57b9a0dd6681d3ea9a5886e418e9b9
Sciancisco's version originally available at:
* https://gitlab.com/-/snippets/1984415
* https://gist.github.com/Sciancisco/d1f5f1ea50481633ee1a2d270416543b
CHANGES against Sciancisco's version:
=====================================
* <language>
* name: the "G" of "Groff" was capitalized.
* <metadata>
* mimetypes and globs: completely changed based upon "All known MIME
types" and their filename patterns, available at
https://www.digipres.org/formats/mime-types/
* <definitions><context>
* comment-new and comment-old: the "." (dot) was included as part of the
comment. Added "\.".
-->
<language id="groff" name="Groff" version="2.0" _section="Markup">
<metadata>
<property name="mimetypes">application/x-troff;application/x-troff-man;text/troff</property>
<property name="globs">*.1;*.2;*.3;*.4;*.5;*.6;*.7;*.8;*.groff;*.man;*.roff</property>
</metadata>
<styles>
<style id="comment" name="Comment" map-to="def:comment"/>
<style id="escaped-character" name="Escaped Character" map-to="def:special-char"/>
<style id="macro" name="Macro" map-to="def:function"/>
<style id="request" name="Request" map-to="def:builtin"/>
<style id="preprocessor" name="Preprocessor Macro" map-to="def:preprocessor"/>
</styles>
<definitions>
<context id="groff">
<include>
<context id="comment-new" style-ref="comment" class="comment">
<start>\.\\#</start>
<end>$</end>
</context>
<context id="comment-old" style-ref="comment" class="comment">
<start>\.\\"</start>
<end>$</end>
</context>
<!-- Here starts the escape sequences mimicking the groff spec.
If one wants to implement the entire spec, have fun:
https://web.cecs.pdx.edu/~trent/gnu/groff/groff.html#SEC52
-->
<context id="escape-bracket" style-ref="escaped-character" class="no-spell-check">
<start>\\[[]</start>
<end>[]]</end>
</context>
<context id="escape-bracket-parameter" style-ref="escaped-character" class="no-spell-check">
<start>\\.[[]</start>
<end>[]]</end>
</context>
<context id="escape-parenthesis" style-ref="escaped-character" class="no-spell-check">
<match>\\[(]..</match>
</context>
<context id="escape-parenthesis-parameter" style-ref="escaped-character" class="no-spell-check">
<match>\\.[(]..</match>
</context>
<context id="escape-simple-parameter" style-ref="escaped-character" class="no-spell-check">
<match>\\..</match>
</context>
<context id="escape-simple" style-ref="escaped-character" class="no-spell-check">
<match>\\.</match>
</context>
<!-- Highlight preprocessors -->
<!-- Maybe add preprocessor syntax coloring. -->
<!-- Many preprocessors are missing. -->
<context id="eqn" style-ref="preprocessor" class="no-spell-check">
<!-- Could be nice to add in line highlight with "delim" eqn command -->
<start>^\.EQ(\s|$)</start>
<end>^\.EN</end>
</context>
<context id="pic" style-ref="preprocessor" class="no-spell-check">
<start>^\.PS(\s|$)</start>
<end>^\.PE</end>
</context>
<context id="tbl" style-ref="preprocessor" class="no-spell-check">
<start>^\.TS(\s|$)</start>
<end>^\.TE</end>
</context>
<context id="chem" style-ref="preprocessor" class="no-spell-check">
<start>^\.cstart(\s|$)</start>
<end>^\.cend</end>
</context>
<context id="refer-opt" style-ref="preprocessor" class="no-spell-check">
<start>^\.R1(\s|$)</start>
<end>^\.R2</end>
</context>
<context id="refer-cite" style-ref="preprocessor">
<start>^\.[[]</start>
<end>^\.[]]</end>
</context>
<!-- General macro and request matching -->
<context id="macro" style-ref="macro" class="no-spell-check">
<match>^\.[A-Z0-9_]+</match>
</context>
<context id="request" style-ref="request" class="no-spell-ckeck">
<match>^\.[a-z]+</match>
</context>
</include>
</context>
</definitions>
</language>
Estou usando o Cooker dnf
configurado para OpenMandriva , e estou com esse problema bf81de15: NOKEY
ao tentar instalar gnutar
.
Qual o procedimento a fazer nestes casos? E se não for possível, como omitir a chave?
Last metadata expiration check: 0:33:36 ago on Wed Apr 3 17:49:59 2024.
Dependencies resolved.
==================================================================================================================
Package Architecture Version Repository Size
==================================================================================================================
Installing:
gnutar x86_64 1.34-4 cooker-x86_64 965 k
Transaction Summary
==================================================================================================================
Install 1 Package
Total size: 965 k
Installed size: 3.1 M
Is this ok [y/N]: y
Downloading Packages:
[SKIPPED] gnutar-1.34-4-omv2390.x86_64.rpm: Already downloaded
Running transaction check
Transaction check succeeded.
Running transaction test
The downloaded packages were saved in cache until the next successful transaction.
You can remove cached packages by executing 'dnf clean packages'.
Error: Transaction test error:
package gnutar-1.34-4.x86_64 does not verify: Header V4 RSA/SHA256 Signature, key ID bf81de15: NOKEY
Estou trabalhando em uma máquina Linux sem acesso (direto) à Internet. Eu quero pip install foo
algum pacote pypi foo, mas - obviamente, isso não funcionará. Tenho, claro, outras máquinas que estão conectadas à Internet.
Como eu determinaria quais arquivos precisam ser baixados, baixando-os e instalando-os quando estiverem na máquina isolada?
Notas:
- Prefiro obter uma resposta independente da versão do Python, mas se for dependente da versão, vamos assumir o Python 3.6 ou posterior.
- Esta pergunta parece a mesma, mas na verdade trata-se da instalação do próprio pip.
Estou tentando instalar o aplicativo leitor de e-books KOReader em meu sistema openSUSE Tumbleweed, mas não quero usar a versão Flatpak. Existe uma maneira de instalar o KOReader a partir de pacotes nativos ou compilando-o a partir do código-fonte no openSUSE Tumbleweed?
Tentei pesquisar nos repositórios oficiais do openSUSE, mas não consegui encontrar o KOReader listado. Estou aberto a usar um repositório de terceiros ou construir o KOReader a partir do código-fonte, se houver instruções disponíveis.
Meu principal requisito é evitar o uso do Flatpak, pois prefiro usar pacotes nativos quando possível. Alguém pode me orientar sobre como instalar o KOReader no openSUSE Tumbleweed sem usar o Flatpak?
Por favor, deixe-me saber se precisar de outros detalhes sobre meu sistema ou sobre a versão específica do KOReader que estou tentando instalar.
Estou trabalhando em uma máquina EC2 (AWS) executando Amazon Linux 2023.4.20240319. Preciso instalar o apache, php e mysql. Eu fiquei com o mysql. Eu segui muitas instruções encontradas na internet:
- https://tecadmin.net/install-mysql-8-on-fedora/
- https://dev.mysql.com/doc/refman/8.0/en/linux-installation-yum-repo.html
- https://stackoverflow.com/questions/70993613/unable-to-install-mysql-on-centos7/72469498#72469498
Mas há um último erro que não tem solução:
$ sudo yum --enablerepo=mysql80-community install mysql-community-server
MySQL 8.0 Community Server 37 B/s | 10 B 00:00
Errors during downloading metadata for repository 'mysql80-community':
- Status code: 404 for http://repo.mysql.com/yum/mysql-8.0-community/fc/2023.4.20240319/aarch64/repodata/repomd.xml (IP: 23.213.17.14)
Error: Failed to download metadata for repo 'mysql80-community': Cannot download repomd.xml: Cannot download repodata/repomd.xml: All mirrors were tried
Ignoring repositories: mysql80-community
Last metadata expiration check: 0:14:52 ago on Wed Mar 27 14:50:32 2024.
No match for argument: mysql-community-server
Error: Unable to find a match: mysql-community-server
Desinstalei pacotes, limpei o cache e tentei novamente, mas o resultado foi o mesmo.
Como posso consertar isso, por favor?
Atualizar
mysql
não está disponível nos repositórios yum padrão
$ sudo dnf search mysql
Last metadata expiration check: 1:53:50 ago on Wed Mar 27 14:50:32 2024.
================================ Name & Summary Matched: mysql ================================apr-util-mysql.aarch64 : APR utility library MySQL DBD driver
bind-dlz-mysql.aarch64 : BIND server mysql and mysqldyn DLZ modules
collectd-mysql.aarch64 : MySQL plugin for collectd
dovecot-mysql.aarch64 : MySQL back end for dovecot
mysql-selinux.noarch : SELinux policy modules for MySQL and MariaDB packages
mysql80-community-release.noarch : MySQL repository configuration for yum
perl-DBD-MySQL.aarch64 : A MySQL interface for Perl
perl-DateTime-Format-MySQL.noarch : Parse and format MySQL dates and times
php8.1-mysqlnd.aarch64 : A module for PHP 8.1 applications that use MySQL databases
php8.2-mysqlnd.aarch64 : A module for PHP 8.2 applications that use MySQL databases
postfix-mysql.aarch64 : Postfix MySQL map support
=================================== Summary Matched: mysql ====================================mariadb105-devel.aarch64 : Files for development of MariaDB/MySQL applications
mariadb105-server-utils.aarch64 : Non-essential server utilities for MariaDB/MySQL applicationsperl-DBD-MariaDB.aarch64 : MariaDB and MySQL driver for the Perl5 Database Interface (DBI)
Quero fazer algo que deveria ser simples em qualquer gerenciador de pacotes, instalar um pacote, no meu caso é isso especificamente lib64MLIRVectorToSPIRV13
.
LC_ALL=C dnf install lib64MLIRVectorToSPIRV13
O problema é que yum
foi instalada uma dependência, e não é possível desinstalá-la, pois supostamente é do sistema, enquanto estou usando dnf.
Não consegui executar o yum porque faltavam símbolos criptográficos (e não consegui migrá-lo para o Python 3), então o que fiz foi simplesmente criar um link simbólico de dnf
to yum
.
Deixando esse assunto de lado, o que eu quero é poder sobrescrever, alterar, remover ou reinstalar os pacotes que estão interferindo para poder instalarlib64MLIRVectorToSPIRV13
Sim, posso instalar todos os pacotes um por um, embora fosse melhor com o gerenciador de pacotes, a menos que exista um pacote na Internet que contenha todo o LLVM 13 .
Mas eu recebo esse erro ...
Running transaction check
Transaction check succeeded.
Running transaction test
The downloaded packages were saved in cache until the next successful transaction.
You can remove cached packages by executing 'dnf clean packages'.
Error: Transaction test error:
file /lib64/libstdc++.so.6 from install of lib64stdc++6-11.2.0-2.x86_64 conflicts with file from package libstdc++-4.8.5-44.el7.x86_64
file /usr/lib64/libncursesw.so.6 conflicts between attempted installs of lib64ncursesw6-6.3-1.20211219.2.x86_64 and lib64ncursesw6-6.3-1.20211219.2.x86_64
História do meu sistema operacional
Estou usando um Commodore 2006 comprado no shopping Garbarino .
CPU~Dual core Pentium E5700 (-MCP-) speed/max~2611/2965 MHz Kernel~5.7.2-lxpup64 x86_64 Up~7:52 Mem~1167.9/1990.8MB HDD~95.6GB(73.6% used) Procs~155 Client~Shell inxi~2.3.8
O sistema que utilizo é o LxPupSc64 20.06 , que é o PuppyLinux , por sua vez baseado em WOFF e Slackware, com uma modificação para poder suportar diversos gerenciadores de pacotes.
Como eu poderia instalar outro gerenciador de pacotes? A maneira como consegui instalar o gerenciador de pacotes foi baixando cada pacote ausente da página pkgs.org .
O gerenciador de pacotes que consegui instalar foi o pacman do ArchLinux , então como o driver Nouveau não inicia mais porque o sistema foi atualizado, instalei outro gerenciador de pacotes, que é o dnf.
Não consegui instalar apt-get ou snapd , ou qualquer pacote que use systemd , pois o PuppyLinux também funciona sem sudo
.
Registro:
Last metadata expiration check: 0:05:38 ago on Mon Mar 25 06:52:00 2024.
Dependencies resolved.
=========================================================================================================
Package Arch Version Repository Size
=========================================================================================================
Installing:
lib64MLIRVectorToSPIRV13 x86_64 13.0.0-1 release 33 k
Installing dependencies:
cross-aarch64-openmandriva-linux-gnu-libc x86_64 6:2.34-6 release 62 M
lib64LLVMDemangle13 x86_64 13.0.0-1 release 110 k
lib64LLVMSupport13 x86_64 13.0.0-1 release 806 k
lib64MLIRAffine13 x86_64 13.0.0-1 release 162 k
lib64MLIRAnalysis13 x86_64 13.0.0-1 release 84 k
lib64MLIRCallInterfaces13 x86_64 13.0.0-1 release 10 k
lib64MLIRControlFlowInterfaces13 x86_64 13.0.0-1 release 18 k
lib64MLIRDataLayoutInterfaces13 x86_64 13.0.0-1 release 28 k
lib64MLIRDialectUtils13 x86_64 13.0.0-1 release 26 k
lib64MLIRIR13 x86_64 13.0.0-1 release 483 k
lib64MLIRInferTypeOpInterface13 x86_64 13.0.0-1 release 15 k
lib64MLIRLinalg13 x86_64 13.0.0-1 release 701 k
lib64MLIRLoopAnalysis13 x86_64 13.0.0-1 release 139 k
lib64MLIRMath13 x86_64 13.0.0-1 release 47 k
lib64MLIRMemRef13 x86_64 13.0.0-1 release 192 k
lib64MLIRMemRefUtils13 x86_64 13.0.0-1 release 12 k
lib64MLIRPDL13 x86_64 13.0.0-1 release 90 k
lib64MLIRPDLInterp13 x86_64 13.0.0-1 release 118 k
lib64MLIRPDLToPDLInterp13 x86_64 13.0.0-1 release 90 k
lib64MLIRParser13 x86_64 13.0.0-1 release 115 k
lib64MLIRPass13 x86_64 13.0.0-1 release 102 k
lib64MLIRPresburger13 x86_64 13.0.0-1 release 34 k
lib64MLIRRewrite13 x86_64 13.0.0-1 release 122 k
lib64MLIRSCF13 x86_64 13.0.0-1 release 113 k
lib64MLIRSPIRV13 x86_64 13.0.0-1 release 698 k
lib64MLIRSPIRVConversion13 x86_64 13.0.0-1 release 43 k
lib64MLIRSideEffectInterfaces13 x86_64 13.0.0-1 release 13 k
lib64MLIRStandard13 x86_64 13.0.0-1 release 237 k
lib64MLIRSupport13 x86_64 13.0.0-1 release 56 k
lib64MLIRTensor13 x86_64 13.0.0-1 release 109 k
lib64MLIRTransformUtils13 x86_64 13.0.0-1 release 231 k
lib64MLIRVector13 x86_64 13.0.0-1 release 353 k
lib64MLIRVectorInterfaces13 x86_64 13.0.0-1 release 11 k
lib64MLIRViewLikeInterface13 x86_64 13.0.0-1 release 18 k
lib64ncursesw6 x86_64 6.3-1.20211219.2 release 173 k
lib64stdc++6 x86_64 11.2.0-2 release 647 k
Installing weak dependencies:
cross-aarch64-openmandriva-linux-gnu-binutils x86_64 2.37-1 release 2.7 M
cross-aarch64-openmandriva-linux-gnu-gcc x86_64 11.2.0-2 release 86 M
Transaction Summary
=========================================================================================================
Install 39 Packages
Total size: 157 M
Installed size: 1.5 G
Is this ok [y/N]: y
Downloading Packages:
[SKIPPED] cross-aarch64-openmandriva-linux-gnu-binutils-2.37-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] cross-aarch64-openmandriva-linux-gnu-gcc-11.2.0-2-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] cross-aarch64-openmandriva-linux-gnu-libc-2.34-6-omv4003.x86_64.rpm: Already downloaded
[SKIPPED] lib64LLVMDemangle13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64LLVMSupport13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRAffine13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRAnalysis13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRCallInterfaces13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRControlFlowInterfaces13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRDataLayoutInterfaces13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRDialectUtils13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRIR13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRInferTypeOpInterface13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRLinalg13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRLoopAnalysis13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRMath13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRMemRef13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRMemRefUtils13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRPDL13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRPDLInterp13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRPDLToPDLInterp13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRParser13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRPass13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRPresburger13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRRewrite13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRSCF13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRSPIRV13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRSPIRVConversion13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRSideEffectInterfaces13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRStandard13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRSupport13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRTensor13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRTransformUtils13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRVector13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRVectorInterfaces13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRVectorToSPIRV13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64MLIRViewLikeInterface13-13.0.0-1-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64ncursesw6-6.3-1.20211219.2-omv4050.x86_64.rpm: Already downloaded
[SKIPPED] lib64stdc++6-11.2.0-2-omv4050.x86_64.rpm: Already downloaded
Running transaction check
Transaction check succeeded.
Running transaction test
The downloaded packages were saved in cache until the next successful transaction.
You can remove cached packages by executing 'dnf clean packages'.
Error: Transaction test error:
file /lib64/libstdc++.so.6 from install of lib64stdc++6-11.2.0-2.x86_64 conflicts with file from package libstdc++-4.8.5-44.el7.x86_64
file /usr/lib64/libncursesw.so.6 conflicts between attempted installs of lib64ncursesw6-6.3-1.20211219.2.x86_64 and lib64ncursesw6-6.3-1.20211219.2.x86_64
Estou com um problema dnf
que não consigo instalar yum
.
dnf install yum
Quero poder resolver esse problema de alguma forma, seja excluindo arquivos, ou fazendo com que ele detecte arquivos que já estão presentes no sistema como instalados.
Os pacotes aparecem instalados no dnf , porque foram instalados de outro gerenciador de pacotes , ou já vieram em outro Linux (Puppy Linux) , mas esses arquivos estão presentes. Como faço para instalá-lo substituindo os arquivos do sistema?
Em inglês o erro seria o seguinte:
Running operation verification
Verification of successful operation.
Running test operations
The downloaded packages have been cached for the next transaction.
You can clear the cache packages by running 'dnf clean packages'.
Error: Transaction Test Error:
/usr/lib64/libncursesw.so.6 file conflict between attempted installations of lib64ncursesw6-6.3-1.20211219.2.x86_64 and lib64ncursesw6-6.3-1.20211219.2.x86_64
Sobre:
LC_ALL=C dnf install yum
Registro:
Running transaction check
Transaction check succeeded.
Running transaction test
The downloaded packages were saved in cache until the next successful transaction.
You can remove cached packages by executing 'dnf clean packages'.
Error: Transaction test error:
file /usr/lib64/libncursesw.so.6 conflicts between attempted installs of lib64ncursesw6-6.3-1.20211219.2.x86_64 and lib64ncursesw6-6.3-1.20211219.2.x86_64
file /usr/bin/[ conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/arch conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/b2sum conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/base32 conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/base64 conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/basename conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/basenc conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/cat conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/chcon conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/chgrp conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/chmod conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/chown conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/chroot conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/cksum conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/comm conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/coreutils conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/cp conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/csplit conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/cut conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/date conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/dd conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/df conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/dir conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/dircolors conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/dirname conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/du conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/echo conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/env conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/expand conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/expr conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/factor conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/false conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/fmt conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/fold conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/groups conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/head conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/hostid conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/id conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/install conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/join conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/link conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/ln conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/logname conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/ls conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/md5sum conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/mkdir conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/mkfifo conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/mknod conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/mktemp conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/mv conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/nice conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/nl conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/nohup conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/nproc conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/numfmt conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/od conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/paste conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/pathchk conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/pinky conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/pr conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/printenv conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/printf conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/ptx conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/pwd conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/readlink conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/realpath conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/rm conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/rmdir conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/runcon conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/seq conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/sha1sum conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/sha224sum conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/sha256sum conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/sha384sum conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/sha512sum conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/shred conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/shuf conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/sleep conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/sort conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/split conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/stat conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/stdbuf conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/stty conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/sum conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/sync conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/tac conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/tail conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/tee conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/test conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/timeout conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/touch conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/tr conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/true conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/truncate conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/tsort conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/tty conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/uname conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/unexpand conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/uniq conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/unlink conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/users conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/vdir conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/wc conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/who conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/whoami conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/bin/yes conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/sbin/chroot conflicts between attempted installs of coreutils-9.0-4.x86_64 and coreutils-9.0-4.x86_64
file /usr/sbin/capsh conflicts between attempted installs of libcap-utils-2.62-1.x86_64 and libcap-2.22-11.el7.x86_64
file /usr/sbin/getcap conflicts between attempted installs of libcap-utils-2.62-1.x86_64 and libcap-2.22-11.el7.x86_64
file /usr/sbin/getpcaps conflicts between attempted installs of libcap-utils-2.62-1.x86_64 and libcap-2.22-11.el7.x86_64
file /usr/sbin/setcap conflicts between attempted installs of libcap-utils-2.62-1.x86_64 and libcap-2.22-11.el7.x86_64
file /usr/share/tabset/stdcrt conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/tabset/vt100 conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/terminfo/c/cygwin conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/terminfo/k/konsole conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/terminfo/k/konsole-256color conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/terminfo/l/linux conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/terminfo/n/nxterm conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/terminfo/p/putty conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/terminfo/p/putty-256color conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/terminfo/p/putty-vt100 conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/terminfo/r/rxvt conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/terminfo/r/rxvt-cygwin conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/terminfo/r/rxvt-cygwin-native conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/terminfo/r/rxvt-unicode conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/terminfo/s/screen conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/terminfo/s/screen-256color conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/terminfo/v/vt100 conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/terminfo/v/vt100-am conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/terminfo/v/vt102 conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/terminfo/v/vt200 conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/terminfo/v/vt220 conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/terminfo/v/vt52 conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/terminfo/x/xterm conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/terminfo/x/xterm-256color conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/share/terminfo/x/xterm-color conflicts between attempted installs of ncurses-6.3-1.20211219.2.x86_64 and ncurses-base-5.9-14.20130511.el7_4.noarch
file /usr/lib64/liblzma.so.5 conflicts between attempted installs of xz-libs-5.2.2-1.el7.x86_64 and lib64lzma5-5.2.5-3.x86_64
file /usr/lib64/libcurl.so.4 conflicts between attempted installs of lib64curl4-7.81.0-1.x86_64 and libcurl-7.29.0-59.el7.x86_64
file /sbin/depmod conflicts between attempted installs of kmod-29-1.x86_64 and kmod-29-1.x86_64
file /sbin/insmod conflicts between attempted installs of kmod-29-1.x86_64 and kmod-29-1.x86_64
file /sbin/lsmod conflicts between attempted installs of kmod-29-1.x86_64 and kmod-29-1.x86_64
file /sbin/modinfo conflicts between attempted installs of kmod-29-1.x86_64 and kmod-29-1.x86_64
file /sbin/modprobe conflicts between attempted installs of kmod-29-1.x86_64 and kmod-29-1.x86_64
file /sbin/rmmod conflicts between attempted installs of kmod-29-1.x86_64 and kmod-29-1.x86_64
file /usr/sbin/hardlink conflicts between attempted installs of util-linux-core-2.37.3-1.x86_64 and util-linux-core-2.37.3-1.x86_64
file /etc/issue conflicts between attempted installs of util-linux-2.37.3-1.x86_64 and centos-release-7-9.2009.0.el7.centos.x86_64
file /usr/sbin/clock conflicts between attempted installs of util-linux-2.37.3-1.x86_64 and util-linux-2.37.3-1.x86_64
file /usr/sbin/hwclock conflicts between attempted installs of util-linux-2.37.3-1.x86_64 and util-linux-2.37.3-1.x86_64
file /usr/sbin/pivot_root conflicts between attempted installs of util-linux-2.37.3-1.x86_64 and util-linux-2.37.3-1.x86_64
file /lib/systemd/system-preset/85-display-manager.preset conflicts between attempted installs of systemd-249.20220113-1.x86_64 and centos-release-7-9.2009.0.el7.centos.x86_64
file /lib/systemd/system-preset/90-default.preset conflicts between attempted installs of systemd-249.20220113-1.x86_64 and centos-release-7-9.2009.0.el7.centos.x86_64
file /sbin/halt conflicts between attempted installs of systemd-249.20220113-1.x86_64 and systemd-249.20220113-1.x86_64
file /sbin/poweroff conflicts between attempted installs of systemd-249.20220113-1.x86_64 and systemd-249.20220113-1.x86_64
file /sbin/reboot conflicts between attempted installs of systemd-249.20220113-1.x86_64 and systemd-249.20220113-1.x86_64
file /sbin/udevadm conflicts between attempted installs of systemd-249.20220113-1.x86_64 and systemd-249.20220113-1.x86_64
file /usr/bin/systemctl conflicts between attempted installs of systemd-249.20220113-1.x86_64 and systemd-249.20220113-1.x86_64
file /usr/bin/systemd-escape conflicts between attempted installs of systemd-249.20220113-1.x86_64 and systemd-249.20220113-1.x86_64
file /usr/bin/udevadm conflicts between attempted installs of systemd-249.20220113-1.x86_64 and systemd-249.20220113-1.x86_64
file /usr/sbin/chkconfig conflicts between attempted installs of chkconfig-1.15-2.x86_64 and chkconfig-1.15-2.x86_64
file /usr/sbin/service conflicts between attempted installs of chkconfig-1.15-2.x86_64 and chkconfig-1.15-2.x86_64