Meu repositório yum pode pesquisar pacotes, mas não consegue instalá-lo no RHEL?

2

Eu configurei yum do dvd. A seguir estão os contêineres do meu arquivo .repo :

[dvd]
name=Red Hat Enterprise Linux Installation DVD
baseurl=file:///media/dvd
enabled=0.

Eu posso pesquisar pacotes. No entanto, enquanto a instalação está ficando abaixo do erro:

[root@localhost dvd]# yum install libstdc++.x86_64
Loaded plugins: rhnplugin, security
This system is not registered with RHN.
RHN support will be disabled.
Setting up Install Process
Nothing to do

Saída da pesquisa My Yum:

[root@localhost dvd]# yum search gcc
Loaded plugins: rhnplugin, security
This system is not registered with RHN.
RHN support will be disabled.
============================================================================= Matched: gcc =============================================================================
compat-libgcc-296.i386 : Compatibility 2.96-RH libgcc library
compat-libstdc++-296.i386 : Compatibility 2.96-RH standard C++ libraries
compat-libstdc++-33.i386 : Compatibility standard C++ libraries
compat-libstdc++-33.x86_64 : Compatibility standard C++ libraries
cpp.x86_64 : The C Preprocessor.
libgcc.i386 : GCC version 4.1 shared support library
libgcc.x86_64 : GCC version 4.1 shared support library
libgcj.i386 : Java runtime library for gcc
libgcj.x86_64 : Java runtime library for gcc
libstdc++.i386 : GNU Standard C++ Library
libstdc++.x86_64 : GNU Standard C++ Library
libtermcap.i386 : A basic system library for accessing the termcap database.
libtermcap.x86_64 : A basic system library for accessing the termcap database.

Por favor, me orientem sobre isso, quero instalar o gcc no meu RHEL .

    
por Mandar Pande 30.09.2012 / 09:47

2 respostas

3

Tente alterar enabled=0 para enabled=1 .

Set enable=0 in a definition file to prevent yum from using that repository. The yum utility ignores any definition file with this setting.

Quando você habilitou o repositório, recebeu a seguinte mensagem de erro

file:///media/dvd/repodata/repomd.xml: [Errno 5] OSError: [Errno 2] No such file or directory: '/media/dvd/repodata/repomd.xml' Trying other mirror. Error: Cannot retrieve repository metadata (repomd.xml) for repository: dvd. Please verify its path and try again

O que sugere que o seu dvd não está montado ou montado, então está montado em algum lugar diferente de /media/dvd

    
por 30.09.2012 / 09:50
1

Você pode resolver esse problema de duas maneiras. Escolha um:

  1. Pague sua assinatura da Red Hat e registre a máquina na Red Hat Network.
  2. Use um clone do RHEL, como o CentOS.
por 30.09.2012 / 14:42