• yum用法


    ①、服务器仓库:http://

            https://

            ftp://

            file://

    ②、客户端配置:/etc/yum.conf  每个仓库的公共配置

            /etc/yum.repos.d  每个仓库自己的配置文件

    ③、yum repolist  以启用的仓库

      yum repolist all  所有仓库

      yum clean all   清缓存(缓存都放在/var/cache/yum)

      yum list  已启用仓库的可用包

      yun list *包名*  搜索包

      yum info 包名  查看信息

      yum remove 包名  删除(是删除单个)

      yum search 名字  包名或文件名都显示

      yum provides 文件

     若想将安装时的依赖包也删除:

      ①、yum history  找到相应的编号

      ②、yum history info 编号  查看信息

      ③、yum history undo 编号  撤销(卸载)

         yum history redo 编号  重装

    ④、yum个人配置仓库:

      [base]

      name=private yum

      baseurl=路径    通用变量:$releasever   $basearch

      enable=1

      gpgcheck=0

      (gpgcheck=1      gpgkey=路径)

    ⑤、自己配置epel或直接下载

    ⑥、自己配置升级仓库(可选)

      yum update 包名(yum update 全部升级,危险)

      yum downgrade  降级

    ⑦、使用:

      yum install -y sl

      sl    车

      sl -a  恭喜你已成为老司机

    ⑧、包组:

      yum grouplist   查看包组

      yum groupinstall  “包组名”  注意加“ ”号

  • 相关阅读:
    LeetCode "Palindrome Partition II"
    LeetCode "Longest Substring Without Repeating Characters"
    LeetCode "Wildcard Matching"
    LeetCode "Best Time to Buy and Sell Stock II"
    LeetCodeEPI "Best Time to Buy and Sell Stock"
    LeetCode "Substring with Concatenation of All Words"
    LeetCode "Word Break II"
    LeetCode "Word Break"
    Some thoughts..
    LeetCode "Longest Valid Parentheses"
  • 原文地址:https://www.cnblogs.com/ldyaly/p/12823084.html
Copyright © 2020-2023  润新知