yum update apresenta conflito hponcfg-4.2.0-0.x86_64

2

Estou no processo de tentar instalar o Cacti em um HP DL360 executando o Centos 6.3.
A execução de yum update apresenta algumas atualizações, mas ao digitar y , ele retorna um erro.

Como posso resolver isso?

    [root@Server hponcfg]# yum update
Loaded plugins: fastestmirror, priorities, security
Repository rpmforge is listed more than once in the configuration
Loading mirror speeds from cached hostfile
 * base: **.***.**.**
 * contrib: **.***.**.**
 * dell-omsa-indep: **.***.**.**
 * epel: **.***.**.**
 * extras: **.***.**.**
 * hp-sdr: **.***.**.**
 * updates: **.***.**.**
87 packages excluded due to repository priority protections
Setting up Update Process
Resolving Dependencies
--> Running transaction check
---> Package centos-release.x86_64 0:6-3.el6.centos.9 will be updated
---> Package centos-release.x86_64 0:6-5.el6.centos.11.2 will be an update
---> Package cpqacuxe.x86_64 0:9.10-22.0 will be updated
---> Package cpqacuxe.x86_64 0:9.40-12.0 will be an update
---> Package dracut.noarch 0:004-284.el6_3.1 will be updated
---> Package dracut.noarch 0:004-336.el6_5.2 will be an update
---> Package dracut-kernel.noarch 0:004-284.el6_3.1 will be updated
---> Package dracut-kernel.noarch 0:004-336.el6_5.2 will be an update
---> Package hp-health.x86_64 0:9.1.0.42-54.rhel6 will be updated
---> Package hp-health.x86_64 0:9.40-1602.44.rhel6 will be an update
---> Package hp-smh-templates.noarch 0:9.1.0.33-32.all will be updated
---> Package hp-smh-templates.noarch 0:9.4.0-1327.37 will be an update
---> Package hp-snmp-agents.x86_64 0:9.1.0.57-51.rhel6 will be updated
---> Package hp-snmp-agents.x86_64 0:9.40-2506.37.rhel6 will be an update
---> Package hpacucli.x86_64 0:9.10-22.0 will be updated
---> Package hpacucli.x86_64 0:9.40-12.0 will be an update
---> Package hpdiags.x86_64 0:9.1.0-301 will be updated
---> Package hpdiags.x86_64 0:9.5.0-938 will be an update
---> Package hponcfg.noarch 0:4.0.0-0 will be updated
---> Package hponcfg.x86_64 0:4.2.0-0 will be an update
---> Package hpsmh.x86_64 0:7.1.0-16 will be updated
---> Package hpsmh.x86_64 0:7.2.2-8 will be an update
--> Finished Dependency Resolution

Dependencies Resolved

=======================================================================================================================================================
 Package                                 Arch                          Version                                    Repository                      Size
=======================================================================================================================================================
Updating:
 centos-release                          x86_64                        6-5.el6.centos.11.2                        updates                         20 k
 cpqacuxe                                x86_64                        9.40-12.0                                  hp-sdr                         5.6 M
 dracut                                  noarch                        004-336.el6_5.2                            updates                        122 k
 dracut-kernel                           noarch                        004-336.el6_5.2                            updates                         24 k
 hp-health                               x86_64                        9.40-1602.44.rhel6                         hp-sdr                         316 k
 hp-smh-templates                        noarch                        9.4.0-1327.37                              hp-sdr                         3.5 M
 hp-snmp-agents                          x86_64                        9.40-2506.37.rhel6                         hp-sdr                         963 k
 hpacucli                                x86_64                        9.40-12.0                                  hp-sdr                         6.5 M
 hpdiags                                 x86_64                        9.5.0-938                                  hp-sdr                          15 M
 hponcfg                                 x86_64                        4.2.0-0                                    hp-sdr                          40 k
 hpsmh                                   x86_64                        7.2.2-8                                    hp-sdr                          13 M

Transaction Summary
=======================================================================================================================================================
Upgrade      11 Package(s)

Total size: 45 M
Is this ok [y/N]: y
Downloading Packages:
Running rpm_check_debug
Running Transaction Test


Transaction Check Error:
  file /usr/share/doc/hponcfg/readme.txt from install of hponcfg-4.2.0-0.x86_64 conflicts with file from package hponcfg-4.0.0-0.noarch

Error Summary
-------------
    
por RoryM 02.12.2013 / 14:43

2 respostas

1

Geralmente, a maneira de contornar esses problemas é executar:

yum update --skip-broken

Às vezes, uma primeira rodada de atualizações limpa o campo, para que as execuções posteriores não deixem nada de fora. Se estiver realmente confuso, você pode tentar executar o comando update alguns pacotes de cada vez, reduzindo os que bloqueiam a atualização.

Veja se o arquivo incorreto é talvez um arquivo de configuração adaptado à mão.

Você pode tentar remover o pacote:

yum erase hponcfg

(Cuidado! Isso pode acabar tentando apagar um monte de coisas.) Em seguida, instale-o novamente (deve obter a versão mais recente) e tente o upgade completo novamente.

Às vezes, tudo o que está acontecendo é que há algum problema com o repositório remoto, curado por:

yum clean metadata

e tentando novamente.

Alguns messups locais podem ser curados por package-cleanup (verifique sua manpage, ele tem muitas opções). O conflito pode ser devido a um pacote duplicado.

    
por 26.02.2014 / 00:37
0

Você pode remover a entrada do RPM DB para contornar as dependências circulares, no entanto, isso deve ser um último recurso:

rpm -e --justdb --nodeps hponcfg
yum update
    
por 10.12.2013 / 16:55