大数据学习第2天----------------centos7 本地yum源,简单步骤

来源:互联网 发布:java编程思想 中文 pdf 编辑:程序博客网 时间:2024/06/06 05:27

第一步:找到yum镜像 /etc/yum.repos.d

[root@hadoop yum.repos.d]# ll
total 28
-rw-r--r--. 1 root root 1664 Aug 30 23:53 CentOS-Base.repo
-rw-r--r--. 1 root root 1309 Aug 30 23:53 CentOS-CR.repo
-rw-r--r--. 1 root root  649 Aug 30 23:53 CentOS-Debuginfo.repo
-rw-r--r--. 1 root root  314 Aug 30 23:53 CentOS-fasttrack.repo
-rw-r--r--. 1 root root  630 Aug 30 23:53 CentOS-Media.repo
-rw-r--r--. 1 root root 1331 Aug 30 23:53 CentOS-Sources.repo
-rw-r--r--. 1 root root 3830 Aug 30 23:53 CentOS-Vault.repo


第二步:改成只有一个能用的(其他都变成bak)

[root@hadoop yum.repos.d]# ll
total 28
-rw-r--r--. 1 root root 1664 Aug 30 23:53 CentOS-Base.repo.bak
-rw-r--r--. 1 root root 1309 Aug 30 23:53 CentOS-CR.repo.bak
-rw-r--r--. 1 root root  649 Aug 30 23:53 CentOS-Debuginfo.repo.bak
-rw-r--r--. 1 root root  314 Aug 30 23:53 CentOS-fasttrack.repo.bak
-rw-r--r--. 1 root root  630 Aug 30 23:53 CentOS-Media.repo
-rw-r--r--. 1 root root 1331 Aug 30 23:53 CentOS-Sources.repo.bak
-rw-r--r--. 1 root root 3830 Aug 30 23:53 CentOS-Vault.repo.bak

第三步:创建挂载目录

mkdir /mnt/cdrom

第四步:修改yum镜像里的url  为挂载目录

[root@hadoop yum.repos.d]# vi  CentOS-Media.repo


baseurl=
# 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/
        
gpgcheck=1
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7


~
~
"CentOS-Media.repo" 21L, 574C written


第五步:挂载

mount  -o  loop  /dev/sr0 /mnt/cdrom


原创粉丝点击