RHEL6: o repo não ativará

1

Montar DVD

[root@rhel66 ~]#  mount /dev/sr0 /media

Instale os metadados repo

[root@rhel66 ~]# cp /media/media.repo /etc/yum.repos.d/rhel6.repo

Relacione os repos

[root@rhel66 ~]# yum repolist all
Loaded plugins: product-id, security, 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 6.6                           disabled
rhel-source      Red Hat Enterprise Linux 6Server - x86_64 - Source     disabled
rhel-source-beta Red Hat Enterprise Linux 6Server Beta - x86_64 - Sourc disabled
repolist: 0

Tente ativar o repo

[root@rhel66 ~]# yum-config-manager --enable InstallMedia
Loaded plugins: product-id
============================== repo: InstallMedia ==============================
[InstallMedia]
bandwidth = 0
base_persistdir = /var/lib/yum/repos/x86_64/6Server
baseurl =
cache = 0
cachedir = /var/cache/yum/x86_64/6Server/InstallMedia
cost = 500
enabled = True
enablegroups = True
exclude =
failovermethod = priority
gpgcadir = /var/lib/yum/repos/x86_64/6Server/InstallMedia/gpgcadir
gpgcakey =
gpgcheck = False
gpgdir = /var/lib/yum/repos/x86_64/6Server/InstallMedia/gpgdir
gpgkey =
hdrdir = /var/cache/yum/x86_64/6Server/InstallMedia/headers
http_caching = all
includepkgs =
keepalive = True
mdpolicy = group:primary
mediaid = 1411733344.627228
metadata_expire = -1
metalink =
mirrorlist =
mirrorlist_expire = 86400
name = Red Hat Enterprise Linux 6.6
old_base_cache_dir =
password =
persistdir = /var/lib/yum/repos/x86_64/6Server/InstallMedia
pkgdir = /var/cache/yum/x86_64/6Server/InstallMedia/packages
proxy = False
proxy_dict =
proxy_password =
proxy_username =
repo_gpgcheck = False
retries = 10
skip_if_unavailable = False
ssl_check_cert_permissions = True
sslcacert =
sslclientcert =
sslclientkey =
sslverify = True
throttle = 0
timeout = 30.0
username =

Listar novamente, ainda desativado

[root@rhel66 ~]# yum repolist all
Loaded plugins: product-id, security, 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 6.6                           disabled
rhel-source      Red Hat Enterprise Linux 6Server - x86_64 - Source     disabled
rhel-source-beta Red Hat Enterprise Linux 6Server Beta - x86_64 - Sourc disabled
repolist: 0

A partir dos documentos , parece que simplesmente tem que trabalhar. Mas o repositório armazenado no DVD permanece desativado.

    
por Marki 08.01.2015 / 13:57

1 resposta

0

Você precisa modifique o arquivo copiado em /etc/yum.repos.d/ e adicione o atributo baseurl ao caminho onde o DVD é montado como valor.

baseurl=file:///path_to_DVD/
    
por 12.01.2015 / 22:24