zoukankan      html  css  js  c++  java
  • 树莓派(CentOS7.8)配置国内源

    树莓派(CentOS7.8)配置国内源

    #创建repo文件夹并将repo移到文件夹中
    mkdir /etc/yum.repos.d/repo && mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/repo
    #将树莓派平台的源拷贝出来
    cp /etc/yum.repos.d/repo/CentOS-Vault.repo /etc/yum.repos.d/
    vi /etc/yum.repos.d/repo/CentOS-Vault.repo
    #结尾加入如下内容
    
    # C7.8.2003
    [C7.8.2003-base]
    name=CentOS-7.8.2003 - Base
    baseurl=https://mirrors.bfsu.edu.cn/centos-altarch/7.8.2003/os/$basearch/
    gpgcheck=0
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
           file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-AltArch-7-Arm32
    enabled=1
    
    [C7.8.2003-updates]
    name=CentOS-7.8.2003 - Updates
    baseurl=https://mirrors.bfsu.edu.cn/centos-altarch/7.8.2003/updates/$basearch/
    gpgcheck=0
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
           file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-AltArch-7-Arm32
    enabled=1
    
    [C7.8.2003-extras]
    name=CentOS-7.8.2003 - Extras
    baseurl=https://mirrors.bfsu.edu.cn/centos-altarch/7.8.2003/extras/$basearch/
    gpgcheck=0
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
           file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-AltArch-7-Arm32
    enabled=1
    
    [C7.8.2003-centosplus]
    name=CentOS-7.8.2003 - CentOSPlus
    baseurl=https://mirrors.bfsu.edu.cn/centos-altarch/7.8.2003/centosplus/$basearch/
    gpgcheck=0
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
           file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-AltArch-7-Arm32
    enabled=1
    
    [C7.8.2003-fasttrack]
    name=CentOS-7.8.2003 - Fasttrack
    baseurl=https://mirrors.bfsu.edu.cn/centos-altarch/7.8.2003/fasttrack/$basearch/
    gpgcheck=0
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
           file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-AltArch-7-Arm32
    enabled=1
    
     yum clean all
     yum makecache
    

    epel源

    vi /etc/yum.repos.d/epel.repo
    
    [base]
    name=epel
    baseurl=http://mirror.centos.org/altarch/7/os/armhfp/
    enabled=0
    gpgcheck=0
    cost=2000
    [updates]
    name=epel
    baseurl=http://mirror.centos.org/altarch/7/updates/armhfp/
    enabled=0
    gpgcheck=0
    cost=2000
    
  • 相关阅读:
    [ZZ]为什么选择傲游
    重新启用ClustrMaps记数
    Ubuntu 10.4的wubi安装BUG修正了
    [转载]关于C++,我觉得好的设计法则
    迅雷5.9.19.1390会员破解与快车旋风专用链补丁
    VS2010 Ultimate英文版下载
    不会“思维”只会“批判”,谨防网络舆论“怨妇化”
    游戏制作人(调侃)
    Visual Studio 2010 Beta安装感受
    msdev & devenv 的命令行用法
  • 原文地址:https://www.cnblogs.com/Masquer/p/13910224.html
Copyright © 2011-2022 走看看