yum tentando instalar o el5 quando estou no el6

3

Quando executo o seguinte comando yum, recebo este erro:

Package: git-1.7.10.1-1.el5.rf.x86_64 (rpmforge)
           Requires: libcurl.so.3()(64bit)"

Eu li que este erro é devido a executar um el5 rpmforge ou ter alguns pacotes instalados el5.

Como posso resolver este problema?

$ yum install git
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: centos.kiewel-online.ch
 * epel: fedora.kiewel-online.ch
 * extras: centos.kiewel-online.ch
 * rpmforge: mirror.de.leaseweb.net
 * updates: centos.kiewel-online.ch
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package git.x86_64 0:1.7.10.1-1.el5.rf will be installed
--> Processing Dependency: perl-Git = 1.7.10.1-1.el5.rf for package: git-1.7.10.1-1.el5.rf.x86_64
--> Processing Dependency: perl(Git) for package: git-1.7.10.1-1.el5.rf.x86_64
--> Processing Dependency: libexpat.so.0()(64bit) for package: git-1.7.10.1-1.el5.rf.x86_64
--> Processing Dependency: libcurl.so.3()(64bit) for package: git-1.7.10.1-1.el5.rf.x86_64
--> Running transaction check
---> Package compat-expat1.x86_64 0:1.95.8-8.el6 will be installed
---> Package git.x86_64 0:1.7.10.1-1.el5.rf will be installed
--> Processing Dependency: libcurl.so.3()(64bit) for package: git-1.7.10.1-1.el5.rf.x86_64
---> Package perl-Git.x86_64 0:1.7.10.1-1.el5.rf will be installed
--> Finished Dependency Resolution
Error: Package: git-1.7.10.1-1.el5.rf.x86_64 (rpmforge)
           Requires: libcurl.so.3()(64bit)
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest
    
por giorgio79 23.05.2012 / 11:12

2 respostas

5

Você pode usar o yum repolist para mostrar quais reposições você ativou e, portanto, de onde o pacote está vindo;

(também yum repolist -v , com o sinal -v para descrição realmente detalhada dos seus repositórios ativados)

# yum repolist
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
epel/metalink                    |  10 kB     00:00     
 * base: mirrors.usc.edu
 * epel: epel.mirror.freedomvoice.com
 * extras: mirrors.usc.edu
 * updates: mirrors.usc.edu
Webmin                           | 1.2 kB     00:00     
base                             | 3.7 kB     00:00     
extras                           | 3.5 kB     00:00     
rbel6                            | 1.9 kB     00:00     
updates                          | 3.5 kB     00:00     
repo id            repo                                              status
Webmin             Webmin Distribution Neutral                       174+1
base               CentOS-6 - Base                                   6,293+1
epel               Extra Packages for Enterprise Linux 6 - x86_64    7,345
extras             CentOS-6 - Extras                                  4
rbel6              RBEL 6 Repo                                       183
updates            CentOS-6 - Updates                                921+6
repolist: 14,920

e também para mostrar quais repositórios suportam os pacotes para sua necessidade;

# yum provides git
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
 * base: mirrors.usc.edu
 * epel: epel.mirror.freedomvoice.com
 * extras: mirrors.usc.edu
 * updates: mirrors.usc.edu
git-1.7.1-2.el6_0.1.x86_64 : Fast Version Control System
Repo        : base
Matched from:

git-1.7.1-2.el6_0.1.x86_64 : Fast Version Control System        
Repo        : installed 

Matched from:               
Other       : Provides-match: git                            
    
por 23.05.2012 / 11:30
3

Eu tive o mesmo problema no CentOS 6.3. A execução de yum provides git me deu duas opções:

git-1.7.1-2.el6_0.1.x86_64 : Fast Version Control System
git-1.7.4.1-1.el5.x86_64 : Fast Version Control System

Então, eu fiz um yum install git-1.7.1-2.el6_0.1.x86_64 e ele instalou a versão .el6 do git, juntamente com o perl-Error e perl-Git, e não emite nenhum erro e nenhum arquivo libcurl.so ausente!

    
por 16.11.2012 / 21:46

Tags