web-dev-qa-db-fra.com

Comment monter l'ISO CentOS 7 et l'ajouter en tant que référentiel yum

Comment puis-je monter l'ISO CentOS 7 et l'ajouter en tant que référentiel yum?

Les endroits que je recherche disent de chercher un media.repo sous l'ISO monté, mais il n'y a pas un tel fichier.

3
activedecay

Le fichier repo est déjà présent sur votre système CentOS installé, comme /etc/yum.repos.d/CentOS-Media.repo.

[root@localhost ~]# cat /etc/yum.repos.d/CentOS-Media.repo 
# CentOS-Media.repo
#
#  This repo can be used with mounted DVD media, verify the mount point for
#  CentOS-7.  You can use this repo and yum to install items directly off the
#  DVD ISO that we release.
#
# To use this repo, put in your DVD and use it with the other repos too:
#  yum --enablerepo=c7-media [command]
#  
# or for ONLY the media repo, do this:
#
#  yum --disablerepo=\* --enablerepo=c7-media [command]

[c7-media]
name=CentOS-$releasever - Media
baseurl=file:///media/CentOS/
        file:///media/cdrom/
        file:///media/cdrecorder/
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

Montez l'image ISO à l'un des emplacements indiqués ou modifiez le fichier de manière appropriée, puis activez-le comme indiqué.

7
Michael Hampton

Montez l'iso

mount -o loop,ro centos7.iso /mnt/centos7-iso

Créez ce fichier /etc/yum.repos.d/repo.repo

[centos7-Server]
name=ServerFault Answer
baseurl=file:///mnt/centos7-iso
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
enabled=1
gpgcheck=1

Vérifiez ensuite si cela a fonctionné avec

yum list
2
activedecay