web-dev-qa-db-ja.com

CentOS 7 ISOをマウントしてyumリポジトリとして追加するにはどうすればよいですか

CentOS 7 ISOをマウントして、yumリポジトリとして追加するにはどうすればよいですか?

私が検索した場所はmedia.repoマウントされたISOの下にありますが、そのようなファイルはありません。

3
activedecay

Repoファイルは、インストールされたCentOSシステムに/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

ISOイメージを指定された場所の1つにマウントするか、ファイルを適切に変更してから、指示に従って有効にします。

7
Michael Hampton

ISOをマウントする

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

このファイルを作成/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

次に、それが動作したかどうかを確認します

yum list
2
activedecay