美文网首页
用createrepo本地yum源配置

用createrepo本地yum源配置

作者: _Rida | 来源:发表于2018-11-27 20:52 被阅读0次

    下载createrepo,用rpm包制作本地yum源

    #yum install  -y createrepo
    #cd /rpm
    #createrepo ./
    #ls
    #repodata
    

    首先备份原yum源 /etc/yum.repos.d/

    #mkdir backup
    #mv * /backup/
    

    新建 :vi xxx.repo:

    name=     #是这个库的说明,没有太大的实际意义,只是一个字段说明。
    baseurl=  #说明采取什么方式传输,具体路径在哪里,可以使用的方式有,file:///ftp://http://等
    enabled=1  #说明启用这个更新库,0表示不启用。
    gpgcheck=1 #表示使用gpg文件来检查软件包的签名
    gpgkey=    #表示gpg文件所存放的位置,此处也可以有http方式的位置。```

    相关文章

      网友评论

          本文标题:用createrepo本地yum源配置

          本文链接:https://www.haomeiwen.com/subject/gnvnqqtx.html