CentOS6下yum源與epel源配置

1、配置本地yum源vim

  一、掛在光盤至本地目錄/media緩存

    mount  /dev/cdrom  /media測試

  二、複製光盤內容到本地目錄/home/myCDurl

    cp  -Rv  /media  /home/myCDspa

  三、建立配置文件/etc/yum.repos.d/myCD.repoget

    vim  /etc/yum.repos.d/myCD.repoit

[myCD] 
name=myCD
baseurl=file:///home/myCD
enable=1
gpgcheck=0table

    [xxx]:yum源名稱,與文件名保持一致ast

    name:備註test

    baseurl:yum源中repodata包所在路徑,能夠是http、ftp、file

    enable:是否啓用,1:啓用,0:不啓用

    gpgcheck:是否驗證簽名,1:驗證,0:不驗證

    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 若是驗證則制定祕鑰位置,不然能夠不寫

  四、測試

    清除緩存:yum  clean  all

    查看當前yum源:yum  repolist

2、配置epel源

    一、下載rpm文件安裝配置

      1)下載rpm文件:wget  https://mirrors.tuna.tsinghua.edu.cn/epel/epel-release-latest-6.noarch.rpm

      2)安裝:rpm  -ivh  epel-release-latest-6.noarch.rpm

      3)測試

        清除緩存:yum  clean  all

        查看當前yum源:yum  repolist

      4)錯誤記錄

Loaded plugins: fastestmirror, refresh-packagekit, security
Loading mirror speeds from cached hostfile
Error: Cannot retrieve metalink for repository: epel. Please verify its path and try again

        解決辦法:

          打開/etc/yum.repos.d/epel.repo文件,將第一個baseurl前面的#號放到下一行mirrorlist前,保存退出便可。   

 二、手動指定配置

    建立配置文件/etc/yum.repos.d/myepel.repo

[myepel]

name=myepel

baseurl=https://mirrors.tuna.tsinghua.edu.cn/epel/6/x86_64/

enable=1

gpgcheck=0

    測試

      清除緩存:yum  clean  all

      查看yum源:yum  repolist

相關文章
相關標籤/搜索