Como instalar o pacote de múltiplos repositórios do YUM?

0

Estou tentando configurar um repositório de 2 yum (RHEL 7.0 e RHEL 7.2) no meu servidor. Acabei de criar seus arquivos .repo. Veja a saída abaixo:

[root@foundation ~]# yum repolist all
Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
repo id                                                 repo name                                                                         status
InstallMedia                                            Red Hat Enterprise Linux 7.2                                                      disabled
google-chrome                                           google-chrome                                                                     enabled:     3
rhel_7_0                                                RHEL 7.0 repository (foundation server)                                           enabled: 4,305
rhel_7_2                                                RHEL 7.2 repository (foundation server)                                           enabled: 4,620
repolist: 8,928
[root@foundation ~]# 

Quando tento listar os pacotes do kernel, ele mostra apenas o pacote disponível no RHEL 7.2

[root@foundation ~]# yum list *kernel*
Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
Installed Packages
abrt-addon-kerneloops.x86_64                                         2.1.11-34.el7                                                      @anaconda/7.2   
kernel.x86_64                                                        3.10.0-327.el7                                                     @anaconda/7.2   
kernel-headers.x86_64                                                3.10.0-327.el7                                                     @foundation-repo
kernel-tools.x86_64                                                  3.10.0-327.el7                                                     @anaconda/7.2   
kernel-tools-libs.x86_64                                             3.10.0-327.el7                                                     @anaconda/7.2   
Available Packages
kernel-abi-whitelists.noarch                                         3.10.0-327.el7                                                     rhel_7_2        
kernel-debug.x86_64                                                  3.10.0-327.el7                                                     rhel_7_2        
kernel-debug-devel.x86_64                                            3.10.0-327.el7                                                     rhel_7_2        
kernel-devel.x86_64                                                  3.10.0-327.el7                                                     rhel_7_2        
kernel-doc.noarch                                                    3.10.0-327.el7                                                     rhel_7_2        
texlive-l3kernel.noarch                                              2:svn29409.SVN_4469-38.el7                                         rhel_7_2        
[root@foundation ~]# 

Como posso ver também os pacotes do kernel no RHEL 7.0? Eu quero ser capaz de instalá-lo. E como posso forçar o yum a instalar o pacote no meu repositório desejado? Exemplo, vou instalá-lo a partir do repositório RHEL 7.0 em vez do repositório RHEL 7.2.

    
por mit13 29.08.2016 / 08:02

1 resposta

1

A partir das entradas coletadas das pessoas acima (Rahul e Julie Pelletier), eu pude instalar o pacote kernel a partir de um repositório específico, desabilitando o repositório que você não deseja incluir (no meu caso, é rhel_7_0 repo).

yum --disablerepo rhel_7_0 install -y kernel

Então eu pude instalar o kernel do repositório rhel_7_2 dentro da minha caixa RHEL 7.0 e inicializar com sucesso.

[root@desktop2 ~]# yum list kernel
Loaded plugins: product-id, subscription-manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
Installed Packages
kernel.x86_64                                              3.10.0-123.el7                                              @anaconda/7.0
kernel.x86_64                                              3.10.0-327.el7                                              @rhel_7_2    
[root@desktop2 ~]# grubby --default-kernel
/boot/vmlinuz-3.10.0-327.el7.x86_64
[root@desktop2 ~]# uname -r
3.10.0-327.el7.x86_64
[root@desktop2 ~]# 
    
por 29.08.2016 / 09:13