云网牛站
所在位置:首页 > Linux教程 > 使用Fedora/RHEL 8系统模块库[Modular Repository]的方法

使用Fedora/RHEL 8系统模块库[Modular Repository]的方法

2019-01-23 16:14:12作者:戴进稿源:云网牛站

在Fedora 29/28、RHEL 8系统中具有Modular Repository功能,即模块库,允许你通过Application Stream[也称为AppStream]在独立生命周期中安装其他版本的软件,这使你可以在拥有适合用例的正确版本的应用程序同时也使你的操作系统保持最新。本文就给你讲讲使用Fedora/RHEL 8系统模块库的方法。

使用Fedora/RHEL 8系统模块库[Modular Repository]的方法

 

列出可用模块

要列出所有模块streams,其配置文件和状态(启用、禁用、默认),请运行以下命令:

# dnf module list

执行该命令后会有如下的输出信息:

使用Fedora/RHEL 8系统模块库[Modular Repository]的方法

要显示有关特定模块的信息,请提供名称作为上一个命令的参数:

# dnf module list kubernetes

使用Fedora/RHEL 8系统模块库[Modular Repository]的方法

 

安装模块配置文件

安装模块的命令用法是:

# dnf [options] module install <module_spec>...

首先获取模块stream,例如:

# dnf module list mongodb

使用Fedora/RHEL 8系统模块库[Modular Repository]的方法

你可以看到模块mongodb有两个streams,一个用于MongoDB 3.4,另一个用于3.6,要安装MongoDB(在RHEL 8/CentOS 8系统上安装和配置MongoDB 4的方法),请运行3.6:

# dnf module install mongodb:3.6/default

使用Fedora/RHEL 8系统模块库[Modular Repository]的方法

输入y确认安装,安装后,你可以使用rpm命令确认包版本:

# rpm -qi mongodb-server

使用Fedora/RHEL 8系统模块库[Modular Repository]的方法

要降级到MongoDB 3.4,你将安装3.4模块:

#  dnf module install mongodb:3.4/default

使用Fedora/RHEL 8系统模块库[Modular Repository]的方法

如上图,已经有3.6->3.4字样,表明它是降级成功的。

 

启用module stream

如果你有通过其他外部存储库安装的其他版本,请先卸载它,然后启用模块:

sudo dnf remove mongodb-server

sudo dnf module enable mongodb:3.6

这将启用module stream并使包RPM中的流RPM可用,模块化依赖关系在启用时解析并检查,但不会自动启用,enable命令也可用于切换module streams。

 

禁用module stream

要禁用模块并使所有相关module streams不可用,请使用:

$ dnf module disable <module-name>

 

列出已启用的module streams

要列出已启用的module streams,请执行:

# dnf module list --enabled

使用Fedora/RHEL 8系统模块库[Modular Repository]的方法

 

获取module stream详细信息

打印有关给定module stream的详细信息的语法是:

# dnf module info <module_spec>

比如:

# dnf  module info mongodb:3.6

 

重置模块状态

你还可以重置模块状态,以便不再启用或禁用它:

# dnf module reset <module_spec>

比如:

# dnf module reset mongodb:3.6

使用Fedora/RHEL 8系统模块库[Modular Repository]的方法

 

相关主题

强制关闭你的系统的内核模块

精选文章
热门文章