欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

dnf & yum

程序员文章站 2022-05-22 18:51:57
CentOS8 配置软件源 在 CentOS8 中、使用了基于DNF技术(YUM v4)的 YUM 工具。 YUM v4 与之前在 CentOS7 上使用的 YUM v3 相比具有以下优点: 提高性能 支持模块化内容 设计良好的用于与工具集成的稳定API 详情参考官网:https://dnf.rea ......

centos8 配置软件源

在 centos8 中、使用了基于dnf技术(yum v4)的 yum 工具。

yum v4 与之前在 centos7 上使用的 yum v3 相比具有以下优点:

  • 提高性能
  • 支持模块化内容
  • 设计良好的用于与工具集成的稳定api

详情参考官网:https://dnf.readthedocs.io/en/latest/cli_vs_yum.html

在 centos8 中把软件源分成了两部分:

  • baseos 存储库 :以传统 rpm 包的形式提供底层核心 os 内容
  • appstream 存储库 :提供用户空间中运行的所有应用程序

如何使用dnf

dnf包管理器克服了yum包管理器的一些瓶颈,提升了包括用户体验,内存占用,依赖分析,运行速度等多方面的内容。dnf使用 rpm, libsolv 和 hawkey 库进行包管理操作。

查看系统中可用的 dnf 软件库

$ dnf repolist
上次元数据过期检查:2:31:51 前,执行于 2019年11月20日 星期三 20时03分06秒。
仓库标识                   仓库名称                                               状态
appstream                 centos-8 - appstream                                  5,089
baseos                    centos-8 - base                                       2,843
*epel                     extra packages for enterprise linux 8 - x86_64        3,253
extras                    centos-8 - extras

查看系统中可用和不可用的所有的 dnf 软件库

$ dnf repolist all
上次元数据过期检查:2:35:29 前,执行于 2019年11月20日 星期三 20时03分06秒。
仓库标识                      仓库名称                                        状态
appstream                    centos-8 - appstream                           启用: 5,089
appstream-source             centos-8 - appstream sources                   禁用
baseos                       centos-8 - base                                启用: 2,843
baseos-source                centos-8 - baseos sources                      禁用
powertools                   centos-8 - powertools                          禁用
base-debuginfo               centos-8 - debuginfo                           禁用

列出所有 rpm 包

$ dnf list

列出所有安装了的 rpm 包

$ dnf list installed

列出所有可供安装的 rpm 包

$ dnf list available

搜索软件库中的 rpm 包

$ dnf search nano

查找某一文件的提供者

$ dnf provides wget
上次元数据过期检查:2:41:18 前,执行于 2019年11月20日 星期三 20时03分06秒。
wget-1.19.5-7.el8.x86_64 : a utility for retrieving files using the http or ftp protocols
仓库        :appstream
匹配来源:
提供    : wget = 1.19.5-7.el8

查看软件包详情

$ dnf info network-scripts
上次元数据过期检查:2:39:55 前,执行于 2019年11月20日 星期三 20时03分06秒。
已安装的软件包
名称         : network-scripts
版本         : 10.00.1
发布         : 1.el8_0.1
架构         : x86_64
大小         : 172 k
源           : initscripts-10.00.1-1.el8_0.1.src.rpm
仓库         : @system
来自仓库     : baseos
......

安装软件包

$ dnf install nginx

删除软件包

$ dnf remove nginx

删除无用孤立的软件包

$ dnf autoremove

删除缓存的无用软件包

$ dnf clean all

获取有关某条命令的使用帮助

$ dnf help clean

查看 dnf 命令的执行历史

$ dnf history
id     | 命令行                   | 日期和时间       | 操作           | 更改
-------------------------------------------------------------------------------
    13 | install -y nginx         | 2019-11-20 21:11 | install        |   11
    12 | install cockpit          | 2019-11-20 01:28 | install        |   22
    11 | install -y tcpdump       | 2019-11-18 02:10 | install        |    1
    10 | install -y net-tools     | 2019-11-18 02:04 | install        |    1
     9 | install -y network*      | 2019-11-18 02:00 | install        |   68

查看所有的软件包组

$ dnf grouplist

安装一个软件包组

$ dnf groupinstall '安全性工具'

从特定的软件包库安装特定的软件

# dnf -enablerepo=epel install nginx

重新安装特定软件包

# dnf reinstall nano