# 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:///mnt/cdrom #yum源目录,源地址 gpgcheck=1 #检查GPG-KEY,0,1分别为不检查,检查 enabled=1 #是否用该源 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
然后:wq保存退出,记住要把其他的6个文件删除,但是最好保留一下,以防以后用的时候好找,我的处理方式是把其他六个文件的后缀名改成了.bak改后如下: CentOS-Base.bak CentOS-CR.bak CentOS-Debuginfo.bak CentOS-fasttrack.bak CentOS-Media.repo CentOS-Sources.bak CentOS-Vault.bak 5.baseurl= file:///mnt/cdrom #这个很重要,这个是指定路径,可以用file,ftp,http 用后面两个必须开启相应的服务。File可以用来做本地仓库。一定要保证路径可达)6.gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7#开启gpgcheck后,通过gpgkey来指定,相应的gpg文件,如果不指定gpgkey文件,那么就必须手动的导入相应的gpg文件7. 执行命令:yum install net-tools,因为ifconfig在net-tools里面,所以需要安装这个包。 8. 好了,至此完成解决了!!请看下图 |