Python学习之路——Linux基础之yum

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python学习之路——Linux基础之yum相关的知识,希望对你有一定的参考价值。

yum本地源

  • 修改yum源配置文件 /etc/yum.repo.d/local/repo
    技术分享图片
    技术分享图片
    yum clean all : 清除yum缓存

    网络yum源

  • 修改yum源配置文件 /etc/yum.repo.d/local/repo 为网络yum源
    修改baseurl为网络yum源路径(注意需要存在依赖关系repodata目录的路径下)

    自定义yum源

    1. 安装createrepo
    2. 创建yum源目录 : mkdir /test
    3. 拷贝软件包到/test
    4. createrepo /test :创建依赖性关系 (得先安装createrepo)
    5. 修改/etc/yum.repos.d/local.repos:【baseurl=file:///test】

      yum安装与删除

      yum install <软件包名>
      yum reinstall <软件包名> :重新安装
      yum erase <软件包名>

      yum安装后软件包保留

      修改 /etc/yum.conf 中keepcache=1

以上是关于Python学习之路——Linux基础之yum的主要内容,如果未能解决你的问题,请参考以下文章

Python学习之路——Linux基础之系统启动流程

Python学习之路——Linux基础之系统进程管理

Python学习之路——Linux基础之软件包

Python学习之路——Linux基础之文件系统管理

Python学习之路——Linux基础之Vim编辑器

Python学习之路——Python基础之运算符