-Wstringop-truncation
对绑定的字符串操作函数(如
strncat
、
strncpy
和
stpncpy
)的调用可能会截断复制的字符串,或者让目的地保持不变。
-Wclass-memaccess
原始功能(如
memcpy
或
realloc
)可能会以不安全的方式处理类型为非 trivial 类的对象。
警告帮助检测以下调用:绕过用户定义的构造器或复制-分配运算符、损坏的虚拟表指针、常量限定类型的数据成员或引用或成员指针。该警告还会检测到可绕过数据成员的访问控制的调用。
-Wmisleading-indentation
代码缩进对于阅读代码的人可能会造成对代码块结构的误导。
-Walloc-size-larger-than=
size
调用内存分配超过
size
的内存分配功能。还可与通过两个参数相乘指定分配的函数一起工作,以及与使用属性
alloc_size
装饰的任何函数一起工作。
-Walloc-zero
调用内存分配功能,试图分配零内存。还可与通过两个参数相乘指定分配的函数一起工作,以及与使用属性
alloc_size
装饰的任何函数一起工作。
-Walloca
所有对
alloca
功能的调。
-Walloca-larger-than=
size
请求内存大于
size
时调用
alloca
功能。
-Wvla-larger-than=
size
可超过指定大小或者其绑定未知约束的 Variable Length Arrays(VLA)定义。
-Wformat-overflow=
level
在调用格式化输出函数
sprintf
系列中一定和可能的缓冲区溢出。有关
level
值的详情和说明,请参阅
gcc(1)
手册页。
-Wformat-truncation=
level
在调用格式化输出函数的
snprintf
系列调用中的一定和可能的输出截断。有关
level
值的详情和说明,请参阅
gcc(1)
手册页。
-Wstringop-overflow=
type
在调用字符串处理函数(如
memcpy
和
strcpy
)中的缓冲区溢出。有关
level
值的详情和说明,请参阅
gcc(1)
手册页。
改进了以下 GCC 警告:
改进了
-Warray-bounds
选项,以检测更多超出边界数组索引和指针偏移的实例。例如,检测到灵活的数组成员和字符串字面值的负或过量索引。
GCC 7 中引入的
-Wrestrict
选项已被改进,以检测通过对标准内存和字符串操作函数(如
memcpy
和
strcpy
)的限制限定参数重叠访问对象的更多实例。
-Wnonnull
选项已改进,以检测一组将空指针传给预期非空参数(使用属性
nonnull
装饰)的函数的更广泛的情况。
选项
|
检查
|
-fsanitize=float-divide-by-zero
检查浮点被被零除。
-fsanitize=float-cast-overflow
检查浮点类型到整数转换的结果是否溢出。
-fsanitize=bounds
启用阵列绑定控制并检测对边界外的访问。
-fsanitize=alignment
启用协调检查并检测各种没有对齐的对象。
-fsanitize=object-size
启用对象大小检查并检测到各种对边界外的访问。
-fsanitize=vptr
启用对 C++ 成员功能调用、成员访问以及指针到基本类别和派生类之间的一些转换。另外,检测引用的对象没有正确的动态类型。
-fsanitize=bounds-strict
启用对阵列绑定的严格的检查。这启用了
-fsanitize=bounds
和灵活的类似成员数组的检测。
-fsanitize=signed-integer-overflow
即使在使用通用向量的诊断操作中诊断异常溢出。
-fsanitize=builtin
在运行时诊断
__builtin_clz
或
__builtin_ctz
前缀内置的无效参数。包括
-fsanitize=undefined=undefined
的检查。
-fsanitize=pointer-overflow
为指针嵌套执行 cheap run-time 测试。包括
-fsanitize=undefined=undefined
的检查。
|
选项
|
检查
|
-fsanitize=pointer-compare
指向不同内存对象的指针的警告。
-fsanitize=pointer-subtract
关于指向不同内存对象的指针的减法的警告。
-fsanitize-address-use-after-scope
清除在定义了变量的作用域之后获取和使用其地址的变量。
|
其他清理程序和工具
-
添加了
-fstack-clash-protection
选项,以便在堆栈空间被静态或动态分配时插入探测,以可靠地检测堆栈溢出,从而减轻依赖于跳过操作系统提供的堆栈保护页的攻击向量。
添加了一个新的选项
-fcf-protection=[full|branch|return|none]
,以通过检查控制流传输指令的目标地址(如间接函数调用、函数返回、间接跳转)是否有效,来执行代码插入并提高程序安全性。
有关提供给上述某些选项的值的详情和说明,请参阅
gcc(1)
手册页:
$ man gcc
Red Hat Enterprise Linux 8 中提供的 GDB 版本包含许多破坏兼容性的变化,特别是在直接从终端读取 GDB 输出的情况下。以下部分详细介绍了这些变化。
不建议解析 GDB 的输出。首选使用 Python GDB API 或 GDB 机器接口(MI)的脚本。
GDBserver 现在使用 shell 启动 inferior
要在 inferior 命令行参数中启用扩展和变量替换,GDBserver 现在会在 shell 中启动 inferior,与 GDB 一样。
要禁止使用 shell :
使用
target extended-remote
GDB 命令时,请使用
set startup-with-shell off
命令禁用 shell。
当使用
目标远程
GDB 命令时,请使用 gdbserver 的
--no-startup-with-shell
选项禁用 shell。
例 16.1. 远程 GDB inferiors 中的 shell 扩展的示例
这个示例演示了在 Red Hat Enterprise Linux 版本 7 和 8 中通过 GDBserver 运行
/bin/echo /*
命令的不同:
对于 RHEL 7:
$ gdbserver --multi :1234
$ gdb -batch -ex 'target extended-remote :1234' -ex 'set remote exec-file /bin/echo' -ex 'file /bin/echo' -ex 'run /*'
对于 RHEL 8:
$ gdbserver --multi :1234
$ gdb -batch -ex 'target extended-remote :1234' -ex 'set remote exec-file /bin/echo' -ex 'file /bin/echo' -ex 'run /*'
/bin /boot (...) /tmp /usr /var
gcj
支持已删除
删除了对使用 Java 的 GNU 编译器(
gcj)
调试 Java 程序的支持。
符号转储维护命令的新语法
符号转储维护命令语法现在在文件名之前包括一些选项。因此,在 RHEL 7 中可以与 GDB 一起工作的命令在 RHEL 8 中无法工作。
例如,以下命令不再在文件中存储符号,而是生成一个错误消息:
(gdb) maintenance print symbols /tmp/out main.c
符号转储维护命令的新语法为:
maint print symbols [-pc address] [--] [filename]
maint print symbols [-objfile objfile] [-source source] [--] [filename]
maint print psymbols [-objfile objfile] [-pc address] [--] [filename]
maint print psymbols [-objfile objfile] [-source source] [--] [filename]
maint print msymbols [-objfile objfile] [--] [filename]
线程数不再是全局的
在以前的版本中,GDB 只使用全局线程编号。编号已扩展为以
inferior_num.thread_num
形式按 inferior 显示,如
2.1
。因此,
$_thread
方便变量和
InferiorThread.num
Python 属性中的线程号在 inferior 间不再是唯一的。
GDB 现在按线程存储第二个线程 ID,称为全局线程 ID,这是之前版本中线程号的新等价物。要访问全局线程号,请使用
$_gthread
方便变量以及
InferiorThread.global_num
Python 属性。
为了向后兼容,机器接口(MI)线程 ID 始终包含全局 ID。
例 16.2. GDB 线程数更改示例
在 Red Hat Enterprise Linux 7 上:
# debuginfo-install coreutils
$ gdb -batch -ex 'file echo' -ex start -ex 'add-inferior' -ex 'inferior 2' -ex 'file echo' -ex start -ex 'info threads' -ex 'pring $_thread' -ex 'inferior 1' -ex 'pring $_thread'
(...)
Id Target Id Frame
* 2 process 203923 "echo" main (argc=1, argv=0x7fffffffdb88) at src/echo.c:109
1 process 203914 "echo" main (argc=1, argv=0x7fffffffdb88) at src/echo.c:109
$1 = 2
(...)
$2 = 1
在 Red Hat Enterprise Linux 8 中:
# dnf debuginfo-install coreutils
$ gdb -batch -ex 'file echo' -ex start -ex 'add-inferior' -ex 'inferior 2' -ex 'file echo' -ex start -ex 'info threads' -ex 'pring $_thread' -ex 'inferior 1' -ex 'pring $_thread'
(...)
Id Target Id Frame
1.1 process 4106488 "echo" main (argc=1, argv=0x7fffffffce58) at ../src/echo.c:109
* 2.1 process 4106494 "echo" main (argc=1, argv=0x7fffffffce58) at ../src/echo.c:109
$1 = 1
(...)
$2 = 1
值内容的内存可能会受限制
在以前的版本中,GDB 不会限制为值内容分配的内存量。因此,调试不正确的程序可能会导致 GDB 分配过多的内存。已添加
max-value-size
设置来限制分配的内存量。这个限制的默认值为 64 KiB。因此,Red Hat Enterprise Linux 8 中的 GDB 不会显示太大的值,而是会报告这个值太大。
例如,打印一个定义为
char s[128*1024];
的值会生成不同的结果:
Red Hat Enterprise Linux 7,
$1 = 'A' <repeats 131072 times>
On Red Hat Enterprise Linux 8,
value requires 131072 bytes, which is more than max-value-size
对
stabs
调试文件格式的 Sun 版本的支持已删除。GDB 仍然支持在 RHEL 中使用 GCC 的
gcc -gstabs
选项生成的
stabs
格式。
Sysroot 处理的变化
当搜索调试所需文件时,使用
set sysroot
path
命令指定系统根。现在,为这个命令提供的目录名可能会有字符串
target:
前缀,它使 GDB 从目标系统中(本地和远程)对共享的库。以前可用的
remote:
前缀现在被视为
target:
另外,为了向后兼容,默认的系统根值已从空字符串变为
target:
。
当 GDB 远程启动进程时,或者当它连接到已运行的进程(本地和远程)时,指定的系统根将附加到主可执行文件的文件名前面。这意味着,对于远程进程,默认值
target:
使 GDB 始终尝试从远程系统加载调试信息。为防止这种情况,请在
target remote
命令之前运行
set sysroot
命令,以便在远程符号文件之前可以找到本地符号文件。
HISTSIZE 不再控制 GDB 命令历史记录大小
在以前的版本中,GDB 使用
HISTSIZE
环境变量来确定命令历史记录应保留多长。GDB 已改为使用
GDBHISTSIZE
环境变量。该变量只适用于 GDB。可能的值及其作用:
正数 - 使用这个大小的命令历史记录,
-1
或空字符串 - 保留所有命令的历史记录,
非数字值 - 忽略。
添加了完成限制
在完成过程中考虑的最大候选数量现在可以使用
set max-completions
命令来限制。要显示当前的限制,请运行
show max-completions
命令。默认值为 200。这个限制防止 GDB 产生大量的完成列表并变得无响应。
例如,输入
p <tab><tab>
之后的输出是:
在 RHEL 7 上:
Display all 29863 possibilities? (y or n)
在 RHEL 8 上:
Display all 200 possibilities? (y or n)
删除了 HP-UX XDB 兼容性模式
HP-UX XDB 兼容模式的
-xdb
选项已从 GDB 中删除。
处理线程的信号
在以前的版本中,GDB 可向当前线程发送信号,而不是实际发送信号的线程。这个 bug 已被解决,GDB 现在在恢复执行时始终将信号传递给正确的线程。
此外,
signal
命令现在总是能够将请求的信号正确地传送给当前线程。如果程序针对信号停止了,且用户切换了线程,则 GDB 将要求确认。
断点模式总是插入断开和自动合并
breakpoint always-inserted
设置已被更改。已删除
auto
值和对应行为。默认值现在为
off
。另外,
off
值不会导致 GDB 不从目标中删除断点,直到所有进程都停止了。
不再支持 remotebaud 命令
set remotebaud
和
show remotebaud
命令不再被支持。改为使用
set serial baud
和
show serial baud
命令。
在 RHEL 8 中,安装身份管理(IdM)服务器和客户端所需的软件包作为模块分发。
client
流是
idm
模块的默认流,您可以在不启用流的情况下下载安装客户端所需的软件包。
IdM 服务器模块流名为
DL1
,它包含与不同类型的 IdM 服务器相对应的多个配置集:
server
:没有集成 DNS 的 IdM 服务器
dns
:带有集成 DNS 的 IdM 服务器
adtrust
:与 Active Directory 有信任协议的 IdM 服务器
client
: IdM 客户端
要在
DL1
流的特定配置集中下载软件包:
# yum module enable idm:DL1
切换到通过流交付的 RPM:
# yum distro-sync
安装所选的配置文件:
# yum module install idm:DL1/profile
使用上述定义的特定的配置文件之一替换
profile
。
详情请参阅
安装身份管理服务器所需的软件包
和
安装身份管理客户端所需的软件包
。
在 Red Hat Enterprise Linux(RHEL)7 中,外部组成员资格允许 AD 用户和组在系统安全服务守护进程(SSSD)的帮助下访问 POSIX 环境中的 IdM 资源。
IdM LDAP 服务器有自己的机制来授权访问控制。RHEL 8 引进了一个更新,它许作为 IdM 组成员为 AD 用户添加 ID 用户覆盖。ID 覆盖是描述特定的活动目录用户或组属性在特定 ID 视图中应是什么样子的记录,本例中为默认信任视图。更新后,IdM LDAP 服务器可以将 IdM 组的访问控制规则应用给 AD 用户。
AD 用户现在可以使用 IdM UI 的自助服务功能,例如上传其 SSH 密钥或更改其个人数据。AD 管理员可以完全管理 IdM ,而无需两个不同的帐户和密码。
目前,IdM 中所选的功能可能仍对 AD 用户不可用。例如,为作为 IdM
admins
组的用户 AD 的 IdM 用户设置密码可能会失败。
17.3. IdM 支持用于安装和管理的 Ansible 角色和模块
Red Hat Enterprise Linux 8.1 引入了
ansible-freeipa
软件包,它为身份管理(IdM)部署和管理提供了 Ansible 角色和模块。您可以使用 Ansible 角色来安装和卸载 IdM 服务器、副本和客户端。您可以使用 Ansible 模块来管理 IdM 组、拓扑和用户。另外,还提供了 playbook 示例。
此更新简化了基于 IdM 的解决方案的安装和配置。
17.4.
ansible-freeipa
及所有依赖项在 AppStream 存储库中提供
从 RHEL 8.6 开始,安装
ansible-freeipa
软件包会将
ansible-core
软件包作为依赖项自动安装,它是一个更基本的
ansible
版本。
ansible-freeipa
和
ansible-core
都在
rhel-9-for-x86_64-appstream-rpms
存储库中提供。
RHEL 8.6 中的
ansible-freeipa
包含 RHEL 8.6 之前包含的的所有模块。
在 RHEL 8.6 之前,您必须首先启用 Ansible 存储库,并安装
ansible
软件包。之后您才能安装
ansible-freeipa
。
17.5. 传统 RHEL
ansible-freeipa
存储库的一个替代方案:Ansible Automation Hub
从 Red Hat Enterprise Linux 8.6 开始,您可以从 Ansible Automation Hub (AAH)下载
ansible-freeipa
模块,而不是从标准 RHEL 存储库下载它们。通过使用 AAH,您可以从此存储库中
ansible-freeipa
模块的快速更新中受益。
在 AAH 中,
ansible-freeipa
角色和模块以集合的形式发布。请注意,您需要 Ansible Automation Platform(AAP)订阅来访问 AAH 门户中的内容。您还需要
ansible
版本 2.14 或更高版本。
redhat.rhel_idm
集合与传统的
ansible-freeipa
软件包有相同的内容。但是,集合形式使用完全限定的集合名称(FQCN),其中包含一个命名空间和集合名称。例如,
redhat.rhel_idm.ipadnsconfig
模块对应于 RHEL 存储库提供的
ansible-freeipa
中的
ipadnsconfig
模块。命名空间和集合名称的组合可确保对象是唯一的,并可无冲突地共享。
17.6. 身份管理用户可以使用外部身份提供程序向 IdM 进行身份验证
从 RHEL 8.10 开始,您可以将身份管理(IdM)用户与支持 OAuth 2 设备授权流的外部身份提供程序(IdP)关联。这些 IdP 示例包括红帽构建的 Keycloak、Azure Entra ID、Github、Google 和 Facebook。
如果 IdM 中存在 IdP 引用和关联的 IdP 用户 ID,您可以使用它们,以使 IdM 用户可以在外部 IdP 进行身份验证。在外部 IdP 执行身份验证和授权后,IdM 用户会收到一个具有单点登录功能的 Kerberos 票据。用户必须使用 RHEL 8.7 或更高版本中提供的 SSSD 版本进行身份验证。
您还可以使用
idp
ansible-freeipa
模块为 IdM 用户配置 IdP 身份验证。
17.7. 添加了 RHEL 8 的会话记录解决方案
在 Red Hat Enterprise Linux 8(RHEL 8)添加了记录会话记录解决方案。新的
tlog
软件包及其关联的 Web 控制台会话播放器能够记录和回放用户终端会话。可以通过 System Security Services Daemon(SSSD)服务针对每个用户或用户组配置记录。所有终端输入和输出都被捕获,并以基于文本的格式存储在系统日志中。出于安全原因,输入默认处于不活动状态,不会截获原始密码和其他敏感信息。
该解决方案可用于安全敏感系统上用户会话的审计。如果出现安全问题,可以检查记录的会话作为分析的 一 部分。系统管理员现在可以在本地配置会话记录,并可以从 RHEL 8 web 控制台界面或使用
tlog-play
工具通过命令行界面查看结果。
17.8.1. 没有
NTP Server
IdM 服务器角色
因为
ntpd
在 RHEL 8 中已弃用,取而代之的是
chronyd
,所以 IdM 服务器不再被配置为网络时间协议(NTP)服务器,只被配置为 NTP 客户端。RHEL 7
NTP Server
IdM 服务器角色也已在 RHEL 8 中被弃用。
17.8.2. OpenLDAP 不支持 NSS 数据库
在以前版本的 Red Hat Enterprise Linux(RHEL)中的 OpenLDAP 套件使用 Mozilla 网络安全服务(NSS)进行加密。RHEL 8 中,OpenLDAP 社区支持的 OpenSSL 取代了 NSS。OpenSSL 不支持 NSS 数据库来存储证书和密钥。但是,它仍然支持服务于同一目的的隐私增强邮件(PEM)文件。
17.8.3. 一些 Python Kerberos 软件包已被替代
在 Red Hat Enterprise Linux(RHEL)8 中,
python-gssapi
软件包已替换了 Python Kerberos 软件包,如
python-krbV
、
python-kerberos
、
python-requests-kerberos
和
python-urllib2_kerberos
。主要优点包括:
与
python-kerberos
和
python-krbV
相比,
python-gssapi
更容易使用。
python-gssapi
支持
python 2
和
python 3
,而
python-krbV
不支持。
额外的 Kerberos 软件包
python-requests-gsapi
和
python-urllib-gssapi
当前在 Enterprise Linux(EPEL)的 Extra Packages 存储库中提供。
由于向后兼容性的原因,除了 Kerberos,基于 GSSAPI 的软件允许使用其他通用安全服务 API(GSSAPI)机制,如 NT LAN Manager
NTLM
。
在这个更新提高了 RHEL 8 中 GSSAPI 的可维护性和可调试性。
在 RHEL 8 中,
ad_gpo_access_control
选项的默认设置是
enforcing
,它确保评估并强制执行基于活动目录组策略对象(GPO)的访问控制规则。
相反,RHEL 7 中此选项的默认值是
permissive
,它评估但不强制执行基于 GPO 的访问控制规则。使用
permissive
模式时,每次用户被 GPO 拒绝访问都会记录系统日志消息,但是仍允许这些用户登录。
红帽建议确保在从 RHEL 7 升级到 RHEL 8 前,在 Active Directory 中正确配置 GPO。
不影响默认 RHEL 7 主机中授权的错误配置的 GPO 可能会影响默认的 RHEL 8 主机。
有关 GPO 的更多信息,请参阅
在 RHEL 中应用组策略对象访问控制
和
sssd-ad
手册页中的
ad_gpo_access_control
条目。
17.9.2.
authselect
替代
authconfig
在 RHEL 8 中,
authselect
工具替换了
authconfig
工具。
authselect
提供了一种更安全的 PAM 堆栈管理方法,使 PAM 配置更改对系统管理员来说更加简单。
authselect
可用于配置身份验证方法,如密码、证书、智能卡和指纹。
authselect
不配置加入远程域所需的服务。此任务由特殊工具执行,比如
realmd
或
ipa-client-install
。
17.9.3. KCM 替代另外 KEYRING 来作为默认的凭证缓存存储
在 RHEL 8 中,默认凭证缓存存储是 Kerberos 凭证管理器(KCM),它由
sssd-kcm
守护进程支持。KCM 克服了之前使用的 KEYRING 的限制,例如难以在容器化环境中使用,因为它没有命名空间,不能查看和管理配额。
有了这个更新,RHEL 8 包含一个更适合容器化环境的凭证缓存,并为在以后的版本中构建更多功能提供了基础。
17.9.4.
sssctl
为 IdM 域打印一个 HBAC 规则报告
有了这个更新,系统安全服务守护进程(SSSD)的
sssctl
工具可以打印身份管理(IdM)域的访问控制报告。出于监管方面的原因,此功能满足了某些环境查看可访问特定客户端计算机的用户和组列表的需求。在 IdM 客户端上运行
sssctl access-report
domain_name
会打印 IdM 域中应用到客户端机器的的基于主机的访问控制(HBAC)规则的解析子集。
请注意,除了 IdM 外,其它供应商都不支持这个特性。
17.9.5. 从 RHEL 8.8 开始,SSSD 不再默认缓存本地用户,也不会通过
nss_sss
模块给它们提供服务
在 RHEL 8.8 及更高版本中,系统安全服务守护进程(SSSD)
files
供应商(其为
/etc/passwd
和
/etc/group
文件中的用户和组提供服务)默认被禁用。
/etc/sssd/sssd.conf
配置文件中的
enable_files_domain
设置的默认值为
false
。
对于 RHEL 8.7 及更早的版本,SSSD
files
供应商默认被启用。
sssd.conf
配置文件中
enable_files_domain
设置的默认值为
true
,
sss
nsswitch 模块在
/etc/nsswitch.conf
文件中的
files
之前。
17.9.6. SSSD 现在允许您选择多个智能卡验证设备中的一个
默认情况下,系统安全服务守护进程(SSSD)会尝试自动为智能卡身份验证检测设备。如果连接了多个设备,SSSD 会选择它检测到的第一个设备。因此,您无法选择特定的设备,这个设备有时会导致失败。
有了这个更新,您可以为
sssd.conf
配置文件的
[pam]
部分配置一个新的
p11_uri
选项。此选项允许您定义哪个设备用于智能卡身份验证。
例如,要选择一个由 OpenSC PKCS#11 模块检测到的 slot ID 为
2
的读卡器,请添加:
p11_uri = library-description=OpenSC%20smartcard%20framework;slot-id=2
到
sssd.conf
的
[pam]
部分:
详情请查看
man sssd.conf
页面。
17.10.1.
sssd-secrets
已被删除
Red Hat Enterprise Linux 8 中删除了系统安全服务守护进程(SSSD)的
sssd-secrets
组件。这是因为机密服务提供商 Custodia 不再被积极地开发。使用其他身份管理工具存储机密,如身份管理 Vault。
17.10.2. libwbclient 的 SSSD 版本已删除
libwbclient
软件包的 SSSD 实现允许 Samba
smbd
服务从 AD 检索用户和组信息,而无需运行
winbind
服务。由于 Samba 现在要求
winbind
服务运行并处理与 AD 的通信,出于安全原因,相关的代码已从
smdb
中删除。因为这个额外需要的功能不是 SSSD 的一部分,且
libwbclient
的 SSSD 实现不能与 Samba 的最新版本一起使用,因此
libwbclient
的 SSSD 实现已在 RHEL 8.5 中删除。
RHEL 8 web 控制台(也称为 Cockpit)的软件包现在是 Red Hat Enterprise Linux 默认存储库的一部分,因此可以立即安装在注册的 RHEL 8 系统上。
另外,在 RHEL 8 的非最小安装上,会自动安装 web 控制台,控制台所需的防火墙端口会自动打开。
登录前还添加了系统消息,提供有关如何启用或访问 Web 控制台的信息。
RHEL 8 web 控制台中的
Networking
标签页现在包含
防火墙
设置。在这个部分中,用户可以:
启用/禁用防火墙
添加/删除服务
详情请参阅
使用 web 控制台管理防火墙
。
RHEL 8 web 控制台为使用在本地系统中安装的红帽订阅管理器提供了一个界面。Subscription Manager 连接到红帽客户门户网站,并验证所有可用信息:
过期的订阅
续订的订阅
如果您要续订订阅或在红帽客户门户网站中获得不同的订阅,您不必手动更新订阅管理器数据。Subscription Manager 会自动将数据与红帽客户门户网站同步。
Web 控制台的订阅页面现在由新的 subscription-manager-cockpit 软件包提供。
详情请参阅
web 控制台中的管理订阅
。
如果您的系统已在身份管理(IdM)域中注册了,则 RHEL 8 web 控制台现在默认使用域的集中管理的 IdM 资源。这包括以下优点:
IdM 域的管理员可以使用 Web 控制台来管理本地机器。
控制台的 Web 服务器会自动切换到由 IdM 证书颁发机构(CA)发布并被浏览器接受的证书。
IdM 域中具有 Kerberos 票据的用户不需要提供登录凭证来访问 Web 控制台。
Web 控制台可以访问 IdM 域已知的 SSH 主机,而无需手动添加 SSH 连接。
请注意,要使 IdM 与 Web 控制台集成正常工作,用户首先需要在 IdM 服务器中运行带有 enable-admins-sudo 选项的 ipa-advise 工具。
有了这个更新,Web 控制台菜单和页面可以在移动浏览器变体上导航。这样就可以从移动设备使用 RHEL 8 web 控制台管理系统。
18.6. Web 控制台前端页面现在显示缺少的更新和订阅
如果 RHEL 8 web 控制台管理的系统有过时的软件包或过期的订阅,现在会在系统的 web 控制台首页上显示警告信息。
有了这个更新,您可以使用 RHEL 8 web 控制台界面将基于策略的解密(PBD)规则应用到受管系统上的磁盘。这使用 Clevis 解密客户端来方便 Web 控制台中的各种安全管理功能,例如 LUKS 加密磁盘分区的自动解锁。
在 Web 控制台的
Storage
选项卡中,您现在可以使用 LUKS(Linux 统一密钥设置)版本 2 格式创建、锁定、解锁、调整大小以及配置加密设备。
这个 LUKS 的新版本提供:
更灵活的解锁策略
更强大的加密
更好地与将来的更改兼容
18.9. 现在可以使用 web 控制台管理虚拟机
Virtual Machines 页面现在被添加到 RHEL 8 web 控制台界面中,这使用户可以创建和管理基于 libvirt 的虚拟机。
有关 web 控制台和虚拟机管理器之间虚拟管理功能差异的信息,请参阅
虚拟机管理器和 web 控制台中虚拟化功能的差别
。
18.10. Web 控制台不支持 Internet Explorer
对 Internet Explorer 浏览器的支持已从 RHEL 8 web 控制台中删除。现在,在 Internet Explorer 中尝试打开 Web 控制台会显示一个错误屏幕,其中包含可以改为使用的推荐浏览器列表。
19.1. 现在可以使用 web 控制台管理虚拟机
Virtual Machines 页面现在被添加到 RHEL 8 web 控制台界面中,这使用户可以创建和管理基于 libvirt 的虚拟机(VM)。
另外,虚拟机管理器(
virt-manager
)应用程序已被弃用,可能在以后的 RHEL 主发行版本中不被支持。
但请注意,Web 控制台目前不提供
virt-manager
提供的所有虚拟管理功能。有关 RHEL 8 web 控制台和虚拟机管理器之间可用功能差异的详情,请参阅
配置和管理虚拟化
文档。
Red hat Enterprise Linux 8 引入了对
Q35
的支持,这是一种更加现代的基于 PCI Express 的机器类型。这在虚拟设备的特性和性能方面提供了各种改进,并确保更广泛的现代设备与虚拟化兼容。另外,Red Hat Enterprise Linux 8 中创建的虚拟机被设置为默认使用 Q35。
请注意,之前默认的
PC
机器类型已弃用,可能在以后的 RHEL 主要版本中不被支持。但是,不建议将现有虚拟机的机器类型从
PC
更改为
Q35
。
PC
和
Q35
之间的显著区别包括:
旧的操作系统,如 Windows XP 不支持 Q35,如果在 Q35 虚拟机上使用,将不能引导。
目前,当在 Q35 虚拟机上使用 RHEL 6 作为操作系统时,在某些情况下,对该虚拟机热插拔到 PCI 设备将无法正常工作。此外,某些传统的 virtio 设备在 RHEL 6 Q35 虚拟机上无法正常工作。
因此,推荐在 RHEL 6 虚拟机中使用 PC 机器类型。
Q35 模拟 PCI Express(PCI-e)总线而不是 PCI。因此,对客户机操作系统会显示不同的设备拓扑和寻址方案。
Q35 具有内置的 SATA/AHCI 控制器,而不是 IDE 控制器。
SecureBoot 功能仅适用于 Q35 虚拟机。
已弃用并删除
cpu64-rhel6
CPU 模型
cpu64-rhel6
QEMU 虚拟 CPU 模型已在 RHEL 8.1 中弃用,已从 RHEL 8.2 中删除。建议您根据主机上的 CPU,使用 QEMU 和
libvirt
提供的其他 CPU 型号。
IVSHMEM 已经被禁用
在多个虚拟机之间提供共享内存的虚拟机间共享内存设备(IVSHMEM)功能现在在 Red Hat Enterprise Linux 8 中已禁用。使用这个设备配置的虚拟机将无法引导。同样,尝试热插拔这样的设备也会失败。
virt-install
无法再使用 NFS 位置
在这个版本中,
virt-install
工具无法挂载 NFS 位置。因此,使用
virt-install
安装带有
--location
选项的值指定的 NFS 地址的虚拟机时,安装会失败。要临时解决这个问题,请在使用
virt-install
之前挂载您的 NFS 共享或使用 HTTP 位置。
RHEL 8 不支持 tulip 驱动程序
有了这个更新,tulip 网络驱动程序不再被支持。因此,当在 Microsoft Hyper-V hypervisor 上的第一代虚拟机(VM)上使用 RHEL 8 时,"Legacy Network Adapter"设备无法正常工作,这会导致此类虚拟机的 PXE 安装失败。
要使 PXE 安装正常工作,请在生成 2 Hyper-V 虚拟机上安装 RHEL 8。如果您需要 RHEL 8 第一代虚拟机,请使用 ISO 安装。
LSI Logic SAS 和 Parallel SCSI 驱动程序不被支持
SCSI 的 LSI Logic SAS 驱动程序(
mptsas
)和 LSI Logic Parallel 驱动程序(
mptspi
)不再被支持。因此,可以将驱动程序用于将 RHEL 8 作为 VMWare hypervisor 上的客户机操作系统安装到 SCSI 磁盘上,但创建的虚拟机不被红帽支持。
安装 virtio-win 不再创建带有 Windows 驱动程序的软盘镜像
由于软盘驱动器的限制,virtio-win 驱动程序不再作为软盘镜像提供。用户应改为使用 ISO 镜像。
一组容器镜像可用于 Red Hat Enterprise Linux 8。主要变更包括:
Docker 不包含在 RHEL 8.0 中。要使用容器,请使用
podman
、
buildah
、
skopeo
和
runc
工具。
有关这些工具以及在 RHEL 8 中使用容器的详情,请参考
构建、运行和管理容器
。
podman
已作为完全支持的功能发布。
podman
管理单节点上的 pod、容器镜像和容器。它在
libpod
库基础上构建,这支持管理容器和容器组,称为 pod。
了解如何使用
podman
,查看
构建、运行和管理容器
。
在 RHEL 8 GA 中,新提供了红帽通用基础镜像(UBI)。UBI 替换了红帽以前提供的一些镜像,如标准的和最小的 RHEL 基础镜像。
与旧的红帽镜像不同,UBI 可以自由地重新分发。这意味着它们可以在任何环境中使用,在任意地方共享。即使您不是红帽客户,您也可以使用它们。
有关 UBI 文档,请参阅
构建、运行和管理容器
。
在 RHEL 8 GA 中,提供了额外的容器镜像,可提供 AppStream 组件,这些容器镜像与 RHEL 7 中的
Red Hat Software Collections
一起发布。所有 RHEL 8 镜像均基于
ubi8
基础镜像。
RHEL 8 完全支持 64 位 ARM 架构的容器镜像 ARM。
rhel-tools
容器已在 RHEL 8 中删除。
support-tools
容器提供了
sos
和
redhat-support-tool
工具程序。系统管理员也可以使用此镜像来构建系统工具容器镜像。
在 RHEL 8 中,对无根容器的支持作为技术预览提供。
无根容器是由没有管理权限的普通系统用户创建和管理的容器。
21.1. GNOME Shell 是默认的桌面环境
RHEL 8 与作为默认桌面环境的 GNOME Shell 一起分发。
与 KDE Plasma Workspaces (KDE)相关的所有软件包已删除,不再可以使用 KDE 作为默认 GNOME 桌面环境的替代品。
红帽不支持从带有 KDE 的 RHEL 7 迁移到 RHEL 8 GNOME。建议带有 KDE 的 RHEL 7 用户备份其数据并安装带有 GNOME Shell 的 RHEL 8。
RHEL 8 与 GNOME Shell 版本 3.28 一起分发。
突出显示与 GNOME Shell 版本 3.28 相关的增强功能。
告知 GNOME Shell 环境与显示协议的默认组合的更改。
解释了如何访问默认不可用的功能。
解释了用于软件管理的 GNOME 工具中的更改。
21.2.1. RHEL 8 中的GNOME Shell,版本 3.28
RHEL 8 提供的 GNOME Shell,版本 3.28。主要改进包括:
新的 GNOME Boxes 功能
新屏幕键盘
扩展设备支持,最重要的是 Thunderbolt 3 接口的集成
GNOME 软件、dconf-editor 和 GNOME Terminal 的改进
GNOME 3 提供了两个基本环境:
GNOME 标准
GNOME 经典
两个环境都可以使用两个不同的协议来构建图形用户界面:
X11
协议,它使用
X.Org
作为显示服务器。
Wayland
协议,它使用
GNOME Shell
作为
Wayland
合成器和显示服务器。
这种显示服务器的解决方案进一步被称为
Wayland 上的 GNOME Shell
。
RHEL 8 中的默认组合是使用
Wayland 上的 GNOME Shell
作为显示服务器的 GNOME 标准环境。
但是,您可能希望切换到 GNOME Shell 环境和图形协议堆栈的另一个组合。更多信息请参阅
第 21.3 节 “选择 GNOME 环境并显示协议”
。
有关使用两个 GNOME Shell 环境的基础知识的更多信息,请参阅
GNOME 环境的概述
。
在 RHEL 8 中,Nautilus 文件管理器不再提供桌面图标功能,而是由桌面图标 gnome-shell 扩展提供。
要能够使用扩展,您必须安装 Appstream 存储库中提供的
gnome-shell-extension-desktop-icons
软件包。
有关 RHEL 8 中桌面图标的更多信息,请参阅
管理桌面图标
。
在
GNOME Shell on Wayland
会话中,提供了部分扩展功能。该功能使得按部分扩展 GUI 成为可能,这可以提高特定显示器上扩展的 GUI 的外观。
请注意,这个功能当前被视为实验性功能,因此在默认情况下是禁用的。
要启用分数扩展,请运行以下命令:
# gsettings set org.gnome.mutter experimental-features "['scale-monitor-framebuffer']"
21.2.5. 用于软件包管理的 GNOME Software
在 RHEL 7 上的图形环境中提供软件包管理的工具集的
gnome-packagekit
软件包不再可用。
在 RHEL 8 上,
GNOME Software
工具提供了类似的功能,它可让您安装和更新应用程序和 gnome-shell 扩展。
GNOME Software
在
gnome-software
软件包中分发。
有关使用
GNOME software
安装应用程序的更多信息,请参阅
在 GNOME 中安装应用程序
。
当尝试使用
sudo
命令在终端中打开图形应用程序时,您必须执行以下操作:
X11 应用程序
如果应用程序使用
X11
显示协议,请在 X 服务器访问控制列表中添加本地用户
root
。因此,允许
root
连接到
Xwayland
,这会将
X11
协议转换为
Wayland
协议,反之亦然。
例 21.1. 将
root
添加到 X 服务器访问控制列表,以使用 sudo 打开 xclock
$ xhost +si:localuser:root
$ sudo xclock
Wayland 应用程序
如果应用是
Wayland
原生的,请包含
-E
选项。
例 21.2. 使用 sudo 打开 GNOME 计算器
$ sudo -E gnome-calculator
否则,如果您只输入
sudo
和应用程序的名称,打开应用程序的操作会失败,并显示以下错误消息:
No protocol specified
Unable to init server: could not connect: connection refused
# Failed to parse arguments: Cannot open display
要在 GNOME 环境和图形协议堆栈的各种组合之间切换,请使用以下流程。
从登录屏幕(GDM),点
Sign In
按钮旁边的齿轮按钮。
您无法从锁定屏幕访问这个选项。当您首次启动 RHEL 8 或从当前会话注销时,会出现登录屏幕。
请注意,在登录屏幕上显示的菜单中,
X.Org
显示服务器标记为
X11
显示服务器。
由上述流程导致的 GNOME 环境和图形协议堆栈的更改在用户退出登录以及关闭或重启计算机时永久存在。
Red Hat Enterprise Linux 8 支持多种语言的安装,并根据您的需要更改语言。
东亚语言 - 日语、韩语、简体中文和繁体中文。
欧洲语言 - 英语、德语、西班牙语、法语、意大利语、葡萄牙语和俄语。
下表列出了为各种主要语言提供的字体和输入法。
语言
|
默认字体(字体软件包)
|
输入法
|
English
dejavu-sans-fonts
dejavu-sans-fonts
dejavu-sans-fonts
dejavu-sans-fonts
dejavu-sans-fonts
dejavu-sans-fonts
dejavu-sans-fonts
google-noto-sans-cjk-ttc-fonts, google-noto-serif-cjk-ttc-fonts
ibus-libpinyin, libpinyin
google-noto-sans-cjk-ttc-fonts, google-noto-serif-cjk-ttc-fonts
ibus-libzhuyin, libzhuyin
google-noto-sans-cjk-ttc-fonts, google-noto-serif-cjk-ttc-fonts
ibus-kkc, libkc
google-noto-sans-cjk-ttc-fonts, google-noto-serif-cjk-ttc-fonts
ibus-hangul, libhangu
|
RHEL 8 与 RHEL 7 相比,对国际化进行了以下更改:
添加了对
Unicode 11
计算行业标准的支持。
国际化发布在多个软件包中,这样就可以进行较小的内存占用安装。如需更多信息,参阅
请使用语言包
。
现在,多区域的
glibc
软件包更新会与 Common Locale Data Repository(CLDR)同步。
第 23 章 用于 SAP 解决方案的 Red Hat Enterprise Linux
用于 SAP 解决方案的 Red Hat Enterprise Linux 为 SAP 工作负载提供了一致的基础。有关关键业务 IT 环境(如 SAP 环境)的 RHEL for SAP Solutions 订阅所提供的功能和好处的列表,请参阅
用于 SAP Solutions 订阅的 Red Hat Enterprise Linux 概述
。以下资源提供了 RHEL 7 和 RHEL 8 之间变化的概述。
有关 RHEL for SAP Solutions 生命周期的详情,请查看
Red Hat Enterprise Linux 生命周期
。
有关 RHEL 8 使用的详细信息,请参阅
RHEL 8 产品文档
。
有关从 RHEL 7 到 RHEL 8 的原位升级的详情,请参阅
从 RHEL 7 升级到 RHEL 8
。
除了两个主要 RHEL 存储库( BaseOS 和 AppStream)外,RHEL 8 for SAP Solutions 订阅还包括 SAP Solutions 和 SAP NetWeaver 存储库。SAP 环境和工作负载都需要这两个存储库。
最初的存储库名称。
|
新存储库名称
|
修改自
|
备注
|
rhel-sap-hana-for-rhel-7-<server|for-power-le>-rpms
rhel-8-for-
<arch>
-sap-solutions-rpms
RHEL 8.0
也适用于 Extended Update Support(EUS)和 Update Services for SAP Solutions(E4S)存储库
rhel-sap-for-rhel-7-<server|for-power-le>-rpms
rhel-8-for-
<arch>
-sap-netweaver-rpms
RHEL 8.0
也适用于 Extended Update Support(EUS)和 Update Services for SAP Solutions(E4S)存储库
此表使用示例来帮助识别完整的存储库 ID,其中 <
<arch>
; 是特定的架构。
|
以下章节包含了对 RHEL 7 和 RHEL 8 间软件包的更改,以及对 RHEL 8 次版本间的更改。
A.1.1. RHEL 8 次要发行本中添加的软件包
从 RHEL 8.1 开始,在 RHEL 8 中添加了以下软件包:
软件包
|
软件仓库
|
新内容
|
aardvark-dns
rhel8-AppStream
RHEL 8.6
accel-config
rhel8-BaseOS
RHEL 8.4
accel-config-devel
rhel8-CRB
RHEL 8.4
accel-config-libs
rhel8-BaseOS
RHEL 8.4
adwaita-icon-theme-devel
rhel8-CRB
RHEL 8.6
adwaita-qt5
rhel8-AppStream
RHEL 8.5
alsa-sof-firmware
rhel8-BaseOS
RHEL 8.3
alsa-sof-firmware-debug
rhel8-BaseOS
RHEL 8.3
anaconda-widgets-devel
rhel8-CRB
RHEL 8.7
annobin-annocheck
rhel8-AppStream
RHEL 8.3
ansible-collection-microsoft-sql
rhel8-AppStream
RHEL 8.5
ansible-collection-redhat-rhel_mgmt
rhel8-AppStream
RHEL 8.5
ansible-core
rhel8-AppStream
RHEL 8.6
ansible-freeipa
rhel8-AppStream
RHEL 8.1
ansible-freeipa-tests
rhel8-AppStream
RHEL 8.5
ansible-pcp
rhel8-AppStream
RHEL 8.5
ansible-test
rhel8-AppStream
RHEL 8.6
apiguardian
rhel8-AppStream
RHEL 8.4
asio-devel
rhel8-CRB
RHEL 8.1
asio-devel
rhel8-CRB
RHEL 8.3
aspnetcore-runtime-3.1
rhel8-AppStream
RHEL 8.2
aspnetcore-runtime-5.0
rhel8-AppStream
RHEL 8.3
aspnetcore-runtime-6.0
rhel8-AppStream
RHEL 8.5
aspnetcore-runtime-7.0
rhel8-AppStream
RHEL 8.7
aspnetcore-runtime-8.0
rhel8-AppStream
RHEL 8.10
aspnetcore-targeting-pack-3.1
rhel8-AppStream
RHEL 8.2
aspnetcore-targeting-pack-5.0
rhel8-AppStream
RHEL 8.3
aspnetcore-targeting-pack-6.0
rhel8-AppStream
RHEL 8.5
aspnetcore-targeting-pack-7.0
rhel8-AppStream
RHEL 8.7
aspnetcore-targeting-pack-8.0
rhel8-AppStream
RHEL 8.10
autogen-libopts-devel
rhel8-CRB
RHEL 8.3
avahi-glib-devel
rhel8-CRB
RHEL 8.4
avahi-gobject-devel
rhel8-CRB
RHEL 8.4
avahi-tools
rhel8-AppStream
RHEL 8.9
avahi-ui
rhel8-CRB
RHEL 8.4
avahi-ui-devel
rhel8-CRB
RHEL 8.4
bash-devel
rhel8-CRB
RHEL 8.6
batik-css
rhel8-AppStream
RHEL 8.4
batik-util
rhel8-AppStream
RHEL 8.4
bcc-devel
rhel8-CRB
RHEL 8.2
bind9.16
rhel8-AppStream
RHEL 8.6
bind9.16-chroot
rhel8-AppStream
RHEL 8.6
bind9.16-devel
rhel8-CRB
RHEL 8.6
bind9.16-dnssec-utils
rhel8-CRB
RHEL 8.6
bind9.16-doc
rhel8-CRB
RHEL 8.6
bind9.16-libs
rhel8-AppStream
RHEL 8.6
bind9.16-license
rhel8-AppStream
RHEL 8.6
bind9.16-utils
rhel8-AppStream
RHEL 8.6
rhel8-AppStream
RHEL 8.3
cifs-utils-devel
rhel8-CRB
RHEL 8.8
clang-resource-filesystem
rhel8-AppStream
RHEL 8.5
clang-tools-extra-devel
rhel8-AppStream
RHEL 8.10
cockpit-leapp
rhel8-AppStream
RHEL 8.7
compat-exiv2-026
rhel8-AppStream
RHEL 8.2
compat-hwloc1
rhel8-BaseOS
RHEL 8.5
compat-sap-c++-10
rhel8-SAP
RHEL 8.3
compat-sap-c++-11
rhel8-SAP
RHEL 8.5
compat-sap-c++-12
rhel8-SAP
RHEL 8.7
conmon
rhel8-AppStream
RHEL 8.2
coreos-installer
rhel8-AppStream
RHEL 8.5
coreos-installer-bootinfra
rhel8-AppStream
RHEL 8.5
coreos-installer-dracut
rhel8-AppStream
RHEL 8.6
rhel8-AppStream
RHEL 8.2
criu-devel
rhel8-AppStream
RHEL 8.5
criu-libs
rhel8-AppStream
RHEL 8.5
rhel8-AppStream
RHEL 8.3
crypto-policies-scripts
rhel8-BaseOS
RHEL 8.3
dejavu-lgc-sans-fonts
rhel8-AppStream
RHEL 8.4
delve
rhel8-AppStream
RHEL 8.2
directory-maven-plugin-javadoc
rhel8-AppStream
RHEL 8.2
directory-maven-plugin
rhel8-AppStream
RHEL 8.2
disruptor
rhel8-AppStream
RHEL 8.6
dotnet-apphost-pack-3.1
rhel8-AppStream
RHEL 8.2
dotnet-apphost-pack-5.0
rhel8-AppStream
RHEL 8.3
dotnet-apphost-pack-6.0
rhel8-AppStream
RHEL 8.5
dotnet-apphost-pack-7.0
rhel8-AppStream
RHEL 8.7
dotnet-apphost-pack-8.0
rhel8-AppStream
RHEL 8.10
dotnet-build-reference-packages
rhel8-CRB
RHEL 8.5
dotnet-hostfxr-3.1
rhel8-AppStream
RHEL 8.2
dotnet-hostfxr-5.0
rhel8-AppStream
RHEL 8.3
dotnet-hostfxr-6.0
rhel8-AppStream
RHEL 8.5
dotnet-hostfxr-7.0
rhel8-AppStream
RHEL 8.7
dotnet-hostfxr-8.0
rhel8-AppStream
RHEL 8.10
dotnet-runtime-3.1
rhel8-AppStream
RHEL 8.2
dotnet-runtime-5.0
rhel8-AppStream
RHEL 8.3
dotnet-runtime-6.0
rhel8-AppStream
RHEL 8.5
dotnet-runtime-7.0
rhel8-AppStream
RHEL 8.7
dotnet-runtime-8.0
rhel8-AppStream
RHEL 8.10
dotnet-sdk-3.1-source-built-artifacts
rhel8-CRB
RHEL 8.5
dotnet-sdk-3.1
rhel8-AppStream
RHEL 8.2
dotnet-sdk-5.0
rhel8-AppStream
RHEL 8.3
dotnet-sdk-5.0-source-built-artifacts
rhel8-CRB
RHEL 8.5
dotnet-sdk-6.0
rhel8-AppStream
RHEL 8.5
dotnet-sdk-6.0-source-built-artifacts
rhel8-CRB
RHEL 8.6
dotnet-sdk-7.0
rhel8-AppStream
RHEL 8.7
dotnet-sdk-7.0-source-built-artifacts
rhel8-CRB
RHEL 8.7
dotnet-sdk-8.0
rhel8-AppStream
RHEL 8.10
dotnet-sdk-8.0-source-built-artifacts
rhel8-CRB
RHEL 8.10
dotnet-targeting-pack-3.1
rhel8-AppStream
RHEL 8.2
dotnet-targeting-pack-5.0
rhel8-AppStream
RHEL 8.3
dotnet-targeting-pack-6.0
rhel8-AppStream
RHEL 8.5
dotnet-targeting-pack-7.0
rhel8-AppStream
RHEL 8.7
dotnet-targeting-pack-8.0
rhel8-AppStream
RHEL 8.10
dotnet-templates-3.1
rhel8-AppStream
RHEL 8.2
dotnet-templates-5.0
rhel8-AppStream
RHEL 8.3
dotnet-templates-6.0
rhel8-AppStream
RHEL 8.5
dotnet-templates-7.0
rhel8-AppStream
RHEL 8.7
dotnet-templates-8.0
rhel8-AppStream
RHEL 8.10
dotnet5.0-build-reference-packages
rhel8-CRB
RHEL 8.5
dwarves
rhel8-CRB
RHEL 8.2
rhel8-AppStream
RHEL 8.8
eclipse-ecf-core
rhel8-AppStream
RHEL 8.4
eclipse-ecf-runtime
rhel8-AppStream
RHEL 8.4
eclipse-emf-core
rhel8-AppStream
RHEL 8.4
eclipse-emf-runtime
rhel8-AppStream
RHEL 8.4
eclipse-emf-xsd
rhel8-AppStream
RHEL 8.4
eclipse-equinox-osgi
rhel8-AppStream
RHEL 8.4
eclipse-jdt
rhel8-AppStream
RHEL 8.4
eclipse-p2-discovery
rhel8-AppStream
RHEL 8.4
eclipse-pde
rhel8-AppStream
RHEL 8.4
eclipse-platform
rhel8-AppStream
RHEL 8.4
eclipse-swt
rhel8-AppStream
RHEL 8.4
ee4j-parent
rhel8-AppStream
RHEL 8.2
efivar-devel
rhel8-CRB
RHEL 8.6
egl-utils
rhel8-AppStream
RHEL 8.7
elfutils-debuginfod
rhel8-BaseOS
RHEL 8.3
elfutils-debuginfod-client-devel
rhel8-AppStream
RHEL 8.2
elfutils-debuginfod-client
rhel8-AppStream
RHEL 8.2
emoji-picker
rhel8-AppStream
RHEL 8.4
eth-tools-basic
rhel8-AppStream
RHEL 8.5
eth-tools-fastfabric
rhel8-AppStream
RHEL 8.5
evince-devel
rhel8-CRB
RHEL 8.4
evolution-data-server-ui
rhel8-AppStream
RHEL 8.10
evolution-data-server-ui-devel
rhel8-AppStream
RHEL 8.10
fapolicyd
rhel8-AppStream
RHEL 8.1
fapolicyd-selinux
rhel8-AppStream
RHEL 8.3
fasterxml-oss-parent
rhel8-AppStream
RHEL 8.10
fdo-admin-cli
rhel8-AppStream
RHEL 8.6
fdo-client
rhel8-AppStream
RHEL 8.6
fdo-init
rhel8-AppStream
RHEL 8.6
fdo-manufacturing-server
rhel8-AppStream
RHEL 8.6
fdo-owner-cli
rhel8-AppStream
RHEL 8.6
fdo-owner-onboarding-server
rhel8-AppStream
RHEL 8.6
fdo-rendezvous-server
rhel8-AppStream
RHEL 8.6
felix-gogo-command
rhel8-AppStream
RHEL 8.4
felix-gogo-runtime
rhel8-AppStream
RHEL 8.4
felix-gogo-shell
rhel8-AppStream
RHEL 8.4
felix-scr
rhel8-AppStream
RHEL 8.4
fence-agents-ibm-powervs
rhel8-AppStream
RHEL 8.6
fence-agents-ibm-vpc
rhel8-AppStream
RHEL 8.6
fence-agents-kubevirt
rhel8-AppStream
RHEL 8.6
fence-agents-openstack
rhel8-HighAvailability
RHEL 8.7
fence-virtd-cpg
rhel8-AppStream
RHEL 8.6
flatpak-devel
rhel8-CRB
RHEL 8.5
flatpak-selinux
rhel8-AppStream
RHEL 8.2
flatpak-session-helper
rhel8-AppStream
RHEL 8.2
flatpak-spawn
rhel8-AppStream
RHEL 8.4
flatpak-xdg-utils
rhel8-AppStream
RHEL 8.4
frr-selinux
rhel8-AppStream
RHEL 8.7
fstrm
rhel8-AppStream
RHEL 8.4
fstrm-devel
rhel8-AppStream
RHEL 8.4
fstrm-utils
rhel8-CRB
RHEL 8.7
fwupd-devel
rhel8-CRB
RHEL 8.6
gcc-plugin-annobin
rhel8-AppStream
RHEL 8.7
gcc-toolset-9-libasan-devel
rhel8-AppStream
RHEL 8.2
gcc-toolset-9-libatomic-devel
rhel8-AppStream
RHEL 8.2
gcc-toolset-9-liblsan-devel
rhel8-AppStream
RHEL 8.2
gcc-toolset-9-libtsan-devel
rhel8-AppStream
RHEL 8.2
gcc-toolset-9-libubsan-devel
rhel8-AppStream
RHEL 8.2
gcc-toolset-10
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-annobin
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-binutils
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-binutils-devel
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-build
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-dwz
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-dyninst
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-dyninst-devel
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-elfutils
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-elfutils-debuginfod-client
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-elfutils-debuginfod-client-devel
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-elfutils-devel
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-elfutils-libelf
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-elfutils-libelf-devel
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-elfutils-libs
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-gcc
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-gcc-c++
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-gcc-gdb-plugin
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-gcc-gfortran
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-gcc-plugin-devel
rhel8-CRB
RHEL 8.5
gcc-toolset-10-gdb
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-gdb-doc
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-gdb-gdbserver
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-libasan-devel
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-libatomic-devel
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-libitm-devel
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-liblsan-devel
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-libquadmath-devel
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-libstdc++-devel
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-libstdc++-docs
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-libtsan-devel
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-libubsan-devel
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-ltrace
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-make
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-make-devel
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-perftools
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-runtime
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-strace
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-systemtap
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-systemtap-client
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-systemtap-devel
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-systemtap-initscript
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-systemtap-runtime
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-systemtap-sdt-devel
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-systemtap-server
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-toolchain
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-valgrind
rhel8-AppStream
RHEL 8.3
gcc-toolset-10-valgrind-devel
rhel8-AppStream
RHEL 8.3
gcc-toolset-11
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-annobin-annocheck
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-annobin-docs
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-annobin-plugin-gcc
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-binutils
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-binutils-devel
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-build
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-dwz
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-dyninst
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-dyninst-devel
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-elfutils
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-elfutils-debuginfod-client
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-elfutils-debuginfod-client-devel
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-elfutils-devel
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-elfutils-libelf
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-elfutils-libelf-devel
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-elfutils-libs
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-gcc
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-gcc-c++
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-gcc-gdb-plugin
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-gcc-gfortran
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-gcc-plugin-devel
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-gdb
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-gdb-doc
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-gdb-gdbserver
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-libasan-devel
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-libatomic-devel
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-libgccjit
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-libgccjit-devel
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-libgccjit-docs
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-libitm-devel
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-liblsan-devel
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-libquadmath-devel
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-libstdc++-devel
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-libstdc++-docs
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-libtsan-devel
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-libubsan-devel
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-ltrace
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-make
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-make-devel
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-perftools
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-runtime
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-strace
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-systemtap
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-systemtap-client
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-systemtap-devel
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-systemtap-initscript
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-systemtap-runtime
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-systemtap-sdt-devel
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-systemtap-server
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-toolchain
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-valgrind
rhel8-AppStream
RHEL 8.5
gcc-toolset-11-valgrind-devel
rhel8-AppStream
RHEL 8.5
gcc-toolset-12
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-annobin-annocheck
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-annobin-docs
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-annobin-plugin-gcc
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-binutils
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-binutils-devel
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-binutils-gold
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-build
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-dwz
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-gcc
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-gcc-c++
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-gcc-gfortran
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-gcc-plugin-annobin
rhel8-AppStream
RHEL 8.8
gcc-toolset-12-gcc-plugin-devel
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-gdb
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-libasan-devel
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-libatomic-devel
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-libgccjit
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-libgccjit-devel
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-libgccjit-docs
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-libitm-devel
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-liblsan-devel
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-libquadmath-devel
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-libstdc++-devel
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-libstdc++-docs
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-libtsan-devel
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-libubsan-devel
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-offload-nvptx
rhel8-AppStream
RHEL 8.7
gcc-toolset-12-runtime
rhel8-AppStream
RHEL 8.7
gcc-toolset-13
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-annobin-annocheck
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-annobin-docs
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-annobin-plugin-gcc
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-binutils
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-binutils-devel
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-binutils-gold
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-dwz
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-gcc
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-gcc-c++
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-gcc-gfortran
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-gcc-plugin-annobin
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-gcc-plugin-devel
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-gdb
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-libasan-devel
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-libatomic-devel
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-libgccjit
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-libgccjit-devel
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-libitm-devel
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-liblsan-devel
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-libquadmath-devel
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-libstdc++-devel
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-libstdc++-docs
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-libtsan-devel
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-libubsan-devel
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-offload-nvptx
rhel8-AppStream
RHEL 8.9
gcc-toolset-13-runtime
rhel8-AppStream
RHEL 8.9
gdm-devel
rhel8-CRB
RHEL 8.6
gdm-pam-extensions-devel
rhel8-CRB
RHEL 8.6
git-credential-libsecret
rhel8-AppStream
RHEL 8.3
git-lfs
rhel8-AppStream
RHEL 8.3
glade
rhel8-CRB
RHEL 8.7
glassfish-jsp
rhel8-AppStream
RHEL 8.4
glibc-doc
rhel8-BaseOS
RHEL 8.7
glibc-gconv-extra
rhel8-AppStream
RHEL 8.6
gnome-session-kiosk-session
rhel8-AppStream
RHEL 8.5
gnome-shell-extension-classification-banner
rhel8-AppStream
RHEL 8.6
gnome-shell-extension-custom-menu
rhel8-AppStream
RHEL 8.9
gnome-shell-extension-dash-to-panel
rhel8-AppStream
RHEL 8.6
gnome-shell-extension-gesture-inhibitor
rhel8-AppStream
RHEL 8.5
gnome-shell-extension-heads-up-display
rhel8-AppStream
RHEL 8.6
gnome-software-devel
rhel8-CRB
RHEL 8.5
google-gson
rhel8-AppStream
RHEL 8.4
grafana-pcp
rhel8-AppStream
RHEL 8.2
grafana-selinux
rhel8-AppStream
RHEL 8.10
graphviz-python3
rhel8-CRB
RHEL 8.2
graphviz-ruby
rhel8-AppStream
RHEL 8.10
greenboot
rhel8-AppStream
RHEL 8.3
greenboot-default-health-checks
rhel8-AppStream
RHEL 8.6
greenboot-grub2
rhel8-AppStream
RHEL 8.3
greenboot-reboot
rhel8-AppStream
RHEL 8.3
greenboot-rpm-ostree-grub2
rhel8-AppStream
RHEL 8.3
greenboot-status
rhel8-AppStream
RHEL 8.3
gtk-vnc2-devel
rhel8-CRB
RHEL 8.9
gtk3-devel-docs
rhel8-CRB
RHEL 8.7
guava
rhel8-AppStream
RHEL 8.2
gvnc-devel
rhel8-CRB
RHEL 8.9
HdrHistogram
rhel8-AppStream
RHEL 8.3
HdrHistogram_c
rhel8-AppStream
RHEL 8.3
HdrHistogram-javadoc
rhel8-AppStream
RHEL 8.3
hostapd
rhel8-AppStream
RHEL 8.6
http-parser-devel
rhel8-CRB
RHEL 8.2
ibus-table-devel
rhel8-CRB
RHEL 8.4
ibus-table-tests
rhel8-CRB
RHEL 8.4
ibus-typing-booster-tests
rhel8-CRB
RHEL 8.4
icu4j
rhel8-AppStream
RHEL 8.4
idm-jss
rhel8-AppStream
RHEL 8.10
idm-jss-javadoc
rhel8-AppStream
RHEL 8.10
idm-ldapjdk
rhel8-AppStream
RHEL 8.10
idm-ldapjdk-javadoc
rhel8-AppStream
RHEL 8.10
idm-pki-acme
rhel8-AppStream
RHEL 8.7
idm-pki-base
rhel8-AppStream
RHEL 8.7
idm-pki-base-java
rhel8-AppStream
RHEL 8.7
idm-pki-ca
rhel8-AppStream
RHEL 8.7
idm-pki-kra
rhel8-AppStream
RHEL 8.7
idm-pki-server
rhel8-AppStream
RHEL 8.7
idm-pki-symkey
rhel8-AppStream
RHEL 8.7
idm-pki-tools
rhel8-AppStream
RHEL 8.7
idm-tomcatjss
rhel8-AppStream
RHEL 8.10
rhel8-AppStream
RHEL 8.1
ima-evm-utils0
rhel8-BaseOS
RHEL 8.4
inkscape1
rhel8-AppStream
RHEL 8.8
inkscape1-docs
rhel8-AppStream
RHEL 8.8
inkscape1-view
rhel8-AppStream
RHEL 8.8
intel-cmt-cat-devel
rhel8-CRB
RHEL 8.4
ipa-client-epn
rhel8-AppStream
RHEL 8.3
ipa-client-samba
rhel8-AppStream
RHEL 8.1
ipa-healthcheck
rhel8-AppStream
RHEL 8.1
ipa-healthcheck-core
rhel8-AppStream
RHEL 8.2
ipa-selinux
rhel8-AppStream
RHEL 8.3
ipxe-bootimgs-aarch64
rhel8-AppStream
RHEL 8.6
ipxe-bootimgs-x86
rhel8-AppStream
RHEL 8.6
iscsi-initiator-utils-devel
rhel8-CRB
RHEL 8.3
jackson-bom
rhel8-AppStream
RHEL 8.10
jackson-modules-base
rhel8-AppStream
RHEL 8.10
jackson-parent
rhel8-AppStream
RHEL 8.10
jaf-javadoc
rhel8-AppStream
RHEL 8.2
rhel8-AppStream
RHEL 8.2
jakarta-activation2
rhel8-AppStream
RHEL 8.8
jakarta-annotations
rhel8-AppStream
RHEL 8.7
java-1.8.0-openjdk-accessibility-fastdebug
rhel8-CRB
RHEL 8.4
java-1.8.0-openjdk-accessibility-slowdebug
rhel8-CRB
RHEL 8.4
java-1.8.0-openjdk-demo-fastdebug
rhel8-CRB
RHEL 8.4
java-1.8.0-openjdk-demo-slowdebug
rhel8-CRB
RHEL 8.4
java-1.8.0-openjdk-devel-fastdebug
rhel8-CRB
RHEL 8.4
java-1.8.0-openjdk-devel-slowdebug
rhel8-CRB
RHEL 8.4
java-1.8.0-openjdk-fastdebug
rhel8-CRB
RHEL 8.4
java-1.8.0-openjdk-headless-fastdebug
rhel8-CRB
RHEL 8.4
java-1.8.0-openjdk-headless-slowdebug
rhel8-CRB
RHEL 8.4
java-1.8.0-openjdk-slowdebug
rhel8-CRB
RHEL 8.4
java-1.8.0-openjdk-src-fastdebug
rhel8-CRB
RHEL 8.4
java-1.8.0-openjdk-src-slowdebug
rhel8-CRB
RHEL 8.4
java-11-openjdk-demo-fastdebug
rhel8-CRB
RHEL 8.4
java-11-openjdk-demo-slowdebug
rhel8-CRB
RHEL 8.4
java-11-openjdk-devel-fastdebug
rhel8-CRB
RHEL 8.4
java-11-openjdk-devel-slowdebug
rhel8-CRB
RHEL 8.4
java-11-openjdk-fastdebug
rhel8-CRB
RHEL 8.4
java-11-openjdk-headless-fastdebug
rhel8-CRB
RHEL 8.4
java-11-openjdk-headless-slowdebug
rhel8-CRB
RHEL 8.4
java-11-openjdk-jmods-fastdebug
rhel8-CRB
RHEL 8.4
java-11-openjdk-jmods-slowdebug
rhel8-CRB
RHEL 8.4
java-11-openjdk-slowdebug
rhel8-CRB
RHEL 8.4
java-11-openjdk-src-fastdebug
rhel8-CRB
RHEL 8.4
java-11-openjdk-src-slowdebug
rhel8-CRB
RHEL 8.4
java-11-openjdk-static-libs
rhel8-AppStream
RHEL 8.3
java-11-openjdk-static-libs-fastdebug
rhel8-CRB
RHEL 8.4
java-11-openjdk-static-libs-slowdebug
rhel8-CRB
RHEL 8.4
java-17-openjdk
rhel8-AppStream
RHEL 8.5
java-17-openjdk-demo
rhel8-AppStream
RHEL 8.5
java-17-openjdk-demo-fastdebug
rhel8-CRB
RHEL 8.5
java-17-openjdk-demo-slowdebug
rhel8-CRB
RHEL 8.5
java-17-openjdk-devel
rhel8-AppStream
RHEL 8.5
java-17-openjdk-devel-fastdebug
rhel8-CRB
RHEL 8.5
java-17-openjdk-devel-slowdebug
rhel8-CRB
RHEL 8.5
java-17-openjdk-fastdebug
rhel8-CRB
RHEL 8.5
java-17-openjdk-headless
rhel8-AppStream
RHEL 8.5
java-17-openjdk-headless-fastdebug
rhel8-CRB
RHEL 8.5
java-17-openjdk-headless-slowdebug
rhel8-CRB
RHEL 8.5
java-17-openjdk-javadoc
rhel8-AppStream
RHEL 8.5
java-17-openjdk-javadoc-zip
rhel8-AppStream
RHEL 8.5
java-17-openjdk-jmods
rhel8-AppStream
RHEL 8.5
java-17-openjdk-jmods-fastdebug
rhel8-CRB
RHEL 8.5
java-17-openjdk-jmods-slowdebug
rhel8-CRB
RHEL 8.5
java-17-openjdk-slowdebug
rhel8-CRB
RHEL 8.5
java-17-openjdk-src
rhel8-AppStream
RHEL 8.5
java-17-openjdk-src-fastdebug
rhel8-CRB
RHEL 8.5
java-17-openjdk-src-slowdebug
rhel8-CRB
RHEL 8.5
java-17-openjdk-static-libs
rhel8-AppStream
RHEL 8.5
java-17-openjdk-static-libs-fastdebug
rhel8-CRB
RHEL 8.5
java-17-openjdk-static-libs-slowdebug
rhel8-CRB
RHEL 8.5
java-21-openjdk
rhel8-AppStream
RHEL 8.9
java-21-openjdk-demo
rhel8-AppStream
RHEL 8.9
java-21-openjdk-demo-fastdebug
rhel8-CRB
RHEL 8.9
java-21-openjdk-demo-slowdebug
rhel8-CRB
RHEL 8.9
java-21-openjdk-devel
rhel8-AppStream
RHEL 8.9
java-21-openjdk-devel-fastdebug
rhel8-CRB
RHEL 8.9
java-21-openjdk-devel-slowdebug
rhel8-CRB
RHEL 8.9
java-21-openjdk-fastdebug
rhel8-CRB
RHEL 8.9
java-21-openjdk-headless
rhel8-AppStream
RHEL 8.9
java-21-openjdk-headless-fastdebug
rhel8-CRB
RHEL 8.9
java-21-openjdk-headless-slowdebug
rhel8-CRB
RHEL 8.9
java-21-openjdk-javadoc
rhel8-AppStream
RHEL 8.9
java-21-openjdk-javadoc-zip
rhel8-AppStream
RHEL 8.9
java-21-openjdk-jmods
rhel8-AppStream
RHEL 8.9
java-21-openjdk-jmods-fastdebug
rhel8-CRB
RHEL 8.9
java-21-openjdk-jmods-slowdebug
rhel8-CRB
RHEL 8.9
java-21-openjdk-slowdebug
rhel8-CRB
RHEL 8.9
java-21-openjdk-src
rhel8-AppStream
RHEL 8.9
java-21-openjdk-src-fastdebug
rhel8-CRB
RHEL 8.9
java-21-openjdk-src-slowdebug
rhel8-CRB
RHEL 8.9
java-21-openjdk-static-libs
rhel8-AppStream
RHEL 8.9
java-21-openjdk-static-libs-fastdebug
rhel8-CRB
RHEL 8.9
java-21-openjdk-static-libs-slowdebug
rhel8-CRB
RHEL 8.9
jaxb-api4
rhel8-AppStream
RHEL 8.8
jaxb-codemodel
rhel8-AppStream
RHEL 8.8
jaxb-core
rhel8-AppStream
RHEL 8.8
jaxb-dtd-parser
rhel8-AppStream
RHEL 8.8
jaxb-istack-commons-runtime
rhel8-AppStream
RHEL 8.8
jaxb-istack-commons-tools
rhel8-AppStream
RHEL 8.8
jaxb-relaxng-datatype
rhel8-AppStream
RHEL 8.8
jaxb-rngom
rhel8-AppStream
RHEL 8.8
jaxb-runtime
rhel8-AppStream
RHEL 8.8
jaxb-txw2
rhel8-AppStream
RHEL 8.8
jaxb-xjc
rhel8-AppStream
RHEL 8.8
jaxb-xsom
rhel8-AppStream
RHEL 8.8
jctools
rhel8-AppStream
RHEL 8.6
jetty-continuation
rhel8-AppStream
RHEL 8.4
jetty-http
rhel8-AppStream
RHEL 8.4
jetty-io
rhel8-AppStream
RHEL 8.4
jetty-security
rhel8-AppStream
RHEL 8.4
jetty-server
rhel8-AppStream
RHEL 8.4
jetty-servlet
rhel8-AppStream
RHEL 8.4
jetty-util
rhel8-AppStream
RHEL 8.4
jigawatts
rhel8-AppStream
RHEL 8.5
jigawatts-javadoc
rhel8-AppStream
RHEL 8.5
jigawatts-javadoc
rhel8-AppStream
RHEL 8.8
jmc-core-javadoc
rhel8-AppStream
RHEL 8.2
jmc-core
rhel8-AppStream
RHEL 8.2
rhel8-AppStream
RHEL 8.2
jolokia-jvm-agent
rhel8-AppStream
RHEL 8.2
jq-devel
rhel8-CRB
RHEL 8.5
js-d3-flame-graph
rhel8-AppStream
RHEL 8.3
Judy-devel
rhel8-BaseOS
RHEL 8.1
Judy-devel
rhel8-CRB
RHEL 8.3
junit5
rhel8-AppStream
RHEL 8.4
kernel-abi-stablelists
rhel8-BaseOS
RHEL 8.4
kmod-redhat-oracleasm
rhel8-BaseOS
RHEL 8.4
kpatch-dnf
rhel8-BaseOS
RHEL 8.4
lasso-devel
rhel8-CRB
RHEL 8.5
ldns-doc
rhel8-CRB
RHEL 8.10
ldns-utils
rhel8-CRB
RHEL 8.10
leapp
rhel8-AppStream
RHEL 8.7
leapp-deps
rhel8-AppStream
RHEL 8.7
leapp-upgrade-el8toel9
rhel8-AppStream
RHEL 8.7
leapp-upgrade-el8toel9-deps
rhel8-AppStream
RHEL 8.7
libadwaita-qt5
rhel8-AppStream
RHEL 8.5
libasan6
rhel8-AppStream
RHEL 8.4
libasan8
rhel8-AppStream
RHEL 8.7
libbabeltrace-devel
rhel8-CRB
RHEL 8.3
libblockdev-crypto-devel
rhel8-CRB
RHEL 8.3
libblockdev-devel
rhel8-CRB
RHEL 8.3
libblockdev-fs-devel
rhel8-CRB
RHEL 8.3
libblockdev-loop-devel
rhel8-CRB
RHEL 8.3
libblockdev-lvm-devel
rhel8-CRB
RHEL 8.3
libblockdev-mdraid-devel
rhel8-CRB
RHEL 8.3
libblockdev-part-devel
rhel8-CRB
RHEL 8.3
libblockdev-swap-devel
rhel8-CRB
RHEL 8.3
libblockdev-utils-devel
rhel8-CRB
RHEL 8.3
libblockdev-vdo-devel
rhel8-CRB
RHEL 8.3
libbpf-devel
rhel8-CRB
RHEL 8.2
libbpf-static
rhel8-CRB
RHEL 8.2
libbpf
rhel8-BaseOS
RHEL 8.2
libbytesize-devel
rhel8-CRB
RHEL 8.3
libcap-ng-python3
rhel8-BaseOS
RHEL 8.5
libdazzle-devel
rhel8-CRB
RHEL 8.4
libdhash-devel
rhel8-CRB
RHEL 8.7
libdnf-devel
rhel8-CRB
RHEL 8.4
libdwarves1
rhel8-CRB
RHEL 8.2
libecpg
rhel8-AppStream
RHEL 8.4
libecpg-devel
rhel8-CRB
RHEL 8.4
libepubgen-devel
rhel8-CRB
RHEL 8.4
libestr-devel
rhel8-CRB
RHEL 8.7
libgcab1-devel
rhel8-CRB
RHEL 8.6
libguestfs-appliance
rhel8-AppStream
RHEL 8.6
libnbd
rhel8-AppStream
RHEL 8.3
libnbd-bash-completion
rhel8-AppStream
RHEL 8.6
libnbd-devel
rhel8-AppStream
RHEL 8.3
libnetapi
rhel8-BaseOS
RHEL 8.8
libnetapi-devel
rhel8-CRB
RHEL 8.8
libnftnl-devel
rhel8-CRB
RHEL 8.2
libnumbertext
rhel8-AppStream
RHEL 8.4
libpgtypes
rhel8-AppStream
RHEL 8.4
libpinyin-devel
rhel8-CRB
RHEL 8.6
libpsl-devel
rhel8-CRB
RHEL 8.3
librabbitmq-tools
rhel8-AppStream
RHEL 8.10
libreoffice
rhel8-AppStream
RHEL 8.8
librepo-devel
rhel8-CRB
RHEL 8.4
librhsm-devel
rhel8-CRB
RHEL 8.4
libselinux-static
rhel8-CRB
RHEL 8.6
libsemanage-devel
rhel8-CRB
RHEL 8.3
libserf-devel
rhel8-CRB
RHEL 8.7
libslirp
rhel8-AppStream
RHEL 8.3
libslirp-devel
rhel8-AppStream
RHEL 8.3
libsmi-devel
rhel8-CRB
RHEL 8.4
libsndfile-utils
rhel8-AppStream
RHEL 8.8
libsolv-devel
rhel8-CRB
RHEL 8.4
libsolv-tools
rhel8-CRB
RHEL 8.4
libss-devel
rhel8-CRB
RHEL 8.6
libssh-config
rhel8-BaseOS
RHEL 8.1
libstoragemgmt-devel
rhel8-BaseOS
RHEL 8.3
libstoragemgmt-devel
rhel8-CRB
RHEL 8.3
libstoragemgmt-nfs-plugin
rhel8-AppStream
RHEL 8.7
libtimezonemap-devel
rhel8-CRB
RHEL 8.10
libtpms
rhel8-AppStream
RHEL 8.6
libtpms-devel
rhel8-AppStream
RHEL 8.6
libtraceevent
rhel8-BaseOS
RHEL 8.8
libtraceevent-devel
rhel8-CRB
RHEL 8.8
libtracefs
rhel8-BaseOS
RHEL 8.8
libtracefs-devel
rhel8-CRB
RHEL 8.8
libtsan2
rhel8-AppStream
RHEL 8.7
libudisks2-devel
rhel8-CRB
RHEL 8.3
liburing-devel
rhel8-CRB
RHEL 8.3
liburing
rhel8-AppStream
RHEL 8.2
libuser-devel
rhel8-CRB
RHEL 8.6
libuv-devel
rhel8-CRB
RHEL 8.4
libverto-libev
rhel8-AppStream
RHEL 8.7
libvirt-daemon-driver-storage-iscsi-direct
rhel8-AppStream
RHEL 8.3
libvirt-wireshark
rhel8-AppStream
RHEL 8.6
libvma-utils
rhel8-AppStream
RHEL 8.9
libvoikko-devel
rhel8-CRB
RHEL 8.5
libwpe
rhel8-AppStream
RHEL 8.8
libwpe-devel
rhel8-CRB
RHEL 8.8
libxdp
rhel8-AppStream
RHEL 8.3
libxdp-devel
rhel8-CRB
RHEL 8.8
libxdp-static
rhel8-CRB
RHEL 8.8
libxkbfile-1.1.0-1.el8
rhel8-AppStream
RHEL 8.3
libxmlb
rhel8-BaseOS
RHEL 8.3
libxmlb-devel
rhel8-CRB
RHEL 8.6
libXvMC-devel
rhel8-CRB
RHEL 8.3
libzstd-devel
rhel8-BaseOS
RHEL 8.2
libzstd
rhel8-BaseOS
RHEL 8.2
lld-test
rhel8-AppStream
RHEL 8.2
llvm-cmake-utils
rhel8-AppStream
RHEL 8.10
rhel8-CRB
RHEL 8.8
lmdb-devel
rhel8-CRB
RHEL 8.6
lmdb-libs
rhel8-AppStream
RHEL 8.1
log4j
rhel8-AppStream
RHEL 8.6
log4j-jcl
rhel8-AppStream
RHEL 8.6
log4j-slf4j
rhel8-AppStream
RHEL 8.6
log4j-web
rhel8-AppStream
RHEL 8.8
lpsolve-devel
rhel8-CRB
RHEL 8.5
lucene
rhel8-AppStream
RHEL 8.4
lucene-analysis
rhel8-AppStream
RHEL 8.4
lucene-analyzers-smartcn
rhel8-AppStream
RHEL 8.4
lucene-queries
rhel8-AppStream
RHEL 8.4
lucene-queryparser
rhel8-AppStream
RHEL 8.4
lucene-sandbox
rhel8-AppStream
RHEL 8.4
lz4-java
rhel8-AppStream
RHEL 8.4
lz4-java-javadoc
rhel8-AppStream
RHEL 8.4
make43
rhel8-AppStream
RHEL 8.7
make43-devel
rhel8-AppStream
RHEL 8.7
mariadb-pam
rhel8-AppStream
RHEL 8.4
marisa-devel
rhel8-CRB
RHEL 8.9
maven-openjdk11
rhel8-AppStream
RHEL 8.2
maven-openjdk8
rhel8-AppStream
RHEL 8.2
maven-openjdk17
rhel8-AppStream
RHEL 8.6
maven-openjdk21
rhel8-AppStream
RHEL 8.10
mdevctl
rhel8-AppStream
RHEL 8.3
memstrack
rhel8-BaseOS
RHEL 8.3
mercurial-chg
rhel8-AppStream
RHEL 8.7
micropipenv
rhel8-AppStream
RHEL 8.4
mingw32-spice-vdagent
rhel8-CRB
RHEL 8.2
mingw64-spice-vdagent
rhel8-CRB
RHEL 8.2
mobile-broadband-provider-info-devel
rhel8-CRB
RHEL 8.5
mod_auth_mellon-diagnostics
rhel8-AppStream
RHEL 8.1
modulemd-tools
rhel8-AppStream
RHEL 8.5c
mpdecimal
rhel8-AppStream
RHEL 8.8
mpdecimal++
rhel8-CRB
RHEL 8.8
mpdecimal-devel
rhel8-CRB
RHEL 8.8
mpdecimal-doc
rhel8-CRB
RHEL 8.8
mpich-doc
rhel8-AppStream
RHEL 8.4
mvapich2-devel
rhel8-AppStream
RHEL 8.4
mvapich2-doc
rhel8-AppStream
RHEL 8.4
mvapich2-psm2-devel
rhel8-AppStream
RHEL 8.4
mysql-selinux
rhel8-AppStream
RHEL 8.4
nbdfuse
rhel8-AppStream
RHEL 8.3
nbdkit-basic-filters
rhel8-AppStream
RHEL 8.3
nbdkit-curl-plugin
rhel8-AppStream
RHEL 8.3
nbdkit-gzip-filter
rhel8-AppStream
RHEL 8.6
nbdkit-gzip-plugin
rhel8-AppStream
RHEL 8.3
nbdkit-linuxdisk-plugin
rhel8-AppStream
RHEL 8.3
nbdkit-nbd-plugin
rhel8-AppStream
RHEL 8.6
nbdkit-python-plugin
rhel8-AppStream
RHEL 8.3
nbdkit-server
rhel8-AppStream
RHEL 8.3
nbdkit-ssh-plugin
rhel8-AppStream
RHEL 8.3
nbdkit-tar-filter
rhel8-AppStream
RHEL 8.6
nbdkit-tar-plugin
rhel8-AppStream
RHEL 8.6
nbdkit-tmpdisk-plugin
rhel8-AppStream
RHEL 8.6
nbdkit-vddk-plugin
rhel8-AppStream
RHEL 8.3
nbdkit-xz-filter
rhel8-AppStream
RHEL 8.3
netavark
rhel8-AppStream
RHEL 8.6
net-snmp-perl
rhel8-AppStream
RHEL 8.3
NetworkManager-cloud-setup
rhel8-AppStream
RHEL 8.2
NetworkManager-initscripts-updown
rhel8-BaseOS
RHEL 8.6
nftables-devel
rhel8-CRB
RHEL 8.6
nispor
rhel8-AppStream
RHEL 8.4
nispor-devel
rhel8-AppStream
RHEL 8.4
nginx-mod-devel
rhel8-AppStream
RHEL 8.6
nmstate-devel
rhel8-CRB
RHEL 8.6
nmstate-libs
rhel8-AppStream
RHEL 8.6
nmstate-plugin-ovsdb
rhel8-AppStream
RHEL 8.3
nodejs-full-i18n
rhel8-AppStream
RHEL 8.3
nodejs-packaging-bundler
rhel8-AppStream
RHEL 8.7
nss_wrapper-libs
rhel8-AppStream
RHEL 8.8
numatop
rhel8-BaseOS
RHEL 8.2
ocaml-libnbd
rhel8-CRB
RHEL 8.3
ocaml-libnbd-devel
rhel8-CRB
RHEL 8.3
oci-seccomp-bpf-hook
rhel8-AppStream
RHEL 8.3
oci-seccomp-bpf-hook
rhel8-BaseOS
RHEL 8.3
rhel8-BaseOS
RHEL 8.3
openldap-servers
rhel8-CRB
RHEL 8.6
open-vm-tools-salt-minion
rhel8-AppStream
RHEL 8.7
open-vm-tools-sdmp
rhel8-AppStream
RHEL 8.3
opencv
rhel8-CRB
RHEL 8.5
openslp-devel
rhel8-CRB
RHEL 8.7
opentest4j
rhel8-AppStream
RHEL 8.4
osbuild
rhel8-AppStream
RHEL 8.3
osbuild-composer
rhel8-AppStream
RHEL 8.3
osbuild-composer-core
rhel8-AppStream
RHEL 8.4
osbuild-composer-dnf-json
rhel8-AppStream
RHEL 8.6
osbuild-composer-worker
rhel8-AppStream
RHEL 8.3
osbuild-depsolve-dnf
rhel8-AppStream
RHEL 8.10
osbuild-luks2
rhel8-AppStream
RHEL 8.6
osbuild-lvm2
rhel8-AppStream
RHEL 8.6
osbuild-ostree
rhel8-AppStream
RHEL 8.3
osbuild-selinux
rhel8-AppStream
RHEL 8.3
owasp-java-encoder-javadoc
rhel8-AppStream
RHEL 8.2
owasp-java-encoder
rhel8-AppStream
RHEL 8.2
pam_wrapper
rhel8-CRB
RHEL 8.7
rhel8-AppStream
RHEL 8.5
pcp-export-pcp2elasticsearch
rhel8-AppStream
RHEL 8.2
pcp-export-pcp2spark
rhel8-AppStream
RHEL 8.2
pcp-pmda-bpftrace
rhel8-AppStream
RHEL 8.2
pcp-pmda-denki
rhel8-AppStream
RHEL 8.6
pcp-pmda-hacluster
rhel8-AppStream
RHEL 8.4
pcp-pmda-mongodb
rhel8-AppStream
RHEL 8.6
pcp-pmda-mssql
rhel8-AppStream
RHEL 8.2
pcp-pmda-netcheck
rhel8-AppStream
RHEL 8.2
pcp-pmda-openmetrics
rhel8-AppStream
RHEL 8.2
pcp-pmda-openvswitch
rhel8-AppStream
RHEL 8.3
pcp-pmda-rabbitmq
rhel8-AppStream
RHEL 8.3
pcp-pmda-sockets
rhel8-AppStream
RHEL 8.4
pcp-pmda-statsd
rhel8-AppStream
RHEL 8.3
pcre2-tools
rhel8-CRB
RHEL 8.3
perl-AutoLoader
rhel8-AppStream
RHEL 8.6
perl-AutoSplit
rhel8-AppStream
RHEL 8.6
perl-autouse
rhel8-AppStream
RHEL 8.6
perl-B
rhel8-AppStream
RHEL 8.6
perl-base
rhel8-AppStream
RHEL 8.6
perl-Benchmark
rhel8-AppStream
RHEL 8.6
perl-blib
rhel8-AppStream
RHEL 8.6
perl-Class-Struct
rhel8-AppStream
RHEL 8.6
perl-Compress-Raw-Lzma
rhel8-AppStream
RHEL 8.6
perl-Config-Extensions
rhel8-AppStream
RHEL 8.6
perl-Convert-ASN1
rhel8-AppStream
RHEL 8.2
perl-DBM_Filter
rhel8-AppStream
RHEL 8.6
perl-debugger
rhel8-AppStream
RHEL 8.6
perl-deprecate
rhel8-AppStream
RHEL 8.6
perl-diagnostics
rhel8-AppStream
RHEL 8.6
perl-DirHandle
rhel8-AppStream
RHEL 8.6
perl-doc
rhel8-AppStream
RHEL 8.6
perl-Dumpvalue
rhel8-AppStream
RHEL 8.6
perl-DynaLoader
rhel8-AppStream
RHEL 8.6
perl-encoding-warnings
rhel8-AppStream
RHEL 8.6
perl- English
rhel8-AppStream
RHEL 8.6
perl-ExtUtils-Constant
rhel8-AppStream
RHEL 8.6
perl-Fcntl
rhel8-AppStream
RHEL 8.6
perl-fields
rhel8-AppStream
RHEL 8.6
perl-File-Basename
rhel8-AppStream
RHEL 8.6
perl-File-Compare
rhel8-AppStream
RHEL 8.6
perl-File-Copy
rhel8-AppStream
RHEL 8.6
perl-File-DosGlob
rhel8-AppStream
RHEL 8.6
perl-File-Find
rhel8-AppStream
RHEL 8.6
perl-File-stat
rhel8-AppStream
RHEL 8.6
perl-FileCache
rhel8-AppStream
RHEL 8.6
perl-FileHandle
rhel8-AppStream
RHEL 8.6
perl-filetest
rhel8-AppStream
RHEL 8.6
perl-FindBin
rhel8-AppStream
RHEL 8.6
perl-GDBM_File
rhel8-AppStream
RHEL 8.6
perl-Getopt-Std
rhel8-AppStream
RHEL 8.6
perl-Hash-Util
rhel8-AppStream
RHEL 8.6
perl-Hash-Util-FieldHash
rhel8-AppStream
RHEL 8.6
perl-I18N-Collate
rhel8-AppStream
RHEL 8.6
perl-I18N-Langinfo
rhel8-AppStream
RHEL 8.6
perl-I18N-LangTags
rhel8-AppStream
RHEL 8.6
perl-if
rhel8-AppStream
RHEL 8.6
perl-IO-Compress-Lzma
rhel8-AppStream
RHEL 8.6
perl-IPC-Open3
rhel8-AppStream
RHEL 8.6
perl-less
rhel8-AppStream
RHEL 8.6
perl-LDAP
rhel8-AppStream
RHEL 8.2
perl-ldns
rhel8-CRB
RHEL 8.10
perl-lib
rhel8-AppStream
RHEL 8.6
perl-locale
rhel8-AppStream
RHEL 8.6
perl-Mail-AuthenticationResults
rhel8-AppStream
RHEL 8.8
perl-Mail-Sender
rhel8-AppStream
RHEL 8.3
perl-meta-notation
rhel8-AppStream
RHEL 8.6
perl-mro
rhel8-AppStream
RHEL 8.6
perl-NDBM_File
rhel8-AppStream
RHEL 8.6
perl-Net
rhel8-AppStream
RHEL 8.6
perl-NEXT
rhel8-AppStream
RHEL 8.6
perl-Object-HashBase
rhel8-AppStream
RHEL 8.3
perl-Object-HashBase-tools
rhel8-AppStream
RHEL 8.3
perl-ODBM_File
rhel8-AppStream
RHEL 8.6
perl-Opcode
rhel8-AppStream
RHEL 8.6
perl-overload
rhel8-AppStream
RHEL 8.6
perl-overloading
rhel8-AppStream
RHEL 8.6
perl-ph
rhel8-AppStream
RHEL 8.6
perl-Pod-Functions
rhel8-AppStream
RHEL 8.6
perl-POSIX
rhel8-AppStream
RHEL 8.6
perl-Safe
rhel8-AppStream
RHEL 8.6
perl-Search-Dict
rhel8-AppStream
RHEL 8.6
perl-SelectSaver
rhel8-AppStream
RHEL 8.6
perl-sigtrap
rhel8-AppStream
RHEL 8.6
perl-sort
rhel8-AppStream
RHEL 8.6
perl-subs
rhel8-AppStream
RHEL 8.6
perl-Symbol
rhel8-AppStream
RHEL 8.6
perl-Sys-Hostname
rhel8-AppStream
RHEL 8.6
perl-Term-Complete
rhel8-AppStream
RHEL 8.6
perl-Term-ReadLine
rhel8-AppStream
RHEL 8.6
perl-Term-Size-Any
rhel8-CRB
RHEL 8.6
perl-Term-Size-Perl
rhel8-CRB
RHEL 8.6
perl-Text-Abbrev
rhel8-AppStream
RHEL 8.6
perl-Thread
rhel8-AppStream
RHEL 8.6
perl-Thread-Semaphore
rhel8-AppStream
RHEL 8.6
perl-Tie
rhel8-AppStream
RHEL 8.6
perl-Tie-File
rhel8-AppStream
RHEL 8.6
perl-Tie-Memoize
rhel8-AppStream
RHEL 8.6
perl-Tie-RefHash
rhel8-AppStream
RHEL 8.6
perl-Time
rhel8-AppStream
RHEL 8.6
perl-Unicode-UCD
rhel8-AppStream
RHEL 8.6
perl-User-pwent
rhel8-AppStream
RHEL 8.6
perl-vars
rhel8-AppStream
RHEL 8.6
perl-vmsish
rhel8-AppStream
RHEL 8.6
pg_repack
rhel8-AppStream
RHEL 8.5
pgaudit
rhel8-AppStream
RHEL 8.2
php-ffi
rhel8-AppStream
RHEL 8.3
php-pecl-rrd
rhel8-AppStream
RHEL 8.2
php-pecl-xdebug
rhel8-AppStream
RHEL 8.2
php-pecl-xdebug3
rhel8-AppStream
RHEL 8.6
pipewire0.2
rhel8-AppStream
RHEL 8.3
pipewire0.2-devel
rhel8-AppStream
RHEL 8.3
pipewire0.2-libs
rhel8-AppStream
RHEL 8.3
pki-acme
rhel8-AppStream
RHEL 8.4
pmix-devel
rhel8-CRB
RHEL 8.3
podman-catatonit
rhel8-AppStream
RHEL 8.3
podman-gvproxy
rhel8-AppStream
RHEL 8.5
podman-plugins
rhel8-AppStream
RHEL 8.4
poppler-data-devel
rhel8-CRB
RHEL 8.10
poppler-glib-doc
rhel8-CRB
RHEL 8.10
postfix-cdb
rhel8-AppStream
RHEL 8.2
postfix-pcre
rhel8-AppStream
RHEL 8.2
postfix-sqlite
rhel8-AppStream
RHEL 8.2
postgres-decoderbufs
rhel8-AppStream
RHEL 8.2
postgresql-private-devel
rhel8-AppStream
RHEL 8.8
postgresql-private-libs
rhel8-AppStream
RHEL 8.8
procps-ng-devel
rhel8-CRB
RHEL 8.8
prometheus-jmx-exporter
rhel8-AppStream
RHEL 8.2
prometheus-jmx-exporter-openjdk11
rhel8-AppStream
RHEL 8.6
prometheus-jmx-exporter-openjdk17
rhel8-AppStream
RHEL 8.8
prometheus-jmx-exporter-openjdk8
rhel8-AppStream
RHEL 8.8
protobuf-lite-devel
rhel8-CRB
RHEL 8.3
py3c-devel
rhel8-CRB
RHEL 8.4
py3c-doc
rhel8-CRB
RHEL 8.4
python-ldb-devel-common
rhel8-CRB
RHEL 8.7
python-sphinx-latex
rhel8-CRB
RHEL 8.7
python2-pip-wheel
rhel8-Modules
RHEL 8.1
python2-setuptools-wheel
rhel8-Modules
RHEL 8.1
python2-wheel-wheel
rhel8-Modules
RHEL 8.1
python3-babeltrace
rhel8-CRB
RHEL 8.7
python3-bind9.16
rhel8-CRB
RHEL 8.6
python3-brotli
rhel8-AppStream
RHEL 8.3
python3-cairo-devel
rhel8-CRB
RHEL 8.7
python3-cloud-what
rhel8-BaseOS
RHEL 8.5
python3-criu
rhel8-AppStream
RHEL 8.2
python3-dasbus
rhel8-AppStream
RHEL 8.3
python3-distro
rhel8-Modules
RHEL 8.1
python3-dnf-plugin-modulesync
rhel8-AppStream
RHEL 8.6
python3-dnf-plugin-post-transaction-actions
rhel8-BaseOS
RHEL 8.2
python3-freeradius
rhel8-AppStream
RHEL 8.3
python3-idm-pki
rhel8-AppStream
RHEL 8.7
python3-ipatests
rhel8-AppStream
RHEL 8.4
python3-lasso
rhel8-AppStream
RHEL 8.7
python3-ldb-devel
rhel8-CRB
RHEL 8.7
python3-ldns
rhel8-CRB
RHEL 8.10
python3-leapp
rhel8-AppStream
RHEL 8.7
python3-libmodulemd
rhel8-AppStream
RHEL 8.3
python3-libmount
rhel8-AppStream
RHEL 8.3
python3-libnbd
rhel8-AppStream
RHEL 8.3
python3-networkx-core
rhel8-AppStream
RHEL 8.2
python3-networkx
rhel8-AppStream
RHEL 8.2
python3-nftables
rhel8-BaseOS
RHEL 8.2
python3-nispor
rhel8-AppStream
RHEL 8.4
python3-osbuild
rhel8-AppStream
RHEL 8.3
python3-pacemaker
rhel8-HighAvailability
RHEL 8.9
python3-pillow-devel
rhel8-CRB
RHEL 8.5
python3-pillow-doc
rhel8-CRB
RHEL 8.5
python3-pillow-tk
rhel8-CRB
RHEL 8.5
python3-pip-wheel
rhel8-BaseOS
RHEL 8.1
python3-podman
rhel8-AppStream
RHEL 8.5
python3-protobuf
rhel8-AppStream
RHEL 8.2
python3-pyghmi
rhel8-AppStream
RHEL 8.5
python3-pyodbc
rhel8-AppStream
RHEL 8.4
python3-pyverbs
rhel8-BaseOS
RHEL 8.4
python3-samba-dc
rhel8-BaseOS
RHEL 8.8
python3-samba-devel
rhel8-CRB
RHEL 8.8
python3-scour
rhel8-AppStream
RHEL 8.8
python3-setuptools-wheel
rhel8-BaseOS
RHEL 8.1
python3-solv
rhel8-BaseOS
RHEL 8.3
python3-subversion
rhel8-AppStream
RHEL 8.4
python3-talloc-devel
rhel8-CRB
RHEL 8.7
python3-tomli
rhel8-AppStream
RHEL 8.9
python3-tracer
rhel8-AppStream
RHEL 8.4
python3-wheel-wheel
rhel8-AppStream
RHEL 8.1
python3-wx-siplib
rhel8-AppStream
RHEL 8.3
python3.11
rhel8-AppStream
RHEL 8.8
python3.11-attrs
rhel8-CRB
RHEL 8.8
python3.11-cffi
rhel8-AppStream
RHEL 8.8
python3.11-charset-normalizer
rhel8-AppStream
RHEL 8.8
python3.11-cryptography
rhel8-AppStream
RHEL 8.8
python3.11-Cython
rhel8-CRB
RHEL 8.8
python3.11-debug
rhel8-CRB
RHEL 8.8
python3.11-devel
rhel8-AppStream
RHEL 8.8
python3.11-idle
rhel8-CRB
RHEL 8.8
python3.11-idna
rhel8-AppStream
RHEL 8.8
python3.11-iniconfig
rhel8-CRB
RHEL 8.8
python3.11-libs
rhel8-AppStream
RHEL 8.8
python3.11-lxml
rhel8-AppStream
RHEL 8.8
python3.11-mod_wsgi
rhel8-AppStream
RHEL 8.8
python3.11-numpy
rhel8-AppStream
RHEL 8.8
python3.11-numpy-f2py
rhel8-AppStream
RHEL 8.8
python3.11-packaging
rhel8-CRB
RHEL 8.8
python3.11-pip
rhel8-AppStream
RHEL 8.8
python3.11-pip-wheel
rhel8-AppStream
RHEL 8.8
python3.11-pluggy
rhel8-CRB
RHEL 8.8
python3.11-ply
rhel8-AppStream
RHEL 8.8
python3.11-psycopg2
rhel8-AppStream
RHEL 8.8
python3.11-psycopg2-debug
rhel8-CRB
RHEL 8.8
python3.11-psycopg2-tests
rhel8-CRB
RHEL 8.8
python3.11-pybind11
rhel8-CRB
RHEL 8.8
python3.11-pybind11-devel
rhel8-CRB
RHEL 8.8
python3.11-pycparser
rhel8-AppStream
RHEL 8.8
python3.11-PyMySQL
rhel8-AppStream
RHEL 8.8
python3.11-pyparsing
rhel8-CRB
RHEL 8.8
python3.11-pysocks
rhel8-AppStream
RHEL 8.8
python3.11-pytest
rhel8-CRB
RHEL 8.8
python3.11-pyyaml
rhel8-AppStream
RHEL 8.8
python3.11-requests
rhel8-AppStream
RHEL 8.8
python3.11-rpm-macros
rhel8-AppStream
RHEL 8.8
python3.11-scipy
rhel8-AppStream
RHEL 8.8
python3.11-semantic_version
rhel8-CRB
RHEL 8.8
python3.11-setuptools
rhel8-AppStream
RHEL 8.8
python3.11-setuptools-rust
rhel8-CRB
RHEL 8.8
python3.11-setuptools-wheel
rhel8-AppStream
RHEL 8.8
python3.11-six
rhel8-AppStream
RHEL 8.8
python3.11-test
rhel8-CRB
RHEL 8.8
python3.11-tkinter
rhel8-AppStream
RHEL 8.8
python3.11-urllib3
rhel8-AppStream
RHEL 8.8
python3.11-wheel
rhel8-AppStream
RHEL 8.8
python3.11-wheel-wheel
rhel8-CRB
RHEL 8.8
python3.12
rhel8-AppStream
RHEL 8.10
python3.12-cffi
rhel8-AppStream
RHEL 8.10
python3.12-charset-normalizer
rhel8-AppStream
RHEL 8.10
python3.12-cryptography
rhel8-AppStream
RHEL 8.10
python3.12-Cython
rhel8-CRB
RHEL 8.10
python3.12-debug
rhel8-CRB
RHEL 8.10
python3.12-devel
rhel8-AppStream
RHEL 8.10
python3.12-flit-core
rhel8-CRB
RHEL 8.10
python3.12-idle
rhel8-CRB
RHEL 8.10
python3.12-idna
rhel8-AppStream
RHEL 8.10
python3.12-iniconfig
rhel8-CRB
RHEL 8.10
python3.12-libs
rhel8-AppStream
RHEL 8.10
python3.12-lxml
rhel8-AppStream
RHEL 8.10
python3.12-mod_wsgi
rhel8-AppStream
RHEL 8.10
python3.12-numpy
rhel8-AppStream
RHEL 8.10
python3.12-numpy-f2py
rhel8-AppStream
RHEL 8.10
python3.12-packaging
rhel8-CRB
RHEL 8.10
python3.12-pip
rhel8-AppStream
RHEL 8.10
python3.12-pip-wheel
rhel8-AppStream
RHEL 8.10
python3.12-pluggy
rhel8-CRB
RHEL 8.10
python3.12-ply
rhel8-AppStream
RHEL 8.10
python3.12-psycopg2
rhel8-AppStream
RHEL 8.10
python3.12-psycopg2-debug
rhel8-CRB
RHEL 8.10
python3.12-psycopg2-tests
rhel8-CRB
RHEL 8.10
python3.12-pybind11
rhel8-CRB
RHEL 8.10
python3.12-pybind11-devel
rhel8-CRB
RHEL 8.10
python3.12-pycparser
rhel8-AppStream
RHEL 8.10
python3.12-PyMySQL
rhel8-AppStream
RHEL 8.10
python3.12-pytest
rhel8-CRB
RHEL 8.10
python3.12-pyyaml
rhel8-AppStream
RHEL 8.10
python3.12-requests
rhel8-AppStream
RHEL 8.10
python3.12-rpm-macros
rhel8-AppStream
RHEL 8.10
python3.12-scipy
rhel8-AppStream
RHEL 8.10
python3.12-scipy-tests
rhel8-CRB
RHEL 8.10
python3.12-semantic_version
rhel8-CRB
RHEL 8.10
python3.12-setuptools
rhel8-AppStream
RHEL 8.10
python3.12-setuptools-rust
rhel8-CRB
RHEL 8.10
python3.12-setuptools-wheel
rhel8-CRB
RHEL 8.10
python3.12-test
rhel8-CRB
RHEL 8.10
python3.12-tkinter
rhel8-AppStream
RHEL 8.10
python3.12-urllib3
rhel8-AppStream
RHEL 8.10
python3.12-wheel
rhel8-AppStream
RHEL 8.10
python3.12-wheel-wheel
rhel8-CRB
RHEL 8.10
python38-asn1crypto
rhel8-AppStream
RHEL 8.2
python38-atomicwrites
rhel8-CRB
RHEL 8.2
python38-attrs
rhel8-CRB
RHEL 8.2
python38-babel
rhel8-AppStream
RHEL 8.2
python38-cffi
rhel8-AppStream
RHEL 8.2
python38-chardet
rhel8-AppStream
RHEL 8.2
python38-cryptography
rhel8-AppStream
RHEL 8.2
python38-Cython
rhel8-AppStream
RHEL 8.2
python38-debug
rhel8-AppStream
RHEL 8.2
python38-devel
rhel8-AppStream
RHEL 8.2
python38-idle
rhel8-AppStream
RHEL 8.2
python38-idna
rhel8-AppStream
RHEL 8.2
python38-jinja2
rhel8-AppStream
RHEL 8.2
python38-libs
rhel8-AppStream
RHEL 8.2
python38-lxml
rhel8-AppStream
RHEL 8.2
python38-markupsafe
rhel8-AppStream
RHEL 8.2
python38-mod_wsgi
rhel8-AppStream
RHEL 8.2
python38-more-itertools
rhel8-CRB
RHEL 8.2
python38-numpy-doc
rhel8-AppStream
RHEL 8.2
python38-numpy-f2py
rhel8-AppStream
RHEL 8.2
python38-numpy
rhel8-AppStream
RHEL 8.2
python38-packaging
rhel8-CRB
RHEL 8.2
python38-pip-wheel
rhel8-AppStream
RHEL 8.2
python38-pip
rhel8-AppStream
RHEL 8.2
python38-pluggy
rhel8-CRB
RHEL 8.2
python38-ply
rhel8-AppStream
RHEL 8.2
python38-psutil
rhel8-AppStream
RHEL 8.2
python38-psycopg2-doc
rhel8-AppStream
RHEL 8.2
python38-psycopg2-tests
rhel8-AppStream
RHEL 8.2
python38-psycopg2
rhel8-AppStream
RHEL 8.2
python38-py
rhel8-CRB
RHEL 8.2
python38-pycparser
rhel8-AppStream
RHEL 8.2
python38-PyMySQL
rhel8-AppStream
RHEL 8.2
python38-pyparsing
rhel8-CRB
RHEL 8.2
python38-pysocks
rhel8-AppStream
RHEL 8.2
python38-pytest
rhel8-CRB
RHEL 8.2
python38-pytz
rhel8-AppStream
RHEL 8.2
python38-pyyaml
rhel8-AppStream
RHEL 8.2
python38-requests
rhel8-AppStream
RHEL 8.2
python38-resolvelib
rhel8-AppStream
RHEL 8.6
python38-rpm-macros
rhel8-AppStream
RHEL 8.2
python38-scipy
rhel8-AppStream
RHEL 8.2
python38-setuptools-wheel
rhel8-AppStream
RHEL 8.2
python38-setuptools
rhel8-AppStream
RHEL 8.2
python38-six
rhel8-AppStream
RHEL 8.2
python38-test
rhel8-AppStream
RHEL 8.2
python38-tkinter
rhel8-AppStream
RHEL 8.2
python38-urllib3
rhel8-AppStream
RHEL 8.2
python38-wcwidth
rhel8-CRB
RHEL 8.2
python38-wheel-wheel
rhel8-AppStream
RHEL 8.2
python38-wheel
rhel8-AppStream
RHEL 8.2
python38
rhel8-AppStream
RHEL 8.2
python39
rhel8-AppStream
RHEL 8.4
python39-attrs
rhel8-CRB
RHEL 8.4
python39-cffi
rhel8-AppStream
RHEL 8.4
python39-chardet
rhel8-AppStream
RHEL 8.4
python39-cryptography
rhel8-AppStream
RHEL 8.4
python39-Cython
rhel8-CRB
RHEL 8.4
python39-debug
rhel8-CRB
RHEL 8.4
python39-devel
rhel8-AppStream
RHEL 8.4
python39-idle
rhel8-AppStream
RHEL 8.4
python39-idna
rhel8-AppStream
RHEL 8.4
python39-iniconfig
rhel8-CRB
RHEL 8.4
python39-libs
rhel8-AppStream
RHEL 8.4
python39-lxml
rhel8-AppStream
RHEL 8.4
python39-mod_wsgi
rhel8-AppStream
RHEL 8.4
python39-more-itertools
rhel8-CRB
RHEL 8.4
python39-numpy
rhel8-AppStream
RHEL 8.4
python39-numpy-doc
rhel8-AppStream
RHEL 8.4
python39-numpy-f2py
rhel8-AppStream
RHEL 8.4
python39-packaging
rhel8-CRB
RHEL 8.4
python39-pip
rhel8-AppStream
RHEL 8.4
python39-pip-wheel
rhel8-AppStream
RHEL 8.4
python39-pluggy
rhel8-CRB
RHEL 8.4
python39-ply
rhel8-AppStream
RHEL 8.4
python39-psutil
rhel8-AppStream
RHEL 8.4
python39-psycopg2
rhel8-AppStream
RHEL 8.4
python39-psycopg2-doc
rhel8-AppStream
RHEL 8.4
python39-psycopg2-tests
rhel8-AppStream
RHEL 8.4
python39-py
rhel8-CRB
RHEL 8.4
python39-pybind11
rhel8-CRB
RHEL 8.4
python39-pybind11-devel
rhel8-CRB
RHEL 8.4
python39-pycparser
rhel8-AppStream
RHEL 8.4
python39-PyMySQL
rhel8-AppStream
RHEL 8.4
python39-pyparsing
rhel8-CRB
RHEL 8.4
python39-pysocks
rhel8-AppStream
RHEL 8.4
python39-pytest
rhel8-CRB
RHEL 8.4
python39-pyyaml
rhel8-AppStream
RHEL 8.4
python39-requests
rhel8-AppStream
RHEL 8.4
python39-rpm-macros
rhel8-AppStream
RHEL 8.4
python39-scipy
rhel8-AppStream
RHEL 8.4
python39-setuptools
rhel8-AppStream
RHEL 8.4
python39-setuptools-wheel
rhel8-AppStream
RHEL 8.4
python39-six
rhel8-AppStream
RHEL 8.4
python39-test
rhel8-AppStream
RHEL 8.4
python39-tkinter
rhel8-AppStream
RHEL 8.4
python39-toml
rhel8-AppStream
RHEL 8.4
python39-urllib3
rhel8-AppStream
RHEL 8.4
python39-wcwidth
rhel8-CRB
RHEL 8.4
python39-wheel
rhel8-AppStream
RHEL 8.4
python39-wheel-wheel
rhel8-AppStream
RHEL 8.4
qatengine
rhel8-AppStream
RHEL 8.4
qatlib
rhel8-AppStream
RHEL 8.4
qatlib-devel
rhel8-CRB
RHEL 8.4
qatlib-service
rhel8-AppStream
RHEL 8.7
qatlib-tests
rhel8-CRB
RHEL 8.6
qatzip
rhel8-AppStream
RHEL 8.6
qatzip-devel
rhel8-CRB
RHEL 8.6
qatzip-libs
rhel8-AppStream
RHEL 8.6
qemu-kvm-docs
rhel8-AppStream
RHEL 8.6
qemu-kvm-hw-usbredir
rhel8-AppStream
RHEL 8.6
qemu-kvm-ui-opengl
rhel8-AppStream
RHEL 8.6
qemu-kvm-ui-spice
rhel8-AppStream
RHEL 8.6
qgpgme-devel
rhel8-CRB
RHEL 8.4
qt5-qt3d-doc
rhel8-AppStream
RHEL 8.7
qt5-qtbase-doc
rhel8-AppStream
RHEL 8.7
qt5-qtbase-private-devel
rhel8-AppStream
RHEL 8.2
qt5-qtconnectivity-doc
rhel8-AppStream
RHEL 8.7
qt5-qtdeclarative-doc
rhel8-AppStream
RHEL 8.7
qt5-qtgraphicaleffects-doc
rhel8-AppStream
RHEL 8.7
qt5-qtimageformats-doc
rhel8-AppStream
RHEL 8.7
qt5-qtlocation-doc
rhel8-AppStream
RHEL 8.7
qt5-qtmultimedia-doc
rhel8-AppStream
RHEL 8.7
qt5-qtquickcontrols-doc
rhel8-AppStream
RHEL 8.7
qt5-qtquickcontrols2-doc
rhel8-AppStream
RHEL 8.7
qt5-qtscript-doc
rhel8-AppStream
RHEL 8.7
qt5-qtsensors-doc
rhel8-AppStream
RHEL 8.7
qt5-qtserialbus-devel
rhel8-CRB
RHEL 8.5
qt5-qtserialbus-doc
rhel8-AppStream
RHEL 8.7
qt5-qtserialport-doc
rhel8-AppStream
RHEL 8.7
qt5-qtsvg-doc
rhel8-AppStream
RHEL 8.7
qt5-qttools-doc
rhel8-AppStream
RHEL 8.7
qt5-qtwayland-doc
rhel8-AppStream
RHEL 8.7
qt5-qtwebchannel-doc
rhel8-AppStream
RHEL 8.7
qt5-qtwebsockets-doc
rhel8-AppStream
RHEL 8.7
qt5-qtx11extras-doc
rhel8-AppStream
RHEL 8.7
qt5-qtxmlpatterns-doc
rhel8-AppStream
RHEL 8.7
quota-devel
rhel8-CRB
RHEL 8.4
redhat-cloud-client-configuration
rhel8-AppStream
RHEL 8.7
resource-agents-paf
rhel8-HighAvailability
RHEL 8.5
resteasy-javadoc
rhel8-AppStream
RHEL 8.10
rhel8-AppStream
RHEL 8.4
rhc-worker-playbook
rhel8-AppStream
RHEL 8.4
rhsm-icons
rhel8-BaseOS
RHEL 8.2
rhel8-AppStream
RHEL 8.6
rpm-plugin-fapolicyd
rhel8-AppStream
RHEL 8.4
rshim
rhel8-AppStream
RHEL 8.4
rsyslog-mmfields
rhel8-AppStream
RHEL 8.6
rsyslog-omamqp1
rhel8-AppStream
RHEL 8.3
rsyslog-openssl
rhel8-AppStream
RHEL 8.5
rsyslog-udpspoof
rhel8-AppStream
RHEL 8.4
rhel8-AppStream
RHEL 8.8
ruby-bundled-gems
rhel8-AppStream
RHEL 8.7
ruby-default-gems
rhel8-AppStream
RHEL 8.3
rubygem-racc
rhel8-AppStream
RHEL 8.10
rubygem-rbs
rhel8-AppStream
RHEL 8.5
rubygem-rexml
rhel8-AppStream
RHEL 8.5
rubygem-rss
rhel8-AppStream
RHEL 8.5
rubygem-typeprof
rhel8-AppStream
RHEL 8.5
rust-analyzer
rhel8-AppStream
RHEL 8.8
rust-std-static-wasm32-unknown-unknown
rhel8-AppStream
RHEL 8.5
rust-std-static-wasm32-wasi
rhel8-AppStream
RHEL 8.6
s390utils
rhel8-AppStream
RHEL 8.10
s390utils-se-data
rhel8-AppStream
RHEL 8.10
samba-devel
rhel8-CRB
RHEL 8.4
samba-dc-libs
rhel8-BaseOS
RHEL 8.8
samba-dcerpc
rhel8-BaseOS
RHEL 8.8
samba-ldb-ldap-modules
rhel8-BaseOS
RHEL 8.8
samba-tools
rhel8-BaseOS
RHEL 8.8
samba-usershares
rhel8-BaseOS
RHEL 8.8
samba-vfs-iouring
rhel8-AppStream
RHEL 8.5
samba-winexe
rhel8-BaseOS
RHEL 8.4
sat4j
rhel8-AppStream
RHEL 8.4
sblim-cmpi-base
rhel8-AppStream
RHEL 8.1
sblim-gather
rhel8-AppStream
RHEL 8.5
sblim-gather-provider
rhel8-CRB
RHEL 8.5
sblim-indication_helper
rhel8-AppStream
RHEL 8.1
sblim-wbemcli
rhel8-AppStream
RHEL 8.1
setools-console-analyses
rhel8-AppStream
RHEL 8.2
setools-gui
rhel8-AppStream
RHEL 8.2
sevctl
rhel8-AppStream
RHEL 8.5
shadow-utils-subid
rhel8-BaseOS
RHEL 8.6
shadow-utils-subid-devel
rhel8-CRB
RHEL 8.6
rhel8-AppStream
RHEL 8.2
snactor
rhel8-AppStream
RHEL 8.7
spice-client-win-x64
rhel8-AppStream
RHEL 8.2
spice-client-win-x86
rhel8-AppStream
RHEL 8.2
spice-qxl-wddm-dod
rhel8-AppStream
RHEL 8.2
spice-qxl-xddm
rhel8-AppStream
RHEL 8.2
spice-streaming-agent
rhel8-AppStream
RHEL 8.2
spice-vdagent-win-x64
rhel8-AppStream
RHEL 8.2
spice-vdagent-win-x86
rhel8-AppStream
RHEL 8.2
sshpass
rhel8-AppStream
RHEL 8.6
sssd-idp
rhel8-AppStream
RHEL 8.7
sssd-polkit-rules
rhel8-BaseOS
RHEL 8.1
stalld
rhel8-AppStream
RHEL 8.4
stratisd-dracut
rhel8-AppStream
RHEL 8.5
stress-ng
rhel8-NFV
RHEL 8.3
subversion-ruby
rhel8-CRB
RHEL 8.7
swig (swig:4.0)
rhel8-AppStream
RHEL 8.4
swig-doc (swig:4.0)
rhel8-BaseOS
RHEL 8.4
swig-gdb (swig:4.0)
rhel8-AppStream
RHEL 8.4
swtpm
rhel8-AppStream
RHEL 8.6
swtpm-devel
rhel8-AppStream
RHEL 8.6
swtpm-libs
rhel8-AppStream
RHEL 8.6
swtpm-tools
rhel8-AppStream
RHEL 8.6
swtpm-tools-pkcs11
rhel8-AppStream
RHEL 8.6
synce4l
rhel8-AppStream
RHEL 8.8
tesseract
rhel8-AppStream
RHEL 8.5
tesseract-devel
rhel8-CRB
RHEL 8.5
texlive-context
rhel8-AppStream
RHEL 8.3
texlive-pst-arrow
rhel8-AppStream
RHEL 8.3
texlive-pst-tools
rhel8-AppStream
RHEL 8.3
texlive-translator
rhel8-AppStream
RHEL 8.8
thermald
rhel8-AppStream
RHEL 8.3
tigervnc-selinux
rhel8-AppStream
RHEL 8.3
tomcat
rhel8-AppStream
RHEL 8.8
tomcat-admin-webapps
rhel8-AppStream
RHEL 8.8
tomcat-docs-webapp
rhel8-AppStream
RHEL 8.8
tomcat-el-3.0-api
rhel8-AppStream
RHEL 8.8
tomcat-jsp-2.3-api
rhel8-AppStream
RHEL 8.8
tomcat-lib
rhel8-AppStream
RHEL 8.8
tomcat-servlet-4.0-api
rhel8-AppStream
RHEL 8.8
tomcat-webapps
rhel8-AppStream
RHEL 8.8
toolbox-tests
rhel8-AppStream
RHEL 8.5
tpm2-pkcs11
rhel8-AppStream
RHEL 8.8
tpm2-pkcs11-tools
rhel8-AppStream
RHEL 8.8
tracer-common
rhel8-AppStream
RHEL 8.4
tracker-devel
rhel8-CRB
RHEL 8.3
rhel8-BaseOS
RHEL 8.5
tss2-devel
rhel8-CRB
RHEL 8.5
tuned-profiles-postgresql
rhel8-AppStream
RHEL 8.7
twolame-devel
rhel8-CRB
RHEL 8.4
ucx-cma
rhel8-AppStream
RHEL 8.4
ucx-devel
rhel8-AppStream
RHEL 8.4
ucx-ib
rhel8-AppStream
RHEL 8.4
ucx-rdmacm
rhel8-AppStream
RHEL 8.4
udftools
rhel8-AppStream
RHEL 8.5
udica
rhel8-AppStream
RHEL 8.1
udisks2-lsm
rhel8-AppStream
RHEL 8.3
unicode-ucd-unihan
rhel8-CRB
RHEL 8.5
unifdef
rhel8-CRB
RHEL 8.9
univocity-parsers
rhel8-AppStream
RHEL 8.4
usbguard-notifier
rhel8-AppStream
RHEL 8.3
usbguard-selinux
rhel8-AppStream
RHEL 8.3
utf8proc-devel
rhel8-CRB
RHEL 8.7
vdo-support
rhel8-BaseOS
RHEL 8.3
virt-v2v-bash-completion
rhel8-AppStream
RHEL 8.6
virt-v2v-man-pages-ja
rhel8-AppStream
RHEL 8.6
virt-v2v-man-pages-uk
rhel8-AppStream
RHEL 8.6
WALinuxAgent-udev
rhel8-AppStream
RHEL 8.4
webrtc-audio-processing-devel
rhel8-CRB
RHEL 8.6
weldr-client
rhel8-AppStream
RHEL 8.6
whois-nls
rhel8-AppStream
RHEL 8.2
whois
rhel8-AppStream
RHEL 8.2
woff2-devel
rhel8-CRB
RHEL 8.4
wpebackend-fdo
rhel8-AppStream
RHEL 8.8
wpebackend-fdo-devel
rhel8-CRB
RHEL 8.8
xapian-core
rhel8-AppStream
RHEL 8.5
xapian-core-devel
rhel8-CRB
RHEL 8.5
xapian-core-libs
rhel8-AppStream
RHEL 8.5
xdp-tools
rhel8-AppStream
RHEL 8.3
xmlgraphics-commons
rhel8-AppStream
RHEL 8.4
xmlstarlet
rhel8-AppStream
RHEL 8.7
xorg-x11-server-source
rhel8-CRB
RHEL 8.3
xxhash
rhel8-AppStream
RHEL 8.7
xxhash-devel
rhel8-CRB
RHEL 8.7
xxhash-doc
rhel8-CRB
RHEL 8.7
xxhash-libs
rhel8-AppStream
RHEL 8.7
rhel8-AppStream
RHEL 8.7
yara-devel
rhel8-CRB
RHEL 8.7
rhel8-AppStream
RHEL 8.2
有关当前 RHEL 8 次要发行本中可用软件包的完整列表,请查看
软件包清单
。
以下软件包在 RHEL 8.0 中是新的:
#
|
389-ds-base-legacy-tools
A
|
aajohan-comfortaa-fonts, abrt-addon-coredump-helper, abrt-cli-ng, abrt-plugin-machine-id, abrt-plugin-sosreport, adcli-doc, alsa-ucm, alsa-utils-alsabat, anaconda-install-env-deps, annobin, ant-lib, ant-xz, apcu-panel, apr-util-bdb, aspell-en, assertj-core, assertj-core-javadoc, atlas-corei2, atlas-corei2-devel, audispd-plugins-zos, authselect, authselect-compat, authselect-libs
B
|
bacula-logwatch, beignet, blivet-data, bluez-obexd, bnd-maven-plugin, boom-boot, boom-boot-conf, boom-boot-grub2, boost-container, boost-coroutine, boost-fiber, boost-log, boost-mpich-python3, boost-numpy3, boost-openmpi-python3, boost-python3, boost-python3-devel, boost-stacktrace, boost-type_erasure, brltty-dracut, brltty-espeak-ng, brotli, brotli-devel, bubblewrap, buildah
C
|
c2esp, cargo, cargo-doc, cargo-vendor, cjose, cjose-devel, clang, clang-analyzer, clang-devel, clang-libs, clang-tools-extra, cldr-emoji-annotation, clippy, cmake-data, cmake-doc, cmake-filesystem, cmake-rpm-macros, cockpit-composer, cockpit-dashboard, cockpit-machines, cockpit-packagekit, cockpit-pcp, cockpit-session-recording, cockpit-storaged, compat-guile18, compat-guile18-devel, compat-libgfortran-48, compat-libpthread-nonshared, compat-openssl10, compiler-rt, composer-cli, container-exception-logger, container-selinux, containernetworking-plugins, containers-common, coreutils-common, coreutils-single, cppcheck, createrepo_c, createrepo_c-devel, createrepo_c-libs, crypto-policies, CUnit, CUnit-devel, cyrus-imapd-vzic
D
|
dbus-c, dbus-c-devel, dbus-c++-glib, dbus-common, dbus-daemon, dbus-tools, dhcp-client, dhcp-relay, dhcp-server, dleyna-renderer, dnf, dnf-automatic, dnf-data, dnf-plugin-spacewalk, dnf-plugin-subscription-manager, dnf-plugins-core, dnf-utils, dnssec-trigger-panel, docbook2X, dotnet, dotnet-host, dotnet-host-fxr-2.1, dotnet-runtime-2.1, dotnet-sdk-2.1, dotnet-sdk-2.1.5xx, dpdk, dpdk-devel, dpdk-doc, dpdk-tools, dracut-live, dracut-squash, driverctl, drpm, drpm-devel, dtc
E
|
edk2-aarch64, edk2-ovmf, efi-filesystem, efi-srpm-macros, egl-wayland, eglexternalplatform-devel, eigen3-devel, emacs-lucid, enca, enca-devel, enchant2, enchant2-devel, espeak-ng, evemu, evemu-libs, execstack
F
|
fence-agents-lpar, fence-agents-zvm, fftw-libs-quad, freeradius-rest, fuse-common, fuse-overlayfs, fuse-sshfs, fuse3, fuse3-devel, fuse3-libs
G
|
galera, gcc-gdb-plugin, gcc-offload-nvptx, gdb-headless, gdbm-libs, gdk-pixbuf2-modules, gdk-pixbuf2-xlib, gdk-pixbuf2-xlib-devel, gegl04, gegl04-devel, genwqe-tools, genwqe-vpd, genwqe-zlib, genwqe-zlib-devel, geronimo-jpa, geronimo-jpa-javadoc, gfbgraph, gflags, gflags-devel, ghc-srpm-macros, ghostscript-tools-dvipdf, ghostscript-tools-fonts, ghostscript-tools-printing, ghostscript-x11, git-clang-format, git-core, git-core-doc, git-subtree, glassfish-annotation-api, glassfish-annotation-api-javadoc, glassfish-jax-rs-api, glassfish-jax-rs-api-javadoc, glassfish-jaxb-bom, glassfish-jaxb-bom-ext, glassfish-jaxb-codemodel, glassfish-jaxb-codemodel-annotation-compiler, glassfish-jaxb-codemodel-parent, glassfish-jaxb-core, glassfish-jaxb-external-parent, glassfish-jaxb-parent, glassfish-jaxb-rngom, glassfish-jaxb-runtime, glassfish-jaxb-runtime-parent, glassfish-jaxb-txw-parent, glassfish-jaxb-txw2, glassfish-legal, glassfish-master-pom, glassfish-servlet-api, glassfish-servlet-api-javadoc, glibc-all-langpacks, glibc-langpack-aa, glibc-langpack-af, glibc-langpack-agr, glibc-langpack-ak, glibc-langpack-am, glibc-langpack-an, glibc-langpack-anp, glibc-langpack-ar, glibc-langpack-as, glibc-langpack-ast, glibc-langpack-ayc, glibc-langpack-az, glibc-langpack-be, glibc-langpack-bem, glibc-langpack-ber, glibc-langpack-bg, glibc-langpack-bhb, glibc-langpack-bho, glibc-langpack-bi, glibc-langpack-bn, glibc-langpack-bo, glibc-langpack-br, glibc-langpack-brx, glibc-langpack-bs, glibc-langpack-byn, glibc-langpack-ca, glibc-langpack-ce, glibc-langpack-chr, glibc-langpack-cmn, glibc-langpack-crh, glibc-langpack-cs, glibc-langpack-csb, glibc-langpack-cv, glibc-langpack-cy, glibc-langpack-da, glibc-langpack-de, glibc-langpack-doi, glibc-langpack-dsb, glibc-langpack-dv, glibc-langpack-dz, glibc-langpack-el, glibc-langpack-en, glibc-langpack-eo, glibc-langpack-es, glibc-langpack-et, glibc-langpack-eu, glibc-langpack-fa, glibc-langpack-ff, glibc-langpack-fi, glibc-langpack-fil, glibc-langpack-fo, glibc-langpack-fr, glibc-langpack-fur, glibc-langpack-fy, glibc-langpack-ga, glibc-langpack-gd, glibc-langpack-gez, glibc-langpack-gl, glibc-langpack-gu, glibc-langpack-gv, glibc-langpack-ha, glibc-langpack-hak, glibc-langpack-he, glibc-langpack-hi, glibc-langpack-hif, glibc-langpack-hne, glibc-langpack-hr, glibc-langpack-hsb, glibc-langpack-ht, glibc-langpack-hu, glibc-langpack-hy, glibc-langpack-ia, glibc-langpack-id, glibc-langpack-ig, glibc-langpack-ik, glibc-langpack-is, glibc-langpack-it, glibc-langpack-iu, glibc-langpack-ja, glibc-langpack-ka, glibc-langpack-kab, glibc-langpack-kk, glibc-langpack-kl, glibc-langpack-km, glibc-langpack-kn, glibc-langpack-ko, glibc-langpack-kok, glibc-langpack-ks, glibc-langpack-ku, glibc-langpack-kw, glibc-langpack-ky, glibc-langpack-lb, glibc-langpack-lg, glibc-langpack-li, glibc-langpack-lij, glibc-langpack-ln, glibc-langpack-lo, glibc-langpack-lt, glibc-langpack-lv, glibc-langpack-lzh, glibc-langpack-mag, glibc-langpack-mai, glibc-langpack-mfe, glibc-langpack-mg, glibc-langpack-mhr, glibc-langpack-mi, glibc-langpack-miq, glibc-langpack-mjw, glibc-langpack-mk, glibc-langpack-ml, glibc-langpack-mn, glibc-langpack-mni, glibc-langpack-mr, glibc-langpack-ms, glibc-langpack-mt, glibc-langpack-my, glibc-langpack-nan, glibc-langpack-nb, glibc-langpack-nds, glibc-langpack-ne, glibc-langpack-nhn, glibc-langpack-niu, glibc-langpack-nl, glibc-langpack-nn, glibc-langpack-nr, glibc-langpack-nso, glibc-langpack-oc, glibc-langpack-om, glibc-langpack-or, glibc-langpack-os, glibc-langpack-pa, glibc-langpack-pap, glibc-langpack-pl, glibc-langpack-ps, glibc-langpack-pt, glibc-langpack-quz, glibc-langpack-raj, glibc-langpack-ro, glibc-langpack-ru, glibc-langpack-rw, glibc-langpack-sa, glibc-langpack-sah, glibc-langpack-sat, glibc-langpack-sc, glibc-langpack-sd, glibc-langpack-se, glibc-langpack-sgs, glibc-langpack-shn, glibc-langpack-shs, glibc-langpack-si, glibc-langpack-sid, glibc-langpack-sk, glibc-langpack-sl, glibc-langpack-sm, glibc-langpack-so, glibc-langpack-sq, glibc-langpack-sr, glibc-langpack-ss, glibc-langpack-st, glibc-langpack-sv, glibc-langpack-sw, glibc-langpack-szl, glibc-langpack-ta, glibc-langpack-tcy, glibc-langpack-te, glibc-langpack-tg, glibc-langpack-th, glibc-langpack-the, glibc-langpack-ti, glibc-langpack-tig, glibc-langpack-tk, glibc-langpack-tl, glibc-langpack-tn, glibc-langpack-to, glibc-langpack-tpi, glibc-langpack-tr, glibc-langpack-ts, glibc-langpack-tt, glibc-langpack-ug, glibc-langpack-uk, glibc-langpack-unm, glibc-langpack-ur, glibc-langpack-uz, glibc-langpack-ve, glibc-langpack-vi, glibc-langpack-wa, glibc-langpack-wae, glibc-langpack-wal, glibc-langpack-wo, glibc-langpack-xh, glibc-langpack-yi, glibc-langpack-yo, glibc-langpack-yue, glibc-langpack-yuw, glibc-langpack-zh, glibc-langpack-zu, glibc-locale-source, glibc-minimal-langpack, glog, glog-devel, gmock, gmock-devel, gmp-c++, gnome-autoar, gnome-backgrounds-extras, gnome-characters, gnome-control-center, gnome-control-center-filesystem, gnome-logs, gnome-photos, gnome-photos-tests, gnome-remote-desktop, gnome-shell-extension-desktop-icons, gnome-tweaks, go-compilers-golang-compiler, go-srpm-macros, go-toolset, golang, golang-bin, golang-docs, golang-misc, golang-race, golang-src, golang-tests, google-droid-kufi-fonts, google-droid-sans-fonts, google-droid-sans-mono-fonts, google-droid-serif-fonts, google-noto-cjk-fonts-common, google-noto-mono-fonts, google-noto-nastaliq-urdu-fonts, google-noto-sans-cjk-jp-fonts, google-noto-sans-cjk-ttc-fonts, google-noto-sans-oriya-fonts, google-noto-sans-oriya-ui-fonts, google-noto-sans-tibetan-fonts, google-noto-serif-bengali-fonts, google-noto-serif-cjk-ttc-fonts, google-noto-serif-devanagari-fonts, google-noto-serif-gujarati-fonts, google-noto-serif-kannada-fonts, google-noto-serif-malayalam-fonts, google-noto-serif-tamil-fonts, google-noto-serif-telugu-fonts, google-roboto-slab-fonts, gpgmepp, gpgmepp-devel, grub2-tools-efi, gssntlmssp, gstreamer1-plugins-good-gtk, gtest, gtest-devel, guava20, guava20-javadoc, guava20-testlib, guice-assistedinject, guice-bom, guice-extensions, guice-grapher, guice-jmx, guice-jndi, guice-multibindings, guice-servlet, guice-testlib, guice-throwingproviders, gutenprint-libs, gutenprint-libs-ui
H
|
hamcrest-core, hawtjni-runtime, hexchat, hexchat-devel, httpcomponents-client-cache, httpd-filesystem, hunspell-es-AR, hunspell-es-BO, hunspell-es-CL, hunspell-es-CO, hunspell-es-CR, hunspell-es-CU, hunspell-es-DO, hunspell-es-EC, hunspell-es-ES, hunspell-es-GT, hunspell-es-HN, hunspell-es-MX, hunspell-es-NI, hunspell-es-PA, hunspell-es-PE, hunspell-es-PR, hunspell-es-PY, hunspell-es-SV, hunspell-es-US, hunspell-es-UY, hunspell-es-VE
I
|
i2c-tools-perl, ibus-libzhuyin, ibus-wayland, iio-sensor-proxy, infiniband-diags-compat, integritysetup, ipa-idoverride-memberof-plugin, ipcalc, ipmievd, iproute-tc, iptables-arptables, iptables-ebtables, iptables-libs, isl, isl-devel, isns-utils-devel, isns-utils-libs, istack-commons-runtime, istack-commons-tools, ivy-local
J
|
jackson-annotations, jackson-annotations-javadoc, jackson-core, jackson-core-javadoc, jackson-databind, jackson-databind-javadoc, jackson-jaxrs-json-provider, jackson-jaxrs-providers, jackson-jaxrs-providers-datatypes, jackson-jaxrs-providers-javadoc, jackson-module-jaxb-annotations, jackson-module-jaxb-annotations-javadoc, javapackages-filesystem, javapackages-local, jbig2dec-libs, jboss-annotations-1.2-api, jboss-interceptors-1.2-api, jboss-interceptors-1.2-api-javadoc, jboss-jaxrs-2.0-api, jboss-logging, jboss-logging-tools, jcl-over-slf4j, jdeparser, jdom2, jdom2-javadoc, jimtcl, jimtcl-devel, jq, js-uglify, Judy, jul-to-slf4j, julietaula-montserrat-fonts
K
|
kabi-dw, kdump-anaconda-addon, kernel-core, kernel-cross-headers, kernel-debug-core, kernel-debug-modules, kernel-debug-modules-extra, kernel-modules, kernel-modules-extra, kernel-rpm-macros, kernel-rt-core, kernel-rt-debug-core, kernel-rt-debug-modules, kernel-rt-debug-modules-extra, kernel-rt-modules, kernel-rt-modules-extra, kernelshark, koan, kyotocabinet-libs
L
|
lame-devel, lame-libs, langpacks-af, langpacks-am, langpacks-ar, langpacks-as, langpacks-ast, langpacks-be, langpacks-bg, langpacks-bn, langpacks-br, langpacks-bs, langpacks-ca, langpacks-cs, langpacks-cy, langpacks-da, langpacks-de, langpacks-el, langpacks-en, langpacks-en_GB, langpacks-es, langpacks-et, langpacks-eu, langpacks-fa, langpacks-fi, langpacks-fr, langpacks-ga, langpacks-gl, langpacks-gu, langpacks-he, langpacks-hi, langpacks-hr, langpacks-hu, langpacks-ia, langpacks-id, langpacks-is, langpacks-it, langpacks-ja, langpacks-kk, langpacks-kn, langpacks-ko, langpacks-lt, langpacks-lv, langpacks-mai, langpacks-mk, langpacks-ml, langpacks-mr, langpacks-ms, langpacks-nb, langpacks-ne, langpacks-nl, langpacks-nn, langpacks-nr, langpacks-nso, langpacks-or, langpacks-pa, langpacks-pl, langpacks-pt, langpacks-pt_BR, langpacks-ro, langpacks-ru, langpacks-si, langpacks-sk, langpacks-sl, langpacks-sq, langpacks-sr, langpacks-ss, langpacks-sv, langpacks-ta, langpacks-te, langpacks-th, langpacks-tn, langpacks-tr, langpacks-ts, langpacks-uk, langpacks-ur, langpacks-ve, langpacks-vi, langpacks-xh, langpacks-zh_CN, langpacks-zh_TW, langpacks-zu, lato-fonts, lensfun, lensfun-devel, leptonica, leptonica-devel, liba52, libaec, libaec-devel, libatomic_ops, libbabeltrace, libblockdev-lvm-dbus, libcephfs-devel, libcephfs2, libcmocka, libcmocka-devel, libcomps, libcomps-devel, libcurl-minimal, libdap, libdap-devel, libdatrie, libdatrie-devel, libdazzle, libdc1394, libdnf, libEMF, libEMF-devel, libeot, libepubgen, libertas-sd8686-firmware, libertas-sd8787-firmware, libertas-usb8388-firmware, libertas-usb8388-olpc-firmware, libev, libev-devel, libev-libevent-devel, libev-source, libfdisk, libfdisk-devel, libfdt, libfdt-devel, libgit2, libgit2-devel, libgit2-glib, libgit2-glib-devel, libgomp-offload-nvptx, libgudev, libgudev-devel, libi2c, libidn2, libidn2-devel, libijs, libinput-utils, libipt, libisoburn, libisoburn-devel, libkcapi, libkcapi-hmaccalc, libkeepalive, libknet1, libknet1-compress-bzip2-plugin, libknet1-compress-lz4-plugin, libknet1-compress-lzma-plugin, libknet1-compress-lzo2-plugin, libknet1-compress-plugins-all, libknet1-compress-zlib-plugin, libknet1-crypto-nss-plugin, libknet1-crypto-openssl-plugin, libknet1-crypto-plugins-all, libknet1-devel, libknet1-plugins-all, liblangtag-data, libmad, libmad-devel, libmcpp, libmemcached-libs, libmetalink, libmodulemd, libmodulemd-devel, libmodulemd1, libnghttp2, libnghttp2-devel, libnice-gstreamer1, libnsl, libnsl2, libnsl2-devel, liboggz, libomp, libomp-devel, libomp-test, libpeas-loader-python3, libpkgconf, libpq, libpq-devel, libproxy-webkitgtk4, libpsl, libqhull, libqhull_p, libqhull_r, libqxp, librados-devel, libradosstriper-devel, libradosstriper1, librbd-devel, libreoffice-help-en, libreoffice-langpack-af, libreoffice-langpack-ar, libreoffice-langpack-as, libreoffice-langpack-bg, libreoffice-langpack-bn, libreoffice-langpack-br, libreoffice-langpack-ca, libreoffice-langpack-cs, libreoffice-langpack-cy, libreoffice-langpack-da, libreoffice-langpack-de, libreoffice-langpack-dz, libreoffice-langpack-el, libreoffice-langpack-es, libreoffice-langpack-et, libreoffice-langpack-eu, libreoffice-langpack-fa, libreoffice-langpack-fi, libreoffice-langpack-fr, libreoffice-langpack-ga, libreoffice-langpack-gl, libreoffice-langpack-gu, libreoffice-langpack-he, libreoffice-langpack-hi, libreoffice-langpack-hr, libreoffice-langpack-hu, libreoffice-langpack-id, libreoffice-langpack-it, libreoffice-langpack-ja, libreoffice-langpack-kk, libreoffice-langpack-kn, libreoffice-langpack-ko, libreoffice-langpack-lt, libreoffice-langpack-lv, libreoffice-langpack-mai, libreoffice-langpack-ml, libreoffice-langpack-mr, libreoffice-langpack-nb, libreoffice-langpack-nl, libreoffice-langpack-nn, libreoffice-langpack-nr, libreoffice-langpack-nso, libreoffice-langpack-or, libreoffice-langpack-pa, libreoffice-langpack-pl, libreoffice-langpack-pt-BR, libreoffice-langpack-pt-PT, libreoffice-langpack-ro, libreoffice-langpack-ru, libreoffice-langpack-si, libreoffice-langpack-sk, libreoffice-langpack-sl, libreoffice-langpack-sr, libreoffice-langpack-ss, libreoffice-langpack-st, libreoffice-langpack-sv, libreoffice-langpack-ta, libreoffice-langpack-te, libreoffice-langpack-th, libreoffice-langpack-tn, libreoffice-langpack-tr, libreoffice-langpack-ts, libreoffice-langpack-uk, libreoffice-langpack-ve, libreoffice-langpack-xh, libreoffice-langpack-zh-Hans, libreoffice-langpack-zh-Hant, libreoffice-langpack-zu, librhsm, librx, librx-devel, libsass, libsass-devel, libserf, libsigsegv, libsigsegv-devel, libssh, libssh-devel, libstemmer, libstemmer-devel, libubsan, libucil, libucil-devel, libunicap, libunicap-devel, libuv, libvarlink, libvarlink-devel, libvarlink-util, libvirt-dbus, libX11-xcb, libxcam, libxcrypt, libxcrypt-devel, libxcrypt-static, libXNVCtrl, libXNVCtrl-devel, libzhuyin, libzip-tools, lld, lld-devel, lld-libs, lldb, lldb-devel, lldpd, lldpd-devel, llvm, llvm-devel, llvm-doc, llvm-googletest, llvm-libs, llvm-static, llvm-test, llvm-toolset, log4j-over-slf4j, log4j12, log4j12-javadoc, lohit-gurmukhi-fonts, lohit-odia-fonts, lorax-composer, lorax-lmc-novirt, lorax-lmc-virt, lorax-templates-generic, lorax-templates-rhel, lttng-ust, lttng-ust-devel, lua-expat, lua-filesystem, lua-json, lua-libs, lua-lpeg, lua-lunit, lua-posix, lua-socket, lvm2-dbusd, lz4-libs
M
|
make-devel, man-db-cron, mariadb-backup, mariadb-common, mariadb-connector-c, mariadb-connector-c-config, mariadb-connector-c-devel, mariadb-connector-odbc, mariadb-errmsg, mariadb-gssapi-server, mariadb-java-client, mariadb-oqgraph-engine, mariadb-server-galera, mariadb-server-utils, maven-artifact-transfer, maven-artifact-transfer-javadoc, maven-lib, maven-resolver, maven-resolver-api, maven-resolver-connector-basic, maven-resolver-impl, maven-resolver-javadoc, maven-resolver-spi, maven-resolver-test-util, maven-resolver-transport-classpath, maven-resolver-transport-file, maven-resolver-transport-http, maven-resolver-transport-wagon, maven-resolver-util, maven-wagon-file, maven-wagon-ftp, maven-wagon-http, maven-wagon-http-lightweight, maven-wagon-http-shared, maven-wagon-provider-api, maven-wagon-providers, mcpp, mecab, mecab-ipadic, mecab-ipadic-EUCJP, mesa-vulkan-devel, meson, metis, metis-devel, microdnf, mingw-binutils-generic, mingw-filesystem-base, mingw32-binutils, mingw32-bzip2, mingw32-bzip2-static, mingw32-cairo, mingw32-cpp, mingw32-crt, mingw32-expat, mingw32-filesystem, mingw32-fontconfig, mingw32-freetype, mingw32-freetype-static, mingw32-gcc, mingw32-gcc-c, mingw32-gettext, mingw32-gettext-static, mingw32-glib2, mingw32-glib2-static, mingw32-gstreamer1, mingw32-harfbuzz, mingw32-harfbuzz-static, mingw32-headers, mingw32-icu, mingw32-libffi, mingw32-libjpeg-turbo, mingw32-libjpeg-turbo-static, mingw32-libpng, mingw32-libpng-static, mingw32-libtiff, mingw32-libtiff-static, mingw32-openssl, mingw32-pcre, mingw32-pcre-static, mingw32-pixman, mingw32-pkg-config, mingw32-readline, mingw32-sqlite, mingw32-sqlite-static, mingw32-termcap, mingw32-win-iconv, mingw32-win-iconv-static, mingw32-winpthreads, mingw32-winpthreads-static, mingw32-zlib, mingw32-zlib-static, mingw64-binutils, mingw64-bzip2, mingw64-bzip2-static, mingw64-cairo, mingw64-cpp, mingw64-crt, mingw64-expat, mingw64-filesystem, mingw64-fontconfig, mingw64-freetype, mingw64-freetype-static, mingw64-gcc, mingw64-gcc-c, mingw64-gettext, mingw64-gettext-static, mingw64-glib2, mingw64-glib2-static, mingw64-gstreamer1, mingw64-harfbuzz, mingw64-harfbuzz-static, mingw64-headers, mingw64-icu, mingw64-libffi, mingw64-libjpeg-turbo, mingw64-libjpeg-turbo-static, mingw64-libpng, mingw64-libpng-static, mingw64-libtiff, mingw64-libtiff-static, mingw64-openssl, mingw64-pcre, mingw64-pcre-static, mingw64-pixman, mingw64-pkg-config, mingw64-readline, mingw64-sqlite, mingw64-sqlite-static, mingw64-termcap, mingw64-win-iconv, mingw64-win-iconv-static, mingw64-winpthreads, mingw64-winpthreads-static, mingw64-zlib, mingw64-zlib-static, mockito, mockito-javadoc, mod_http2, mod_md, mozvoikko, mpich, mpich-devel, mpitests-mvapich2-psm2, multilib-rpm-config, munge, munge-devel, munge-libs, mvapich2, mvapich2-psm2, mysql, mysql-common, mysql-devel, mysql-errmsg, mysql-libs, mysql-server, mysql-test
N
|
nbdkit-bash-completion, nbdkit-plugin-gzip, nbdkit-plugin-python3, nbdkit-plugin-xz, ncurses-c++-libs, ncurses-compat-libs, netconsole-service, network-scripts, network-scripts-team, NetworkManager-config-connectivity-redhat, nghttp2, nginx, nginx-all-modules, nginx-filesystem, nginx-mod-http-image-filter, nginx-mod-http-perl, nginx-mod-http-xslt-filter, nginx-mod-mail, nginx-mod-stream, ninja-build, nkf, nodejs, nodejs-devel, nodejs-docs, nodejs-nodemon, nodejs-packaging, npm, npth, nss_db, nss_nis, nss_wrapper, nss-altfiles, ntpstat
O
|
objectweb-pom, objenesis, objenesis-javadoc, ocaml-cppo, ocaml-labltk, ocaml-labltk-devel, oci-systemd-hook, oci-umount, ocl-icd, ocl-icd-devel, ongres-scram, ongres-scram-client, oniguruma, oniguruma-devel, openal-soft, openal-soft-devel, openblas, openblas-devel, openblas-openmp, openblas-openmp64, openblas-openmp64_, openblas-Rblas, openblas-serial64, openblas-serial64_, openblas-srpm-macros, openblas-static, openblas-threads, openblas-threads64, openblas-threads64_, opencl-filesystem, opencl-headers, opencv-contrib, OpenIPMI-lanserv, openscap-python3, openssl-ibmpkcs11, openssl-pkcs11, openwsman-python3, os-maven-plugin, os-maven-plugin-javadoc, osad, osgi-annotation, osgi-annotation-javadoc, osgi-compendium, osgi-compendium-javadoc, osgi-core, osgi-core-javadoc, ostree, ostree-devel, ostree-grub2, ostree-libs, overpass-mono-fonts
p
|
p11-kit-server, pacemaker-schemas, pam_cifscreds, pandoc, pandoc-common, papi-libs, pcaudiolib, pcp-pmda-podman, pcre-cpp, pcre-utf16, pcre-utf32, Peripety, perl-AnyEvent, perl-Attribute-Handlers, perl-B-Debug, perl-B-Hooks-EndOfScope, perl-bignum, perl-Canary-Stability, perl-Class-Accessor, perl-Class-Factory-Util, perl-Class-Method-Modifiers, perl-Class-Tiny, perl-Class-XSAccessor, perl-common-sense, perl-Compress-Bzip2, perl-Config-AutoConf, perl-Config-Perl-V, perl-CPAN-DistnameInfo, perl-CPAN-Meta-Check, perl-Data-Dump, perl-Data-Section, perl-Data-UUID, perl-Date-ISO8601, perl-DateTime-Format-Builder, perl-DateTime-Format-HTTP, perl-DateTime-Format-ISO8601, perl-DateTime-Format-Mail, perl-DateTime-Format-Strptime, perl-DateTime-TimeZone-SystemV, perl-DateTime-TimeZone-Tzfile, perl-Devel-CallChecker, perl-Devel-Caller, perl-Devel-GlobalDestruction, perl-Devel-LexAlias, perl-Devel-Peek, perl-Devel-PPPort, perl-Devel-SelfStubber, perl-Devel-Size, perl-Digest-CRC, perl-DynaLoader-Functions, perl-encoding, perl-Errno, perl-Eval-Closure, perl-experimental, perl-Exporter-Tiny, perl-ExtUtils-Command, perl-ExtUtils-Miniperl, perl-ExtUtils-MM-Utils, perl-Fedora-VSP, perl-File-BaseDir, perl-File-chdir, perl-File-DesktopEntry, perl-File-Find-Object, perl-File-MimeInfo, perl-File-ReadBackwards, perl-Filter-Simple, perl-generators, perl-Import-Into, perl-Importer, perl-inc-latest, perl-interpreter, perl-IO, perl-IO-All, perl-IO-Multiplex, perl-IPC-System-Simple, perl-IPC-SysV, perl-JSON-XS, perl-libintl-perl, perl-libnet, perl-libnetcfg, perl-List-MoreUtils-XS, perl-Locale-gettext, perl-Math-BigInt, perl-Math-BigInt-FastCalc, perl-Math-BigRat, perl-Math-Complex, perl-Memoize, perl-MIME-Base64, perl-MIME-Charset, perl-MIME-Types, perl-Module-CoreList-tools, perl-Module-CPANfile, perl-Module-Install-AuthorTests, perl-Module-Install-ReadmeFromPod, perl-MRO-Compat, perl-namespace-autoclean, perl-namespace-clean, perl-Net-Ping, perl-Net-Server, perl-NKF, perl-NTLM, perl-open, perl-Params-Classify, perl-Params-ValidationCompiler, perl-Parse-PMFile, perl-Path-Tiny, perl-Perl-Destruct-Level, perl-perlfaq, perl-PerlIO-utf8_strict, perl-PerlIO-via-QuotedPrint, perl-Pod-Html, perl-Pod-Markdown, perl-Ref-Util, perl-Ref-Util-XS, perl-Role-Tiny, perl-Scope-Guard, perl-SelfLoader, perl-Software-License, perl-Specio, perl-Sub-Exporter-Progressive, perl-Sub-Identify, perl-Sub-Info, perl-Sub-Name, perl-SUPER, perl-Term-ANSIColor, perl-Term-Cap, perl-Term-Size-Any, perl-Term-Size-Perl, perl-Term-Table, perl-Test-LongString, perl-Test-Warnings, perl-Test2-Suite, perl-Text-Balanced, perl-Text-Tabs+Wrap, perl-Text-Template, perl-Types-Serialiser, perl-Unicode-Collate, perl-Unicode-EastAsianWidth, perl-Unicode-LineBreak, perl-Unicode-Normalize, perl-Unicode-UTF8, perl-Unix-Syslog, perl-Variable-Magic, perl-YAML-LibYAML-LibYAML, php-dbg, php-gmp, php-json, php-opcache, php-pecl-apcu-devel, php-pecl-zip, pigz, pinentry-emacs, pinentry-gnome3, pipewire-devel, pipewire-doc, pipewire-libs, pipewire-utils, pkgconf, pkgconf-m4, pkgconf-pkg-config, pki-servlet-4.0-api, pki-servlet-container, platform-python-coverage, platform-python-debug, platform-python-devel, platform-python-devel, platform-python-pip, platform-python-setuptools, plexus-interactivity-api, plexus-interactivity-jline, plexus-languages, plexus-languages-javadoc, plotutils-devel, pmix, pmreorder, podman, podman-docker, policycoreutils-dbus, policycoreutils-dbus, policycoreutils-python-utils, polkit-libs, poppler-qt5, poppler-qt5-devel, postfix-mysql, postfix-pgsql, postgresql-odbc-tests, postgresql-plpython3, postgresql-server-devel, postgresql-test-rpm-macros, postgresql-upgrade-devel, potrace, powermock-api-easymock, powermock-api-mockito, powermock-api-support, powermock-common, powermock-core, powermock-javadoc, powermock-junit4, powermock-reflect, powermock-testng, prefixdevname, pstoedit, ptscotch-mpich, ptscotch-mpich-devel, ptscotch-mpich-devel-parmetis, ptscotch-openmpi, ptscotch-openmpi-devel, publicsuffix-list-dafsa, python-pymongo-doc, python-qt5-rpm-macros, python-sphinx-locale, python-sqlalchemy-doc, python-virtualenv-doc, python2, python2-attrs, python2-babel, python2-backports-ssl_match_hostname, python2-bson, python2-cairo, python2-cairo-devel, python2-chardet, python2-Cython, python2-Cython, python2-devel, python2-dns, python2-docs, python2-docs-info, python2-docutils, python2-funcsigs, python2-idna, python2-ipaddress, python2-iso8601, python2-jinja2, python2-libs, python2-lxml, python2-markupsafe, python2-mock, python2-nose, python2-numpy, python2-numpy-doc, python2-numpy-f2py, python2-pip, python2-pluggy, python2-psycopg2, python2-psycopg2-debug, python2-psycopg2-tests, python2-py, python2-pygments, python2-pymongo, python2-pymongo-gridfs, python2-PyMySQL, python2-pysocks, python2-pytest-mock, python2-pytest-mock, python2-pytz, python2-pyyaml, python2-requests, python2-scipy, python2-scour, python2-setuptools, python2-setuptools_scm, python2-six, python2-sqlalchemy, python2-talloc, python2-test, python2-tkinter, python2-tools, python2-urllib3, python2-virtualenv, python2-wheel, python3-abrt, python3-abrt-addon, python3-abrt-container-addon, python3-abrt-doc, python3-argcomplete, python3-argh, python3-asn1crypto, python3-attrs, python3-audit, python3-augeas, python3-avahi, python3-azure-sdk, python3-babel, python3-bcc, python3-bind, python3-blivet, python3-blockdev, python3-boom, python3-boto3, python3-botocore, python3-brlapi, python3-bson, python3-bytesize, python3-cairo, python3-cffi, python3-chardet, python3-clufter, python3-configobj, python3-configshell, python3-cpio, python3-createrepo_c, python3-cryptography, python3-cups, python3-custodia, python3-Cython, python3-dateutil, python3-dbus, python3-dbus-client-gen, python3-dbus-python-client-gen, python3-dbus-signature-pyparsing, python3-decorator, python3-dmidecode, python3-dnf, python3-dnf-plugin-spacewalk, python3-dnf-plugin-versionlock, python3-dnf-plugins-core, python3-dns, python3-docs, python3-docutils, python3-ethtool, python3-evdev, python3-fasteners, python3-firewall, python3-flask, python3-gevent, python3-gflags, python3-gobject-base, python3-ogle-api-client, python3-gpg, python3-greenlet, python3-greenlet-devel, python3-gssapi, python3-hawkey, python3-hivex, python3-html5lib, python3-httplib2, python3-helloize, python3-hwdata, python3-hypothesis, python3-idna, python3-imagesize, python3-iniparse, python3-inotify, python3-into-dbus-python, python3-ipaclient, python3-ipalib, python3-ipaserver, python3-iscsi-initiator-utils, python3-iso8601, python3-itsdangerous, python3-jabberpy, python3-javapackages, python3-jinja2, python3-jmespath, python3-jsonpatch, python3-jsonpointer, python3-jsonschema, python3-justbases, python3-justbytes, python3-jwcrypto, python3-jwt, python3-kdcproxy, python3-keycloak-httpd-client-install, python3-kickstart, python3-kmod, python3-koan, python3-langtable, python3-ldap, python3-ldb, python3-lesscpy, python3-lib389, python3-libdnf, python3-libdnf, python3-libguestfs, python3-libipa_hbac, python3-libnl3, python3-libpfm, python3-libproxy, python3-librepo, python3-libreport, python3-libselinux, python3-libsemanage, python3-libss_nss_idmap, python3-libstoragemgmt, python3-libstoragemgmt-clibs, python3-libuser, python3-libvirt, python3-libvoikko, python3-libxml2, python3-linux-procfs, python3-lit, python3-lldb, python3-louis, python3-lxml, python3-magic, python3-mako, python3-markdown, python3-markupsafe, python3-meh, python3-meh-gui, python3-mock, python3-mod_wsgi, python3-mpich, python3-netaddr, python3-netifaces, python3-newt, python3-nose, python3-nss, python3-ntplib, python3-numpy, python3-numpy-f2py, python3-oauth2client, python3-openipmi, python3-openmpi, python3-ordered-set, python3-osa-common, python3-osad, python3-pcp, python3-perf, python3-pexpect, python3-pid, python3-pillow, python3-pki, python3-pluggy, python3-ply, python3-policycoreutils, python3-prettytable, python3-prettytable, python3-productmd, python3-psycopg2, python3-ptyprocess, python3-pwquality, python3-pyasn1, python3-pyasn1-modules, python3-pyatspi, python3-pycparser, python3-pycurl, python3-pydbus, python3-pygments, python3-pymongo, python3-pymongo-gridfs, python3-pyOpenSSL, python3-pyparsing, python3-pyparted, python3-pyqt5-sip, python3-pyqt5-sip, python3-pysocks, python3-pysocks, python3-pytoml, python3-pytz, python3-pyudev, python3-pyusb, python3-pywbem, python3-pyxattr, python3-pyxdg, python3-pyyaml, python3-qrcode, python3-qrcode-core, python3-qt5, python3-qt5-base, python3-qt5-devel, python3-reportlab, python3-requests, python3-requests-file, python3-requests-ftp, python3-requests-oauthlib, python3-rhn-client-check, python3-rhn-client-tools, python3-rhn-setup, python3-rhn-setup-gnome, python3-rhn-virtualization-common, python3-rhn-virtualization-host, python3-rhncfg, python3-rhncfg-actions, python3-rhncfg-client, python3-rhncfg-management, python3-rhnlib, python3-rhnpush, python3-rpm, python3-rrdtool, python3-rtslib, python3-s3transfer, python3-samba, python3-samba-test, python3-schedutils, python3-scipy, python3-scons, python3-semantic_version, python3-setools, python3-setuptools_scm, python3-simpleline, python3-sip, python3-sip-devel, python3-six, python3-slip-dbus, python3-snowballstemmer, python3-spacewalk-abrt, python3-spacewalk-backend-libs, python3-spacewalk-koan, python3-spacewalk-oscap, python3-spacewalk-usix, python3-speechd, python3-sphinx, python3-sphinx_rtd_theme, python3-sphinx-theme-alabaster, python3-sphinxcontrib-websupport, python3-sqlalchemy, python3-sss, python3-sss-murmur, python3-sssdconfig, python3-subscription-manager-rhsm, python3-suds, python3-sure, python3-syshy, python3-syspurpose, python3-systemd, python3-talloc, python3-tbb, python3-tevent, python3-tevent, python3-unbound, python3-unittest2, python3-uritemplate, python3-urllib3, python3-urwid, python3-varlink, python3-virtualenv, python3-webencodings, python3-werkzeug, python3-whoosh, python3-yubico, python36, python36-debug, python36-devel, python36-rpm-macros
Q
|
qemu-kvm-block-curl, qemu-kvm-block-gluster, qemu-kvm-block-iscsi, qemu-kvm-block-rbd, qemu-kvm-block-ssh, qemu-kvm-core, qemu-kvm-tests, qgpgme, qhull-devel, qt5-devel, qt5-srpm-macros, quota-rpc
R
|
re2c, readonly-root, redhat-backgrounds, redhat-logos-httpd, redhat-logos-ipa, redhat-release, redis, redis-devel, redis-doc, resteasy, resteasy-javadoc, rhel-system-roles, rhn-custom-info, rhn-virtualization-host, rhncfg, rhncfg-actions, rhncfg-client, rhncfg-management, rhnpush, rls, rpcgen, rpcsvc-proto-devel, rpm-mpi-hooks, rpm-ostree, rpm-ostree-libs, rpm-plugin-ima, rpm-plugin-prioreset, rpm-plugin-selinux, rpm-plugin-syslog, rsync-daemon, rubygem-bson, rubygem-bson-doc, rubygem-did_you_mean, rubygem-diff-lcs, rubygem-mongo, rubygem-mongo-doc, rubygem-mysql2, rubygem-mysql2-doc, rubygem-net-telnet, rubygem-openssl, rubygem-pg, rubygem-pg-doc, rubygem-power_assert, rubygem-rspec, rubygem-rspec-core, rubygem-rspec-expectations, rubygem-rspec-mocks, rubygem-rspec-support, rubygem-test-unit, rubygem-xmlrpc, runc, rust, rust-analysis, rust-debugger-common, rust-doc, rust-gdb, rust-lldb, rust-src, rust-srpm-macros, rust-std-static, rust-toolset, rustfmt
S
|
samyak-odia-fonts, sane-backends-daemon, sblim-sfcCommon, scala, scala-apidoc, scala-swing, scotch, scotch-devel, SDL2, SDL2-devel, SDL2-static, sendmail-milter-devel, sil-scheherazade-fonts, sisu-mojos, sisu-mojos-javadoc, skopeo, slf4j-ext, slf4j-jcl, slf4j-jdk14, slf4j-log4j12, slf4j-sources, slirp4netns, smc-tools, socket_wrapper, sombok, sombok-devel, sos-audit, spacewalk-abrt, spacewalk-client-cert, spacewalk-koan, spacewalk-oscap, spacewalk-remote-utils, spacewalk-usix, sparsehash-devel, spec-version-maven-plugin, spec-version-maven-plugin-javadoc, speech-dispatcher-espeak-ng, speexdsp, speexdsp-devel, spice-gtk, spirv-tools-libs, splix, sqlite-libs, sscg, sssd-nfs-idmap, stratis-cli, stratisd, SuperLU, SuperLU-devel, supermin-devel, swig-gdb, switcheroo-control, syslinux-extlinux-nonlinux, syslinux-nonlinux, systemd-container, systemd-journal-remote, systemd-pam, systemd-tests, systemd-udev, systemtap-exporter, systemtap-runtime-python3
T
|
target-restore, tcl-doc, texlive-anyfontsize, texlive-awesomebox, texlive-babel-english, texlive-breqn, texlive-capt-of, texlive-classpack, texlive-ctablestack, texlive-dvisvgm, texlive-environ, texlive-eqparbox, texlive-finstrut, texlive-fontawesome, texlive-fonts-tlwg, texlive-graphics-cfg, texlive-graphics-def, texlive-import, texlive-knuth-lib, texlive-knuth-local, texlive-latex2man, texlive-lib, texlive-lib-devel, texlive-linegoal, texlive-lineno, texlive-ltabptch, texlive-lualibs, texlive-luatex85, texlive-manfnt-font, texlive-mathtools, texlive-mflogo-font, texlive-needspace, texlive-tabu, texlive-tabulary, texlive-tex-ini-files, texlive-texlive-common-doc, texlive-texlive-docindex, texlive-texlive-en, texlive-texlive-msg-translations, texlive-texlive-scripts, texlive-trimspaces, texlive-unicode-data, texlive-updmap-map, texlive-upquote, texlive-wasy2-ps, texlive-xmltexconfig, thai-scalable-laksaman-fonts, timedatex, tinycdb, tinycdb-devel, tinyxml2, tinyxml2-devel, tlog, torque, torque-devel, torque-libs, tpm2-abrmd-selinux, tracker-miners, trousers-lib, tuned-profiles-nfv-host-bin, twolame-libs
U
|
uglify-js, uid_wrapper, usbguard-dbus, userspace-rcu, userspace-rcu-devel, utf8proc, uthash-devel, util-linux-user
V
|
varnish, varnish-devel, varnish-docs, varnish-modules, vulkan-headers, vulkan-loader, vulkan-loader-devel
W
|
WALinuxAgent, web-assets-devel, web-assets-filesystem, webkit2gtk3, webkit2gtk3-devel, webkit2gtk3-jsc, webkit2gtk3-jsc-devel, webkit2gtk3-plugin-process-gtk2, wireshark-cli, woff2
X
|
Xaw3d, Xaw3d-devel, xmlstreambuffer, xmlstreambuffer-javadoc, xmvn-api, xmvn-bisect, xmvn-connector-aether, xmvn-connector-ivy, xmvn-core, xmvn-install, xmvn-minimal, xmvn-mojo, xmvn-parent-pom, xmvn-resolve, xmvn-subst, xmvn-tools-pom, xorg-x11-drv-wacom-serial-support, xterm-resize
Y
|
yasm
下表列出了被替换、重命名、合并或者分割的软件包:
原始软件包
|
新软件包
|
修改自
|
备注
|
389-ds-base
389-ds-base (389-ds:1.4), 389-ds-base-legacy-tools (389-ds:1.4)
RHEL 8.0
RHEL 7 中的
389-ds-base
软件包包含用于操作目录服务器的 Perl 工具。在 RHEL 8 中,在
389-ds-base
软件包中分发了一组新的用 Python 编写的工具。传统的 Perl Tools 已提取到一个单独的软件包
389-ds-base-legacy-tools
中,但已弃用且不推荐使用。
AAVMF
edk2-aarch64
RHEL 8.0
abrt-addon-python
python3-abrt-addon
RHEL 8.0
abrt-python
python3-abrt
RHEL 8.0
abrt-python-doc
python3-abrt-doc
RHEL 8.0
adcli
adcli, adcli-doc
RHEL 8.0
alsa-utils
alsa-utils, alsa-utils-alsabat
RHEL 8.0
anaconda-core
anaconda-core, anaconda-install-env-deps
RHEL 8.0
apache-commons-collections-testframework-javadoc
apache-commons-collections-javadoc
RHEL 8.0
apr-util
apr-util, apr-util-bdb, apr-util-openssl
RHEL 8.0
apr-util-bdb
和
apr-util-openssl
软件包已从
apr-util
中分离。这些软件包分别提供了支持
apr_dbm.h
接口中 Berkeley DB 和
apr_crypto.h
接口中 OpenSSL 的可加载模块。
apr-util-bdb
和
apr-util-openssl
软件包都有一个来自
apr-util
的弱依赖项。因此,使用这些 API 的软件包必须在没有任何更改的情况下工作。
aqute-bndlib-javadoc
aqute-bnd-javadoc
RHEL 8.0
arptables
iptables-arptables
RHEL 8.0
authconfig
authselect-compat
RHEL 8.0
authselect
工具改进了 RHEL 8 主机上用户身份验证的配置,它是唯一支持的配置操作系统 PAM 堆栈的方法。要简化从
authconfig
的迁移,
authselect-compat
软件包提供了相应的兼容命令。
bacula-director
bacula-director、bacula-logwatch
RHEL 8.0
bind-libs-lite
bind-export-libs, bind-libs-lite
RHEL 8.0
bind-libs-lite
库被移动到
bind-export-libs
软件包中,被
dhcp-client
和
dhcp-server
软件包使用。
bind-libs-lite
库现在包含
bind-libs
的子集,它依赖于
bind-libs-lite 软件包
。
dhcp-server
和
dhcp-client
现在依赖于
bind-export-libs
软件包。
bind-lite-devel
bind-export-devel, bind-lite-devel
RHEL 8.0
bind-export-devel
软件包提供了
bind-lite-devel
软件包的替代。必须从
isc-export-config.sh
输出中获取用于链接导出库的 cflags 和库。必须使用
isc-export-config.sh
参数链接
bind-export-libs
库。
bluez
bluez, bluez-obexd
RHEL 8.0
boost-devel
boost-devel, boost-python3-devel
RHEL 8.0
boost-mpich-python
boost-mpich-python3
RHEL 8.0
boost-openmpi-python
boost-openmpi-python3
RHEL 8.0
boost-python
boost-python3
RHEL 8.0
brltty-at-spi
brltty-at-spi2
RHEL 8.0
cjkuni-uming-fonts
google-noto-serif-cjk-ttc-fonts
RHEL 8.0
cockpit-docker
cockpit-podman (container-tools:1.0)
RHEL 8.0
compat-libgfortran-41
compat-libgfortran-48
RHEL 8.0
compat-locales-sap
compat-locales-sap, compat-locales-sap-common
RHEL 8.1
compat-locales-sap, compat-locales-sap-common
compat-locales-sap
RHEL 8.0
control-center
gnome-control-center
RHEL 8.0
control-center-filesystem
gnome-control-center-filesystem
RHEL 8.0
coolkey
opensc
RHEL 8.0
coreutils
coreutils, coreutils-common
RHEL 8.0
createrepo
createrepo_c, python3-createrepo_c
RHEL 8.0
Cython
python2-Cython, python3-Cython
RHEL 8.0
dbus, dbus-common, dbus-daemon, dbus-tools
RHEL 8.0
dbus-python
python3-dbus
RHEL 8.0
deltarpm
RHEL 8.0
dhclient
dhcp-client
RHEL 8.0
dhcp-relay, dhcp-server
RHEL 8.0
dnf-utils
yum-utils
RHEL 8.1
dnssec-trigger
DNSSEC-trigger, dnssec-trigger-panel
RHEL 8.0
dracut
dracut, dracut-live, dracut-squash
RHEL 8.0
dstat
pcp-system-tools
RHEL 8.0
easymock2
easymock
RHEL 8.0
easymock2-javadoc
easymock-javadoc
RHEL 8.0
ebtables
iptables-ebtables
RHEL 8.0
edac-utils
rasdaemon
RHEL 8.0
emacs-common, emacs-el
emacs-common
RHEL 8.0
emacs-libidn, libidn
libidn
RHEL 8.0
emacs-mercurial, emacs-mercurial-el, mercurial
mercurial
RHEL 8.0
espeak
espeak-ng
RHEL 8.0
为语音合成提供后端的
espeak
软件包已被积极开发的
espeak-ng
软件包所替代。
espeak-ng
与
espeak
基本兼容。
evolution-data-server
evolution-data-server, evolution-data-server-ui
RHEL 8.10
evolution-data-server-devel
evolution-data-server-devel, evolution-data-server-ui-devel
RHEL 8.10
firstboot
gnome-initial-setup
RHEL 8.0
foomatic-filters
cups-filters
RHEL 8.0
freerdp
freerdp, libwinpr
RHEL 8.0
freerdp-devel
freerdp-devel, libwinpr-devel
RHEL 8.0
freerdp-libs, freerdp-plugins
freerdp-libs
RHEL 8.0
fuse, fuse-common
RHEL 8.0
gdb, gdb-headless
RHEL 8.0
gdbm, gdbm-libs
RHEL 8.0
gdk-pixbuf2
gdk-pixbuf2, gdk-pixbuf2-modules, gdk-pixbuf2-xlib
RHEL 8.0
gdk-pixbuf2-devel
gdk-pixbuf2-devel, gdk-pixbuf2-xlib-devel
RHEL 8.0
gdm, pulseaudio-gdm-hooks
RHEL 8.0
ghostscript
ghostscript, libgs, libijs
RHEL 8.0
ghostscript-devel
libgs-devel
RHEL 8.0
ghostscript-fonts
urw-base35-fonts
RHEL 8.0
git, git-core, git-core-doc, git-subtree
RHEL 8.0
glassfish-el-api-javadoc
glassfish-el-javadoc
RHEL 8.0
glassfish-fastinfoset
glassfish-fastinfoset (pki-deps:10.6), glassfish-fastinfoset-javadoc (pki-deps:10.6)
RHEL 8.0
glassfish-jaxb
glassfish-jaxb-bom, glassfish-jaxb-bom-ext, glassfish-jaxb-codemodel, glassfish-jaxb-codemodel-annotation-compiler, glassfish-jaxb-codemodel-parent, glassfish-jaxb-core, glassfish-jaxb-external-parent, glassfish-jaxb-parent, glassfish-jaxb-rngom, glassfish-jaxb-runtime, glassfish-jaxb-runtime-parent, glassfish-jaxb-txw-parent, glassfish-jaxb-txw2
RHEL 8.0
glassfish-jaxb-api
glassfish-jaxb-api (pki-deps:10.6), glassfish-jaxb-api-javadoc (pki-deps:10.6)
RHEL 8.0
glibc
glibc, glibc-all-langpacks, glibc-locale-source, glibc-minimal-langpack, libnsl, libxcrypt, nss_db
RHEL 8.0
NIS 的非核心 NSS 模块和其他数据源已被分成单独的软件包(
nss_db
、
libnsl
)。语言支持已被分成语言包支持(
glibc-all-langpacks
、
glibc-minimal-langpack
、
glibc-locale-source
和
glibc-langpack-*
模块)。
libxcrypt
软件包是不同的。
glibc-common
glibc-common, rpcgen
RHEL 8.0
glibc-devel
compat-libpthread-nonshared, glibc-devel, libnsl2-devel, libxcrypt-devel
RHEL 8.0
glibc-headers
glibc-headers, rpcsvc-proto-devel
RHEL 8.0
glibc-static
glibc-static, libxcrypt-static
RHEL 8.0
gmp, gmp-c++
RHEL 8.0
gnome-backgrounds
gnome-backgrounds, gnome-backgrounds-extras
RHEL 8.0
gnome-session, gnome-session-custom-session
gnome-session
RHEL 8.0
gnome-system-log
gnome-logs
RHEL 8.0
gnome-tweak-tool
gnome-tweaks
RHEL 8.0
golang
go-srpm-macros, golang
RHEL 8.0
google-noto-sans-cjk-fonts
google-noto-sans-cjk-ttc-fonts
RHEL 8.0
google-noto-sans-japanese-fonts
google-noto-sans-cjk-jp-fonts
RHEL 8.0
grub2-common
efi-filesystem, grub2-common
RHEL 8.0
grub2-tools
grub2-tools, grub2-tools-efi
RHEL 8.0
gstreamer1-plugins-bad-free-gtk
gstreamer1-plugins-good-gtk
RHEL 8.0
guava
guava20
RHEL 8.0
guava-javadoc
guava20-javadoc
RHEL 8.0
gutenprint
gutenprint, gutenprint-libs, gutenprint-libs-ui
RHEL 8.0
hawkey, libhif
libdnf
RHEL 8.0
hmaccalc
libkcapi-hmaccalc
RHEL 8.0
hpijs
hplip
RHEL 8.0
i2c-tools
i2c-tools, i2c-tools-perl
RHEL 8.0
ibus-chewing
ibus-libzhuyin
RHEL 8.0
infiniband-diags, libibmad
infiniband-diags
RHEL 8.0
infiniband-diags-devel, libibmad-devel
infiniband-diags-devel
RHEL 8.0
infiniband-diags-devel-static, libibmad-static
infiniband-diags-devel-static
RHEL 8.0
initscripts
initscripts、netconsole-service、network-scripts、readonly-root
RHEL 8.0
ipmitool
ipmievd, ipmitool
RHEL 8.0
iproute
iproute, iproute-tc
RHEL 8.0
iptables
iptables, iptables-libs
RHEL 8.0
ipxe-bootimgs
ipxe-bootimgs-x86
RHEL 8.6
iscsi-initiator-utils
iscsi-initiator-utils, python3-iscsi-initiator-utils
RHEL 8.0
istack-commons
istack-commons、istack-commons-runtime、istack-commons-tools
RHEL 8.0
ivtv-firmware, linux-firmware
linux-firmware
RHEL 8.0
iwl7260-firmware, iwl7265-firmware
iwl7260-firmware
RHEL 8.0
jabberpy
python3-jabberpy
RHEL 8.0
Jackson
jackson-annotations (pki-deps:10.6), jackson-core (pki-deps:10.6), jackson-databind (pki-deps:10.6), jackson-jaxrs-json-provider (pki-deps:10.6), jackson-jaxrs-providers (pki-deps:10.6), jackson-jaxrs-providers-datatypes (pki-deps:10.6), jackson-module-jaxb-annotations (pki-deps-deps:10.6)
RHEL 8.0
jackson-javadoc
jackson-annotations-javadoc (pki-deps:10.6), jackson-core-javadoc (pki-deps:10.6), jackson-databind-javadoc (pki-deps:10.6), jackson-jaxrs-providers-javadoc (pki-deps:10.6), jackson-module-jaxb-annotations-javadoc (pki-deps:10.6)
RHEL 8.0
javapackages-tools
ivy-local, javapackages-filesystem, javapackages-tools
RHEL 8.0
jboss-annotations-1.1-api
jboss-annotations-1.2-api
RHEL 8.0
jboss-interceptors-1.1-api
jboss-interceptors-1.2-api
RHEL 8.0
jboss-interceptors-1.1-api-javadoc
jboss-interceptors-1.2-api-javadoc
RHEL 8.0
joda-time
Java-1.8.0-openjdk-headless
RHEL 8.0
joda-time-javadoc
java-1.8.0-openjdk-javadoc
RHEL 8.0
kernel
kernel, kernel-core, kernel-modules, kernel-modules-extra
RHEL 8.0
kernel-debug
kernel-debug、kernel-debug-core、kernel-debug-modules、kernel-debug-modules-extra
RHEL 8.0
kernel-rt
kernel-rt, kernel-rt-core, kernel-rt-modules, kernel-rt-modules-extra
RHEL 8.0
kernel-rt-debug
kernel-rt-debug、kernel-rt-debug-core、kernel-rt-debug-modules、kernel-rt-debug-modules-extra
RHEL 8.0
kernel-tools, qemu-kvm-tools
kernel-tools
RHEL 8.0
kexec-tools, kexec-tools-eppic
kexec-tools
RHEL 8.0
kexec-tools-anaconda-addon
kdump-anaconda-addon
RHEL 8.0
koan, python3-koan
RHEL 8.0
langtable-python
python3-langtable
RHEL 8.0
ldns, ldns-utils
RHEL 8.0
leapp-upgrade-el7toel8
leapp-upgrade-el8toel9
RHEL 8.6
leapp-upgrade-el7toel8-deps
leapp-upgrade-el8toel9-deps
RHEL 8.6
libgnome-keyring
libsecret
RHEL 8.0
libgudev1
libgudev
RHEL 8.0
libgudev1-devel
libgudev-devel
RHEL 8.0
libinput
libinput, libinput-utils
RHEL 8.0
liblouis-python
python3-louis
RHEL 8.0
libmemcached
libmemcached, libmemcached-libs
RHEL 8.0
libmodulemd
libmodulemd, libmodulemd1
RHEL 8.0
libmusicbrainz
libmusicbrainz5
RHEL 8.0
libmusicbrainz-devel
libmusicbrainz5-devel
RHEL 8.0
libnice
libnice, libnice-gstreamer1
RHEL 8.0
libpeas-loader-python
libpeas-loader-python3
RHEL 8.0
libpfm-python
python3-libpfm
RHEL 8.0
libproxy-mozjs
libproxy-webkitgtk4
RHEL 8.0
libproxy-python
python3-libproxy
RHEL 8.0
libproxy-webkitgtk3
libproxy-webkitgtk4
RHEL 8.0
librabbitmq-examples
librabbitmq-tools
RHEL 8.0
librados2-devel
librados-devel
RHEL 8.0
librbd1-devel
librbd-devel
RHEL 8.0
libreoffice-base
libreoffice-base, libreoffice-help-en
RHEL 8.0
libreoffice-calc
libreoffice-calc, libreoffice-help-en
RHEL 8.0
libreoffice-core
libreoffice-core, libreoffice-help-en
RHEL 8.0
libreoffice-draw
libreoffice-draw、libreoffice-help-en
RHEL 8.0
libreoffice-gtk2
libreoffice-gtk3
RHEL 8.3
libreoffice-impress
libreoffice-help-en, libreoffice-impress
RHEL 8.0
libreoffice-math
libreoffice-help-en, libreoffice-math
RHEL 8.0
libreoffice-writer
libreoffice-help-en, libreoffice-writer
RHEL 8.0
libreport-python
python3-libreport
RHEL 8.0
libselinux-python
python3-libselinux
RHEL 8.0
libselinux-python3
python3-libselinux
RHEL 8.0
libsemanage-python
python3-libsemanage
RHEL 8.0
libssh2
libssh, libssh2
RHEL 8.0
因为存在对
qemu-kvm
的依赖关系,
libssh2
软件包在 RHEL 8.0 中临时可用。从 RHEL 8.1 开始,QEMU 模拟器使用
libssh
库,并且删除了
libssh2
。
libstoragemgmt-python
python3-libstoragemgmt
RHEL 8.0
libstoragemgmt-python-clibs
python3-libstoragemgmt-clibs
RHEL 8.0
libuser-python
python3-libuser
RHEL 8.0
libvirt-debuginfo
libvirt-admin-debuginfo (ADVANCED-VIRT:latest), libvirt-client-debuginfo (ADVANCED-VIRT:latest), libvirt-daemon-debuginfo (ADVANCED-VIRT:latest), libvirt-daemon-driver-interface-debuginfo (ADVANCED-VIRT:latest), libvirt-daemon-driver-network-debuginfo (ADVANCED-VIRT:latest), libvirt-daemon-driver-nodedev-debuginfo (ADVANCED-VIRT:latest), libvirt-daemon-driver-nwfilter-debuginfo (ADVANCED-VIRT:latest), libvirt-daemon-driver-qemu-debuginfo (ADVANCED-VIRT:latest), libvirt-daemon-driver-secret-debuginfo (ADVANCED-VIRT:latest), libvirt-daemon-driver-storage-core-debuginfo (ADVANCED-VIRT:latest), libvirt-daemon-driver-storage-gluster-debuginfo (ADVANCED-VIRT:latest), libvirt-daemon-driver-storage-iscsi-debuginfo (ADVANCED-VIRT:latest), libvirt-daemon-driver-storage-iscsi-direct-debuginfo (ADVANCED-VIRT:latest), libvirt-daemon-driver-storage-logical-debuginfo (ADVANCED-VIRT:latest), libvirt-daemon-driver-storage-mpath-debuginfo (ADVANCED-VIRT:latest), libvirt-daemon-driver-storage-rbd-debuginfo (ADVANCED-VIRT:latest), libvirt-daemon-driver-storage-scsi-debuginfo (ADVANCED-VIRT:latest), libvirt-dbus-debuginfo-1.3.0-2.module (ADVANCED-VIRT:latest), libvirt-dbus-debugsource-1.3.0-2.module (ADVANCED-VIRT:latest), libvirt-debuginfo-6.0.0-25.5.module (ADVANCED-VIRT:latest), libvirt-debugsource-6.0.0-25.5.module (ADVANCED-VIRT:latest), libvirt-libs-debuginfo-6.0.0-25.5.module (ADVANCED-VIRT:latest), libvirt-lock-sanlock-debuginfo (ADVANCED-VIRT:latest), libvirt-nss-debuginfo (ADVANCED-VIRT:latest), libvirt-python-debugsource (ADVANCED-VIRT:latest)
RHEL 8.0
libvirt-python
python3-libvirt
RHEL 8.0
libX11
libX11, libX11-xcb
RHEL 8.0
libxml2-python
python3-libxml2
RHEL 8.0
llvm-private
RHEL 8.0
llvm-private-devel
llvm-devel
RHEL 8.0
log4j
log4j12
RHEL 8.0
log4j-javadoc
log4j12-javadoc
RHEL 8.0
lohit-oriya-fonts
lohit-odia-fonts
RHEL 8.0
lohit-punjabi-fonts
lohit-gurmukhi-fonts
RHEL 8.0
lua, lua-libs
RHEL 8.0
lvm2-python-boom
boom-boot, boom-boot-conf, boom-boot-grub2, python3-boom
RHEL 8.0
lz4, lz4-libs
RHEL 8.0
make, make-devel
RHEL 8.0
mariadb-devel
mariadb-connector-c-devel, mariadb-devel
RHEL 8.0
mariadb-libs
mariadb-connector-c
RHEL 8.0
mariadb-server
mariadb-server, mariadb-server-utils
RHEL 8.0
maven
maven, maven-lib
RHEL 8.0
maven-downloader
maven-artifact-transfer
RHEL 8.0
maven-downloader-javadoc
maven-artifact-transfer-javadoc
RHEL 8.0
maven-doxia-tools
maven-doxia-sitetools
RHEL 8.0
maven-doxia-tools-javadoc
maven-doxia-sitetools-javadoc
RHEL 8.0
maven-local
javapackages-local, maven-local
RHEL 8.0
maven-wagon
maven-wagon, maven-wagon-file, maven-wagon-ftp, maven-wagon-http, maven-wagon-http-lightweight, maven-wagon-http-shared, maven-wagon-provider-api, maven-wagon-providers
RHEL 8.0
mesa-libEGL-devel
mesa-khr-devel, mesa-libEGL-devel
RHEL 8.0
mesa-libGLES
libglvnd-gles
RHEL 8.2
mesa-libGLES-devel
libglvnd-gles-devel
RHEL 8.2
mesa-libwayland-egl
libwayland-egl
RHEL 8.0
mesa-libwayland-egl-devel, wayland-devel
wayland-devel
RHEL 8.0
mod_auth_kerb
mod_auth_gssapi
RHEL 8.0
mod_nss
mod_ssl
RHEL 8.0
mod_wsgi
python3-mod_wsgi
RHEL 8.0
Apache HTTP 服务器的
mod_wsgi
模块已更新为 Python 3。WSGI 应用程序现在只支持 Python 3,且必须从 Python 2 中迁移。
mpich-3.0, mpich-3.2
mpich
RHEL 8.0
mpich-3.0-devel, mpich-3.2-devel
mpich-devel
RHEL 8.0
mpitests-mpich, mpitests-mpich32
mpitests-mpich
RHEL 8.0
mpitests-mvapich2, mpitests-mvapich222, mpitests-mvapich23
mpitests-mvapich2
RHEL 8.0
mpitests-mvapich2-psm, mpitests-mvapich222-psm, mpitests-mvapich222-psm2, mpitests-mvapich23-psm, mpitests-mvapich23-psm2
mpitests-mvapich2-psm2
RHEL 8.0
mpitests-openmpi, mpitests-openmpi3
mpitests-openmpi
RHEL 8.0
mvapich2-2.0、mvapich2-2.2、mvapich23
mvapich2
RHEL 8.0
mvapich2-2.0-psm, mvapich2-2.2-psm, mvapich2-2.2-psm2, mvapich23-psm, mvapich23-psm2
mvapich2-psm2
RHEL 8.0
mysql-connector-java
mariadb-java-client
RHEL 8.0
mysql-connector-odbc
mariadb-connector-odbc
RHEL 8.0
MySQL-python
python2-PyMySQL, python3-PyMySQL
RHEL 8.0
nbdkit-plugin-python2
nbdkit-plugin-python3
RHEL 8.0
ncurses-libs
ncurses-c++-libs, ncurses-compat-libs, ncurses-libs
RHEL 8.0
network-manager-applet
libnma,network-manager-applet
RHEL 8.3
newt-python
python3-newt
RHEL 8.0
nextgen-yum4
RHEL 8.0
nhn-nanum-gothic-fonts
google-noto-sans-cjk-ttc-fonts
RHEL 8.0
chrony, ntpstat
RHEL 8.0
详情请参阅
使用 Chrony 套件配置 NTP
。
ntpdate
chrony
RHEL 8.0
numpy
python2-numpy, python3-numpy
RHEL 8.0
numpy-f2py
python2-numpy-f2py, python3-numpy-f2py
RHEL 8.0
objectweb-asm4
objectweb-asm
RHEL 8.0
objectweb-asm4-javadoc
objectweb-asm-javadoc
RHEL 8.0
opencv
opencv, opencv-contrib, opencv-core
RHEL 8.0
OpenIPMI
OpenIPMI、OpenIPMI-lanserv
RHEL 8.0
OpenIPMI-python
python3-openipmi
RHEL 8.0
openjpeg
openjpeg2
RHEL 8.0
openjpeg-devel
openjpeg2-devel
RHEL 8.0
openmpi, openmpi3
openmpi
RHEL 8.0
openmpi-devel, openmpi3-devel
openmpi-devel
RHEL 8.0
openscap, openscap-extra-probes
openscap
RHEL 8.0
openscap-python
openscap-python3
RHEL 8.0
openwsman-python
openwsman-python3
RHEL 8.0
oprofile
RHEL 8.0
osa-common
python3-osa-common
RHEL 8.0
osad, python3-osad
RHEL 8.0
ostree
ostree, ostree-libs
RHEL 8.0
ostree-fuse
ostree
RHEL 8.0
edk2-ovmf
RHEL 8.0
p11-kit-doc
p11-kit-devel
RHEL 8.0
pacemaker
pacemaker, python3-pacemaker
RHEL 8.9
pacemaker-cli
pacemaker-cli, pacemaker-schemas
RHEL 8.0
PackageKit, PackageKit-yum
PackageKit
RHEL 8.0
pam_krb5
RHEL 8.0
有关从
pam_krb5
迁移到
sssd
的详情,请参考上游 SSSD 文档中的
从 pam_krb5 迁移到 sssd
。
pam_pkcs11
RHEL 8.0
智能卡验证现在只通过 SSSD 功能支持。
papi, papi-libs
RHEL 8.0
parfait
parfait, parfait-examples, parfait-javadoc, pcp-parfait-agent
RHEL 8.0
pcp-pmda-kvm
RHEL 8.0
pcp-pmda-papi
pcp-pmda-perfevent
RHEL 8.1
pcp-pmda-prometheus
pcp-pmda-openmetrics
RHEL 8.2
pcp-pmda-vmware
pcp-pmda-openmetrics
RHEL 8.6
pcp-webapi
RHEL 8.2
pcp-webapp-blinkenlights
grafana-pcp
RHEL 8.2
pcp-webapp-grafana
grafana-pcp
RHEL 8.2
pcp-webapp-graphite
grafana-pcp
RHEL 8.2
pcp-webapp-vector
grafana-pcp
RHEL 8.2
pcp-webjs
grafana-pcp
RHEL 8.2
pcre, pcre-cpp, pcre-utf16, pcre-utf32
RHEL 8.0
带有 C++ API 的 PCRE
libpcrecpp.so.0
库已从
pcre
软件包移到
pcre-cpp
软件包。带有 UTF-16 支持的
libpcre16.so.0
程序库已经从
pcre
软件包移动到
pcre-utf16
软件包中,而且支持 UTF-32 的
libpcre32.so.0
库已被转移到
pcre-utf32
软件包中。
perl, perl-Attribute-Handlers, perl-B-Debug, perl-bignum, perl-Devel-Peek, perl-Devel-PPPort, perl-Devel-SelfStubber, perl-Errno, perl-ExtUtils-Command, perl-ExtUtils-Miniperl, perl-Filter-Simple, perl-interpreter, perl-IO, perl-IPC-SysV, perl-libs, perl-Math-BigInt, perl-Math-BigInt-FastCalc, perl-Math-BigRat, perl-Math-Complex, perl-Memoize, perl-MIME-Base64, perl-Net-Ping, perl-open, perl-perlfaq, perl-PerlIO-via-QuotedPrint, perl-Pod-Html, perl-SelfLoader, perl-Term-ANSIColor, perl-Term-Cap, perl-Test, perl-Text-Balanced, perl-Unicode-Collate, perl-Unicode-Normalize
RHEL 8.0
在 RHEL 8 中,提供 Perl 解释程序的软件包已从
perl
重命名为
perl-interpreter
,而
perl
软件包现在只是一个 meta-package。基本语言支持模块已移到
perl-libs
中,以前捆绑在
perl
中的许多其他模块现在作为单独的软件包分发。
perl-core
RHEL 8.0
perl-gettext
perl-Locale-gettext
RHEL 8.0
perl-libintl
perl-libintl-perl
RHEL 8.0
pexpect
python3-pexpect
RHEL 8.0
PHP-common
php-common, php-gmp, php-json, php-pecl-zip, php-xml
RHEL 8.0
php-mysql
php-mysqlnd
RHEL 8.0
使用
libmysqlclient
程序库的
php-mysql
软件包已被替换为
php-mysqlnd
软件包,该软件包使用 MySQL Native 驱动。
pkgconfig
pkgconf-pkg-config
RHEL 8.0
pki-acme (pki-core:10.6)
idm-pki-acme (pki-core:10.6)
RHEL 8.7
pki-base
pki-base (pki-core:10.6), python3-pki (pki-core:10.6)
RHEL 8.0
pki-base (pki-core:10.6)
idm-pki-base (pki-core:10.6)
RHEL 8.7
pki-base-java (pki-core:10.6)
idm-pki-base-java (pki-core:10.6)
RHEL 8.7
pki-ca (pki-core:10.6)
idm-pki-ca (pki-core:10.6)
RHEL 8.7
pki-kra (pki-core:10.6)
idm-pki-kra (pki-core:10.6)
RHEL 8.7
pki-server (pki-core:10.6)
idm-pki-server (pki-core:10.6)
RHEL 8.7
pki-servlet-container
pki-servlet-engine
RHEL 8.1
pki-servlet-engine (pki-deps:10.6)
tomcat
RHEL 8.10
pki-symkey (pki-core:10.6)
idm-pki-symkey (pki-core:10.6)
RHEL 8.7
pki-tools (pki-core:10.6)
idm-pki-tools (pki-core:10.6)
RHEL 8.7
plexus-cdc
plexus-containers-component-metadata
RHEL 8.0
plexus-cdc-javadoc
plexus-containers-javadoc
RHEL 8.0
plexus-interactive
plexus-interactivity, plexus-interactivity-api, plexus-interactivity-jline
RHEL 8.0
policycoreutils-gui
policycoreutils-dbus, policycoreutils-gui
RHEL 8.0
policycoreutils-python
policycoreutils-python-utils, python3-policycoreutils
RHEL 8.0
polkit
polkit, polkit-libs
RHEL 8.0
postfix
postfix,postfix-mysql
RHEL 8.0
postfix
postfix,postfix-ldap,postfix-pcre
RHEL 8.2
postgresql-devel
libpq-devel
RHEL 8.0
postgresql-libs
libpq
RHEL 8.0
postgresql-plpython
postgresql-plpython3
RHEL 8.0
prelink
execstack
RHEL 8.0
RHEL 8.0
pycairo
python2-Cairo, python3-Cairo
RHEL 8.0
pycairo-devel
python2-cairo-devel
RHEL 8.0
PyGreSQL
python3-psycopg2
RHEL 8.0
pykickstart
pykickstart, python3-kickstart
RHEL 8.0
pyldb
python3-ldb
RHEL 8.0
pyOpenSSL
python3-pyOpenSSL
RHEL 8.0
pyparsing
python3-pyparsing
RHEL 8.0
pyparted
python3-pyparted
RHEL 8.0
pyserial
python3-pyserial
RHEL 8.0
pytalloc
python3-talloc
RHEL 8.0
pytest
python2-pytest, python3-pytest
RHEL 8.0
python, python3
platform-python
RHEL 8.0
python-augeas
python3-augeas
RHEL 8.0
python-azure-sdk
python3-azure-sdk
RHEL 8.0
python-babel
python2-babel, python3-babel
RHEL 8.0
python-backports
python2-backports
RHEL 8.0
python-backports-ssl_match_hostname
python2-backports-ssl_match_hostname
RHEL 8.0
python-bcc
python3-bcc
RHEL 8.0
python-blivet
python3-blivet
RHEL 8.0
python-boto3
python3-boto3
RHEL 8.0
python-brlapi
python3-brlapi
RHEL 8.0
python-cffi
python3-cffi
RHEL 8.0
python-chardet
python2-chardet, python3-chardet
RHEL 8.0
python-clufter
python3-clufter
RHEL 8.0
python-configobj
python3-configobj
RHEL 8.0
python-configshell
python3-configshell
RHEL 8.0
python-coverage
platform-python-coverage, python2-coverage
RHEL 8.0
python-cpio
python3-cpio
RHEL 8.0
python-cups
python3-cups
RHEL 8.0
python-custodia
python3-custodia
RHEL 8.0
python-custodia-ipa
python3-custodia
RHEL 8.0
python-dateutil
python3-dateutil
RHEL 8.0
python-decorator
python3-decorator
RHEL 8.0
python-devel
python2-devel (python27:2.7)
RHEL 8.0
python-dmidecode
python3-dmidecode
RHEL 8.0
python-dns
python2-dns, python3-dns
RHEL 8.0
python-docs
python2-docs、python3-docs
RHEL 8.0
python-docutils
python2-docutils, python3-docutils
RHEL 8.0
python-enum34
python3-libs
RHEL 8.0
python-ethtool
python3-ethtool
RHEL 8.0
python-firewall
python3-firewall
RHEL 8.0
python-flask
python3-flask
RHEL 8.0
python-gevent
python3-gevent
RHEL 8.0
python-gobject
python3-gobject
RHEL 8.0
python-gobject-base
python3-gobject-base
RHEL 8.0
python-greenlet
python3-greenlet
RHEL 8.0
python-greenlet-devel
python3-greenlet-devel
RHEL 8.0
python-gssapi
python3-gssapi
RHEL 8.0
python-hivex
python3-hivex
RHEL 8.0
python-httplib2
python3-httplib2
RHEL 8.0
python-hwdata
python3-hwdata
RHEL 8.0
python-idna
python2-idna, python3-idna
RHEL 8.0
python-iniparse
python3-iniparse
RHEL 8.0
python-inotify
python3-inotify
RHEL 8.0
python-ipaddress
python2-ipAddress, python3-libs
RHEL 8.0
python-itsdangerous
python3-itsdangerous
RHEL 8.0
python-javapackages
python3-javapackages
RHEL 8.0
python-jinja2
python2-jinja2, python3-jinja2
RHEL 8.0
python-jsonpatch
python3-jsonpatch
RHEL 8.0
python-jsonpointer
python3-jsonpointer
RHEL 8.0
python-jwcrypto
python3-jwcrypto
RHEL 8.0
python-jwt
python3-jwt
RHEL 8.0
python-kdcproxy
python3-kdcproxy
RHEL 8.0
python-kerberos
python3-gssapi
RHEL 8.0
python-kmod
python3-kmod
RHEL 8.0
python-krbV
python3-gssapi
RHEL 8.0
python-ldap
python3-ldap
RHEL 8.0
python-libguestfs
python3-libguestfs
RHEL 8.0
python-libipa_hbac
python3-libipa_hbac
RHEL 8.0
python-librepo
python3-librepo
RHEL 8.0
python-libs
python2-libs, python3-libs
RHEL 8.0
python-libsss_nss_idmap
python3-libsss_nss_idmap
RHEL 8.0
python-linux-procfs
python3-linux-procfs
RHEL 8.0
python-lxml
python2-lxml, python3-lxml
RHEL 8.0
python-magic
python3-magic
RHEL 8.0
python-mako
python3-mako
RHEL 8.0
python-markupsafe
python2-markupsafe, python3-markupsafe
RHEL 8.0
python-meh
python3-meh
RHEL 8.0
python-meh-gui
python3-meh-gui
RHEL 8.0
python-netaddr
python3-netaddr
RHEL 8.0
python-netifaces
python3-netifaces
RHEL 8.0
python-nose
python2-nose, python3-nose
RHEL 8.0
python-nss
python3-nss (pki-deps:10.6)
RHEL 8.0
python-ntplib
python3-ntplib
RHEL 8.0
python-pcp
python3-pcp
RHEL 8.0
python-perf
python3-perf
RHEL 8.0
python-pillow
python3-pillow
RHEL 8.0
python-ply
python3-ply
RHEL 8.0
python-prettytable
python3-prettytable
RHEL 8.0
python-psycopg2
python2-psycopg2, python3-psycopg2
RHEL 8.0
python-psycopg2-debug
python2-psycopg2-debug
RHEL 8.0
python-pwquality
python3-pwquality
RHEL 8.0
python-py
python2-py, python3-py
RHEL 8.0
python-pycparser
python3-pycparser
RHEL 8.0
python-pycurl
python3-pycurl
RHEL 8.0
python-pygments
python2-pygments, python3-pygments
RHEL 8.0
python-pytoml
python3-pytoml
RHEL 8.0
python-pyudev
python3-pyudev
RHEL 8.0
python-qrcode
python3-qrcode
RHEL 8.0
python-qrcode-core
python3-qrcode-core
RHEL 8.0
python-reportlab
python3-reportlab
RHEL 8.0
python-requests
python2-requests, python3-requests
RHEL 8.0
python-rhsm
python3-subscription-manager-rhsm
RHEL 8.0
python-rhsm-certificates
subscription-manager-rhsm-certificates
RHEL 8.0
python-rtslib
python3-rtslib, target-restore
RHEL 8.0
python-s3transfer
python3-botocore, python3-jmespath, python3-s3transfer
RHEL 8.0
python-schedutils
python3-schedutils
RHEL 8.0
python-setuptools
python2-setuptools
RHEL 8.0
python-six
python2-six, python3-six
RHEL 8.0
python-slip
python3-slip
RHEL 8.0
python-slip-dbus
python3-slip-dbus
RHEL 8.0
python-sphinx
python-sphinx-locale, python3-sphinx
RHEL 8.0
python-sqlalchemy
python2-sqlalchemy, python3-sqlalchemy
RHEL 8.0
python-sss
python3-sss
RHEL 8.0
python-sss-murmur
python3-sss-murmur
RHEL 8.0
python-sssdconfig
python3-sssdconfig
RHEL 8.0
python-suds
python3-suds
RHEL 8.0
python-syspurpose
python3-syspurpose
RHEL 8.0
python-tdb
python3-tdb
RHEL 8.0
python-test
python2-test, python3-test
RHEL 8.0
python-tevent
python3-tevent
RHEL 8.0
python-tools
python2-tools
RHEL 8.0
python-urllib3
python2-urllib3, python3-urllib3
RHEL 8.0
python-urwid
python3-urwid
RHEL 8.0
python-virtualenv
python2-virtualenv, python3-virtualenv
RHEL 8.0
python-werkzeug
python3-werkzeug
RHEL 8.0
python-yubico
python3-yubico
RHEL 8.0
python2-blockdev
python3-blockdev
RHEL 8.0
python2-bytesize
python3-bytesize
RHEL 8.0
python2-createrepo_c
python3-createrepo_c
RHEL 8.0
python2-cryptography
python3-cryptography
RHEL 8.0
python2-dnf
python3-dnf
RHEL 8.0
python2-dnf-plugin-versionlock
python3-dnf-plugin-versionlock
RHEL 8.0
python2-dnf-plugins-core
python3-dnf-plugins-core
RHEL 8.0
python2-hawkey
python3-hawkey
RHEL 8.0
python2-ipaclient
python3-ipaclient
RHEL 8.0
python2-ipalib
python3-ipalib
RHEL 8.0
python2-ipaserver
python3-ipaserver
RHEL 8.0
python2-jmespath
python3-jmespath
RHEL 8.0
python2-keycloak-httpd-client-install
python3-keycloak-httpd-client-install
RHEL 8.0
python2-leapp
python3-leapp
RHEL 8.6
python2-libcomps
python3-libcomps
RHEL 8.0
python2-libdnf
python3-libdnf
RHEL 8.0
python2-oauthlib
python3-oauthlib
RHEL 8.0
python2-pyasn1
python3-pyasn1
RHEL 8.0
python2-pyasn1-modules
python3-pyasn1-modules
RHEL 8.0
python2-pyatspi
python3-pyatspi
RHEL 8.0
python2-requests-oauthlib
python3-requests-oauthlib
RHEL 8.0
python3-pki (pki-core:10.6)
python3-idm-pki (pki-core:10.6)
RHEL 8.7
python3-setuptools
platform-python-setuptools, python3-setuptools
RHEL 8.0
python2-pytz, python3-pytz
RHEL 8.0
pyusb
python3-pyusb
RHEL 8.0
pywbem
python3-pywbem
RHEL 8.0
pyxattr
python3-pyxattr
RHEL 8.0
PyYAML
python2-pyyaml, python3-pyyaml
RHEL 8.0
qatlib
qatlib, qatlib-service
RHEL 8.7
qemu-img-ma
qemu-img
RHEL 8.0
qemu-img-rhev
qemu-img (virt:rhel)
RHEL 8.0
qemu-kvm
qemu-kvm (virt:rhel), qemu-kvm-block-curl (virt:rhel), qemu-kvm-block-gluster (virt:rhel), qemu-kvm-block-iscsi (virt:rhel), qemu-kvm-block-rbd (virt:rhel), qemu-kvm-block-ssh (virt:rhel), qemu-kvm-core (virt:rhel)
RHEL 8.0
qemu-kvm-common-ma
qemu-kvm-common
RHEL 8.0
qemu-kvm-common-rhev
qemu-kvm-common (virt:rhel)
RHEL 8.0
qemu-kvm-ma
qemu-kvm, qemu-kvm-block-curl, qemu-kvm-block-gluster, qemu-kvm-block-iscsi, qemu-kvm-block-rbd, qemu-kvm-block-ssh, qemu-kvm-core
RHEL 8.0
在 RHEL 7 中引入的、用于 ARM、IBM POWER 和 IBM Z 架构上的虚拟化支持的
qemu-kvm-ma
软件包已被为所有构架提供支持的
qemu-kvm
软件包替代。
qemu-kvm-rhev
qemu-kvm (virt:rhel)
RHEL 8.0
qemu-kvm-rhev-debuginfo
qemu-guest-agent-debuginfo (ADVANCED-VIRT:latest), qemu-img-debuginfo (ADVANCED-VIRT:latest), qemu-kvm-block-curl-debuginfo (ADVANCED-VIRT:latest), qemu-kvm-block-gluster-debuginfo (ADVANCED-VIRT:latest), qemu-kvm-block-iscsi-debuginfo (ADVANCED-VIRT:latest), qemu-kvm-block-rbd-debuginfo (ADVANCED-VIRT:latest), qemu-kvm-block-ssh-debuginfo (ADVANCED-VIRT:latest), qemu-kvm-common-debuginfo (ADVANCED-VIRT:latest), qemu-kvm-core-debuginfo (ADVANCED-VIRT:latest), qemu-kvm-debuginfo (ADVANCED-VIRT:latest), qemu-kvm-debugsource (ADVANCED-VIRT:latest), qemu-kvm-tests-debuginfo (ADVANCED-VIRT:latest)
RHEL 8.0
qemu-kvm-tools-ma
qemu-kvm-common, tuned-profiles-nfv-host-bin
RHEL 8.0
qemu-kvm-tools-rhev
qemu-kvm-common (virt:rhel), tuned-profiles-nfv-host-bin
RHEL 8.0
quagga
RHEL 8.1
quagga-contrib
frr-contrib
RHEL 8.1
quota
quota, quota-rpc
RHEL 8.0
rpc.rquotad
守护进程已从
quotaR
PM软件包移动到
quota-rpc
。要在 NFS 服务器上使用磁盘配额限制,并让其它机器可读或可设置限制,请安装
quota-rpc
软件包,并启用并启动
rpc-RQUOTAD.service
systemd 服务。
redhat-logos
redhat-backgrounds, redhat-logos, redhat-logos-httpd
RHEL 8.0
redhat-release-client
redhat-release、redhat-release-eula
RHEL 8.0
redhat-release-computenode
redhat-release、redhat-release-eula
RHEL 8.0
redhat-release-server
redhat-release、redhat-release-eula
RHEL 8.0
redhat-release-workstation
redhat-release、redhat-release-eula
RHEL 8.0
redhat-rpm-config
kernel-rpm-macros, redhat-rpm-config
RHEL 8.0
resteasy-base
resteasy (pki-deps:10.6)
RHEL 8.0
resteasy-base-atom-provider
resteasy (pki-deps:10.6)
RHEL 8.0
resteasy-base-client
resteasy (pki-deps:10.6)
RHEL 8.0
resteasy-base-jackson-provider
resteasy (pki-deps:10.6)
RHEL 8.0
resteasy-base-javadoc
resteasy-javadoc (pki-deps:10.6)
RHEL 8.0
resteasy-base-jaxb-provider
resteasy (pki-deps:10.6)
RHEL 8.0
resteasy-base-jaxrs
resteasy (pki-deps:10.6)
RHEL 8.0
resteasy-base-jaxrs-all
resteasy (pki-deps:10.6)
RHEL 8.0
resteasy-base-jaxrs-api
resteasy (pki-deps:10.6)
RHEL 8.0
resteasy-base-providers-pom
resteasy (pki-deps:10.6)
RHEL 8.0
resteasy-base-resteasy-pom
resteasy (pki-deps:10.6)
RHEL 8.0
rh-dotnet21-dotnet
dotnet
RHEL 8.0
rh-dotnet21-dotnet-host, rh-dotnet22-dotnet-host, rh-dotnet30-dotnet-host, rh-dotnet31-dotnet-host, rh-dotnet50-dotnet-host, rh-dotnet60-dotnet-host
dotnet-host
RHEL 8.0
rhn-virtualization-common
python3-rhn-virtualization-common
RHEL 8.0
rhn-virtualization-host
python3-rhn-virtualization-host, rhn-virtualization-host
RHEL 8.0
rhncfg
python3-rhncfg, rhncfg
RHEL 8.0
rhncfg-actions
python3-rhncfg-actions, rhncfg-actions
RHEL 8.0
rhncfg-client
python3-rhncfg-client, rhncfg-client
RHEL 8.0
rhncfg-management
python3-rhncfg-management, rhncfg-management
RHEL 8.0
rhnpush
python3-rhnpush, rhnpush
RHEL 8.0
rpm-python
python3-rpm
RHEL 8.0
rrdtool-python
python3-rrdtool
RHEL 8.0
rsync
rsync, rsync-daemon
RHEL 8.0
s390utils-base
s390utils-base, s390utils-se-data
RHEL 8.10
samba-python
python3-samba
RHEL 8.0
samba-python-test
python3-samba-test
RHEL 8.0
samyak-oriya-fonts
samyak-odia-fonts
RHEL 8.0
sane-backends
sane-backends, sane-backends-daemon
RHEL 8.0
scipy
python2-scipy, python3-scipy
RHEL 8.0
scons
python3-scons
RHEL 8.0
selinux-policy-devel
selinux-policy-devel, selinux-policy-doc
RHEL 8.0
sendmail-devel
sendmail-milter-devel
RHEL 8.0
setools-libs
python3-setools
RHEL 8.0
shotwell
gnome-photos
RHEL 8.0
si-units
si-units, si-units-javadoc
RHEL 8.0
python3-pyqt5-sip, python3-sip
RHEL 8.0
sip-devel
python3-sip-devel, sip
RHEL 8.0
sip-macros
RHEL 8.0
sisu-bean, sisu-bean-binders, sisu-bean-containers, sisu-bean-converters, sisu-bean-inject, sisu-bean-locators, sisu-bean-reflect, sisu-bean-scanners, sisu-containers, sisu-inject-bean, sisu-osgi-registry, sisu-registries, sisu-spi-registry
sisu-inject
RHEL 8.0
sisu-inject-plexus, sisu-plexus-binders, sisu-plexus-converters, sisu-plexus-lifecycles, sisu-plexus-locators, sisu-plexus-metadata, sisu-plexus-scanners, sisu-plexus-shim
sisu-plexus
RHEL 8.0
sisu-maven-plugin
sisu-mojos
RHEL 8.0
sisu-maven-plugin-javadoc
sisu-mojos-javadoc
RHEL 8.0
slf4j
jcl-over-slf4j, jul-to-slf4j, log4j-over-slf4j, slf4j, slf4j-ext, slf4j-jcl, slf4j-jdk14, slf4j-log4j12
RHEL 8.0
slirp4netns
libslirp, slirp4netns
RHEL 8.3
spacewalk-abrt
python3-spacewalk-abrt, spacewalk-abrt
RHEL 8.0
spacewalk-backend-libs
python3-spacewalk-backend-libs
RHEL 8.0
spacewalk-koan
python3-spacewalk-koan, spacewalk-koan
RHEL 8.0
spacewalk-oscap
python3-spacewalk-oscap, spacewalk-oscap
RHEL 8.0
spacewalk-usix
python3-spacewalk-usix, spacewalk-usix
RHEL 8.0
speech-dispatcher
speech-dispatcher, speech-dispatcher-eSpeak-ng
RHEL 8.0
speech-dispatcher-python
python3-speechd
RHEL 8.0
speex
speex, speexdsp
RHEL 8.0
speex-devel
speex-devel, speexdsp-devel
RHEL 8.0
spice-gtk3
spice-gtk, spice-gtk3
RHEL 8.0
sssd-common
sssd-common, sssd-nfs-idmap
RHEL 8.0
stax-ex
stax-ex (pki-deps:10.6), stax-ex-javadoc (pki-deps:10.6)
RHEL 8.0
strace, strace32
strace
RHEL 8.0
subscription-manager-gui
subscription-manager-cockpit
RHEL 8.0
subscription-manager-rhsm
python3-subscription-manager-rhsm
RHEL 8.0
supermin5
supermin
RHEL 8.0
supermin5-devel
supermin-devel
RHEL 8.0
syslinux
syslinux, syslinux-nonlinux
RHEL 8.0
syslinux-extlinux
syslinux-extlinux, syslinux-extlinux-nonlinux
RHEL 8.0
system-config-kdump
cockpit-system
RHEL 8.0
system-config-users
cockpit
RHEL 8.0
systemd
systemd, systemd-container, systemd-udev, timedatex
RHEL 8.0
systemd-journal-gateway
systemd-journal-remote
RHEL 8.0
systemd-libs
systemd-libs, systemd-pam
RHEL 8.0
systemd-networkd, systemd-resolved
systemd
RHEL 8.0
systemd-python
python3-systemd
RHEL 8.0
systemtap-runtime-python2
systemtap-runtime-python3
RHEL 8.0
sysvinit-tools
procps-ng, util-linux
RHEL 8.0
tcl, tcl-doc
RHEL 8.0
teamd
network-scripts-team, teamd
RHEL 8.0
texlive-adjustbox, texlive-adjustbox-doc
texlive-adjustbox
RHEL 8.0
texlive-ae, texlive-ae-doc
texlive-ae
RHEL 8.0
texlive-algorithms, texlive-algorithms-doc
texlive-algorithms
RHEL 8.0
texlive-amscls, texlive-amscls-doc
texlive-amscls
RHEL 8.0
texlive-amsfonts, texlive-amsfonts-doc
texlive-amsfonts
RHEL 8.0
texlive-amsmath, texlive-amsmath-doc
texlive-amsmath
RHEL 8.0
texlive-anysize, texlive-anysize-doc
texlive-anysize
RHEL 8.0
texlive-appendix, texlive-appendix-doc
texlive-appendix
RHEL 8.0
texlive-arabxetex, texlive-arabxetex-doc
texlive-arabxetex
RHEL 8.0
texlive-arphic, texlive-arphic-doc
texlive-arphic
RHEL 8.0
texlive-attachfile, texlive-attachfile-doc
texlive-attachfile
RHEL 8.0
texlive-Babel, texlive-Babel-doc
texlive-babel
RHEL 8.0
texlive-babelbib, texlive-babelbib-doc
texlive-babelbib
RHEL 8.0
texlive-beamer, texlive-beamer-doc
texlive-beamer
RHEL 8.0
texlive-bera, texlive-bera-doc
texlive-bera
RHEL 8.0
texlive-beton, texlive-beton-doc
texlive-beton
RHEL 8.0
texlive-bibtex-bin, texlive-bibtex-doc
texlive-bibtex
RHEL 8.0
texlive-bibtopic, texlive-bibtopic-doc
texlive-bibtopic
RHEL 8.0
texlive-bidi, texlive-bidi-doc
texlive-bidi
RHEL 8.0
texlive-bigfoot, texlive-bigfoot-doc
texlive-bigfoot
RHEL 8.0
texlive-booktabs, texlive-booktabs-doc
texlive-booktabs
RHEL 8.0
texlive-breakurl, texlive-breakurl-doc
texlive-breakurl
RHEL 8.0
texlive-caption, texlive-caption-doc
texlive-caption
RHEL 8.0
texlive-carlisle, texlive-carlisle-doc
texlive-carlisle
RHEL 8.0
texlive-changebar, texlive-changebar-doc
texlive-changebar
RHEL 8.0
texlive-changepage, texlive-changepage-doc
texlive-changepage
RHEL 8.0
texlive-charter, texlive-charter-doc
texlive-charter
RHEL 8.0
texlive-chngcntr, texlive-chngcntr-doc
texlive-chngcntr
RHEL 8.0
texlive-cite, texlive-cite-doc
texlive-cite
RHEL 8.0
texlive-cjk, texlive-cjk-doc
texlive-cjk
RHEL 8.0
texlive-cm, texlive-cm-doc
texlive-cm
RHEL 8.0
texlive-cm-lgc, texlive-cm-lgc-doc
texlive-cm-lgc
RHEL 8.0
texlive-cm-super, texlive-cm-super-doc
texlive-cm-super
RHEL 8.0
texlive-cmap, texlive-cmap-doc
texlive-cmap
RHEL 8.0
texlive-cns, texlive-cns-doc
texlive-cns
RHEL 8.0
texlive-collectbox, texlive-collectbox-doc
texlive-collectbox
RHEL 8.0
texlive-colortbl, texlive-colortbl-doc
texlive-colortbl
RHEL 8.0
texlive-crop, texlive-crop-doc
texlive-crop
RHEL 8.0
texlive-csquotes, texlive-csquotes-doc
texlive-csquotes
RHEL 8.0
texlive-ctable, texlive-ctable-doc
texlive-ctable
RHEL 8.0
texlive-currfile, texlive-currfile-doc
texlive-currfile
RHEL 8.0
texlive-datetime, texlive-datetime-doc
texlive-datetime
RHEL 8.0
texlive-dvipdfm, texlive-dvipdfm-bin, texlive-dvipdfm-doc, texlive-dvipdfmx, texlive-dvipdfmx-bin, texlive-dvipdfmx-doc
texlive-dvipdfmx
RHEL 8.0
texlive-dvipdfmx-def
texlive-graphics-def
RHEL 8.0
texlive-dvipng, texlive-dvipng-bin, texlive-dvipng-doc
texlive-dvipng
RHEL 8.0
texlive-dvips, texlive-dvips-bin, texlive-dvips-doc
texlive-dvips
RHEL 8.0
texlive-ec, texlive-ec-doc
texlive-ec
RHEL 8.0
texlive-eepic, texlive-eepic-doc
texlive-eepic
RHEL 8.0
texlive-enctex, texlive-enctex-doc
texlive-enctex
RHEL 8.0
texlive-enumitem, texlive-enumitem-doc
texlive-enumitem
RHEL 8.0
texlive-epsf, texlive-epsf-doc
texlive-epsf
RHEL 8.0
texlive-epstopdf, texlive-epstopdf-bin, texlive-epstopdf-doc
texlive-epstopdf
RHEL 8.0
texlive-eso-pic, texlive-eso-pic-doc
texlive-eso-pic
RHEL 8.0
texlive-etex, texlive-etex-doc
texlive-etex
RHEL 8.0
texlive-etex-pkg, texlive-etex-pkg-doc
texlive-etex-pkg
RHEL 8.0
texlive-etoolbox, texlive-etoolbox-doc
texlive-etoolbox
RHEL 8.0
texlive-euenc, texlive-euenc-doc
texlive-euenc
RHEL 8.0
texlive-euler, texlive-euler-doc
texlive-euler
RHEL 8.0
texlive-euro, texlive-euro-doc
texlive-euro
RHEL 8.0
texlive-eurosym, texlive-eurosym-doc
texlive-eurosym
RHEL 8.0
texlive-extsizes, texlive-extsizes-doc
texlive-extsizes
RHEL 8.0
texlive-fancybox, texlive-fancybox-doc
texlive-fancybox
RHEL 8.0
texlive-fancyhdr, texlive-fancyhdr-doc
texlive-fancyhdr
RHEL 8.0
texlive-fancyref, texlive-fancyref-doc
texlive-fancyref
RHEL 8.0
texlive-fancyvrb, texlive-fancyvrb-doc
texlive-fancyvrb
RHEL 8.0
texlive-filecontents, texlive-filecontents-doc
texlive-filecontents
RHEL 8.0
texlive-filehook, texlive-filehook-doc
texlive-filehook
RHEL 8.0
texlive-fix2col, texlive-fix2col-doc
texlive-fix2col
RHEL 8.0
texlive-fixlatvian, texlive-fixlatvian-doc
texlive-fixlatvian
RHEL 8.0
texlive-float, texlive-float-doc
texlive-float
RHEL 8.0
texlive-fmtcount, texlive-fmtcount-doc
texlive-fmtcount
RHEL 8.0
texlive-fncychap, texlive-fncychap-doc
texlive-fncychap
RHEL 8.0
texlive-fontbook, texlive-fontbook-doc
texlive-fontbook
RHEL 8.0
texlive-fontspec, texlive-fontspec-doc
texlive-fontspec
RHEL 8.0
texlive-fontware, texlive-fontware-bin
texlive-fontware
RHEL 8.0
texlive-fontwrap, texlive-fontwrap-doc
texlive-fontwrap
RHEL 8.0
texlive-footmisc, texlive-footmisc-doc
texlive-footmisc
RHEL 8.0
texlive-fp, texlive-fp-doc
texlive-fp
RHEL 8.0
texlive-fpl, texlive-fpl-doc
texlive-fpl
RHEL 8.0
texlive-framed, texlive-framed-doc
texlive-framed
RHEL 8.0
texlive-geometry, texlive-geometry-doc
texlive-geometry
RHEL 8.0
texlive-graphics, texlive-graphics-doc, texlive-rotating, texlive-rotating-doc
texlive-graphics
RHEL 8.0
texlive-gsftopk, texlive-gsftopk-bin
texlive-gsftopk
RHEL 8.0
texlive-hyperref, texlive-hyperref-doc
texlive-hyperref
RHEL 8.0
texlive-hyph-utf8, texlive-hyph-utf8-doc
texlive-hyph-utf8
RHEL 8.0
texlive-hyphenat, texlive-hyphenat-doc
texlive-hyphenat
RHEL 8.0
texlive-ifetex, texlive-ifetex-doc
texlive-ifetex
RHEL 8.0
texlive-ifluatex, texlive-ifluatex-doc
texlive-ifluatex
RHEL 8.0
texlive-ifmtarg, texlive-ifmtarg-doc
texlive-ifmtarg
RHEL 8.0
texlive-ifoddpage, texlive-ifoddpage-doc
texlive-ifoddpage
RHEL 8.0
texlive-iftex, texlive-iftex-doc
texlive-iftex
RHEL 8.0
texlive-ifxetex, texlive-ifxetex-doc
texlive-ifxetex
RHEL 8.0
texlive-index, texlive-index-doc
texlive-index
RHEL 8.0
texlive-jadetex, texlive-jadetex-bin, texlive-jadetex-doc
texlive-jadetex
RHEL 8.0
texlive-jknapltx, texlive-jknapltx-doc
texlive-jknapltx
RHEL 8.0
texlive-kastrup, texlive-kastrup-doc
texlive-kastrup
RHEL 8.0
texlive-kerkis, texlive-kerkis-doc
texlive-kerkis
RHEL 8.0
texlive-kpathsea, texlive-kpathsea-bin, texlive-kpathsea-doc
texlive-kpathsea
RHEL 8.0
texlive-kpathsea-lib
texlive-lib
RHEL 8.0
texlive-kpathsea-lib-devel
texlive-lib-devel
RHEL 8.0
texlive-l3experimental, texlive-l3experimental-doc
texlive-l3experimental
RHEL 8.0
texlive-l3kernel, texlive-l3kernel-doc
texlive-l3kernel
RHEL 8.0
texlive-l3packages, texlive-l3packages-doc
texlive-l3packages
RHEL 8.0
texlive-lastpage, texlive-lastpage-doc
texlive-lastpage
RHEL 8.0
texlive-latex, texlive-latex-bin, texlive-latex-bin-bin, texlive-latex-doc
texlive-latex
RHEL 8.0
texlive-latex-fonts, texlive-latex-fonts-doc
texlive-latex-fonts
RHEL 8.0
texlive-lettrine, texlive-lettrine-doc
texlive-lettrine
RHEL 8.0
texlive-listings, texlive-listings-doc
texlive-listings
RHEL 8.0
texlive-lm, texlive-lm-doc
texlive-lm
RHEL 8.0
texlive-lm-math, texlive-lm-math-doc
texlive-lm-math
RHEL 8.0
texlive-lua-alt-getopt, texlive-lua-alt-getopt-doc
texlive-lua-alt-getopt
RHEL 8.0
texlive-lualatex-math, texlive-lualatex-math-doc
texlive-lualatex-math
RHEL 8.0
texlive-luaotfload, texlive-luaotfload-bin, texlive-luaotfload-doc
texlive-luaotfload
RHEL 8.0
texlive-luatex, texlive-luatex-bin, texlive-luatex-doc
texlive-luatex
RHEL 8.0
texlive-luatexbase, texlive-luatexbase-doc
texlive-luatexbase
RHEL 8.0
texlive-makecmds, texlive-makecmds-doc
texlive-makecmds
RHEL 8.0
texlive-makeindex, texlive-makeindex-bin, texlive-makeindex-doc
texlive-makeindex
RHEL 8.0
texlive-marginnote, texlive-marginnote-doc
texlive-marginnote
RHEL 8.0
texlive-marvosym, texlive-marvosym-doc
texlive-marvosym
RHEL 8.0
texlive-mathpazo, texlive-mathpazo-doc
texlive-mathpazo
RHEL 8.0
texlive-mathspec, texlive-mathspec-doc
texlive-mathspec
RHEL 8.0
texlive-mdwtools, texlive-mdwtools-doc
texlive-mdwtools
RHEL 8.0
texlive-memoir, texlive-memoir-doc
texlive-memoir
RHEL 8.0
texlive-metafont, texlive-metafont-bin
texlive-metafont
RHEL 8.0
texlive-metalogo, texlive-metalogo-doc
texlive-metalogo
RHEL 8.0
texlive-metapost, texlive-metapost-bin, texlive-metapost-doc, texlive-metapost-examples-doc
texlive-metapost
RHEL 8.0
texlive-mflogo, texlive-mflogo-doc
texlive-mflogo
RHEL 8.0
texlive-mfnfss, texlive-mfnfss-doc
texlive-mfnfss
RHEL 8.0
texlive-mfware, texlive-mfware-bin
texlive-mfware
RHEL 8.0
texlive-microtype, texlive-microtype-doc
texlive-microtype
RHEL 8.0
texlive-mnsymbol, texlive-mnsymbol-doc
texlive-mnsymbol
RHEL 8.0
texlive-mparhack, texlive-mparhack-doc
texlive-mparhack
RHEL 8.0
texlive-mptopdf, texlive-mptopdf-bin
texlive-mptopdf
RHEL 8.0
texlive-ms, texlive-ms-doc
texlive-ms
RHEL 8.0
texlive-multido, texlive-multido-doc
texlive-multido
RHEL 8.0
texlive-multirow, texlive-multirow-doc
texlive-multirow
RHEL 8.0
texlive-natbib, texlive-natbib-doc
texlive-natbib
RHEL 8.0
texlive-ncctools, texlive-ncctools-doc
texlive-ncctools
RHEL 8.0
texlive-ntgclass, texlive-ntgclass-doc
texlive-ntgclass
RHEL 8.0
texlive-oberdiek, texlive-oberdiek-doc
texlive-oberdiek
RHEL 8.0
texlive-overpic, texlive-overpic-doc
texlive-overpic
RHEL 8.0
texlive-paralist, texlive-paralist-doc
texlive-paralist
RHEL 8.0
texlive-parallel, texlive-parallel-doc
texlive-parallel
RHEL 8.0
texlive-parskip, texlive-parskip-doc
texlive-parskip
RHEL 8.0
texlive-pdfpages, texlive-pdfpages-doc
texlive-pdfpages
RHEL 8.0
texlive-pdftex, texlive-pdftex-bin, texlive-pdftex-doc
texlive-pdftex
RHEL 8.0
texlive-pdftex-def
texlive-graphics-def
RHEL 8.0
texlive-pgf, texlive-pgf-doc
texlive-pgf
RHEL 8.0
texlive-philokalia, texlive-philokalia-doc
texlive-philokalia
RHEL 8.0
texlive-placeins, texlive-placeins-doc
texlive-placeins
RHEL 8.0
texlive-polyglosia, texlive-polyglosia-doc
texlive-polyglossia
RHEL 8.0
texlive-powerdot, texlive-powerdot-doc
texlive-powerdot
RHEL 8.0
texlive-preprint, texlive-preprint-doc
texlive-preprint
RHEL 8.0
texlive-psfrag, texlive-psfrag-doc
texlive-psfrag
RHEL 8.0
texlive-psnfss, texlive-psnfss-doc
texlive-psnfss
RHEL 8.0
texlive-pspicture, texlive-pspicture-doc
texlive-pspicture
RHEL 8.0
texlive-pst-3d, texlive-pst-3d-doc
texlive-pst-3d
RHEL 8.0
texlive-pst-blur, texlive-pst-blur-doc
texlive-pst-blur
RHEL 8.0
texlive-pst-coil, texlive-pst-coil-doc
texlive-pst-coil
RHEL 8.0
texlive-pst-eps, texlive-pst-eps-doc
texlive-pst-eps
RHEL 8.0
texlive-pst-fill, texlive-pst-fill-doc
texlive-pst-fill
RHEL 8.0
texlive-pst-grad, texlive-pst-grad-doc
texlive-pst-grad
RHEL 8.0
texlive-pst-math, texlive-pst-math-doc
texlive-pst-math
RHEL 8.0
texlive-pst-node, texlive-pst-node-doc
texlive-pst-node
RHEL 8.0
texlive-pst-plot, texlive-pst-plot-doc
texlive-pst-plot
RHEL 8.0
texlive-pst-slpe, texlive-pst-slpe-doc
texlive-pst-slpe
RHEL 8.0
texlive-pst-text, texlive-pst-text-doc
texlive-pst-text
RHEL 8.0
texlive-pst-tree, texlive-pst-tree-doc
texlive-pst-tree
RHEL 8.0
texlive-pstricks, texlive-pstricks-doc
texlive-pstricks
RHEL 8.0
texlive-pstricks-add, texlive-pstricks-add-doc
texlive-pstricks-add
RHEL 8.0
texlive-ptext, texlive-ptext-doc
texlive-ptext
RHEL 8.0
texlive-pxfonts, texlive-pxfonts-doc
texlive-pxfonts
RHEL 8.0
texlive-qstest, texlive-qstest-doc
texlive-qstest
RHEL 8.0
texlive-rcs, texlive-rcs-doc
texlive-rcs
RHEL 8.0
texlive-realscripts, texlive-realscripts-doc
texlive-realscripts
RHEL 8.0
texlive-rsfs, texlive-rsfs-doc
texlive-rsfs
RHEL 8.0
texlive-sansmath, texlive-sansmath-doc
texlive-sansmath
RHEL 8.0
texlive-sauerj, texlive-sauerj-doc
texlive-sauerj
RHEL 8.0
texlive-section, texlive-section-doc
texlive-section
RHEL 8.0
texlive-sectsty, texlive-sectsty-doc
texlive-sectsty
RHEL 8.0
texlive-seminar, texlive-seminar-doc
texlive-seminar
RHEL 8.0
texlive-sepnum, texlive-sepnum-doc
texlive-sepnum
RHEL 8.0
texlive-setspace, texlive-setspace-doc
texlive-setspace
RHEL 8.0
texlive-showexpl, texlive-showexpl-doc
texlive-showexpl
RHEL 8.0
texlive-soul, texlive-soul-doc
texlive-soul
RHEL 8.0
texlive-stmaryrd, texlive-stmaryrd-doc
texlive-stmaryrd
RHEL 8.0
texlive-subfig, texlive-subfig-doc
texlive-subfig
RHEL 8.0
texlive-subfigure, texlive-subfigure-doc
texlive-subfigure
RHEL 8.0
texlive-svn-prov, texlive-svn-prov-doc
texlive-svn-prov
RHEL 8.0
texlive-t2, texlive-t2-doc
texlive-t2
RHEL 8.0
texlive-tetex, texlive-tetex-bin, texlive-tetex-doc
texlive-tetex
RHEL 8.0
texlive-tex, texlive-tex-bin
texlive-tex
RHEL 8.0
texlive-tex-gyre, texlive-tex-gyre-doc
texlive-tex-gyre
RHEL 8.0
texlive-tex-gyre-math, texlive-tex-gyre-math-doc
texlive-tex-gyre-math
RHEL 8.0
texlive-tex4ht, texlive-tex4ht-bin, texlive-tex4ht-doc
texlive-tex4ht
RHEL 8.0
texlive-texconfig, texlive-texconfig-bin
texlive-texconfig
RHEL 8.0
texlive-texlive.infra, texlive-texlive.infra-bin, texlive-texlive.infra-doc
texlive-texlive.infra
RHEL 8.0
texlive-textcase, texlive-textcase-doc
texlive-textcase
RHEL 8.0
texlive-textpos, texlive-textpos-doc
texlive-textpos
RHEL 8.0
texlive-threeparttable, texlive-threeparttable-doc
texlive-threeparttable
RHEL 8.0
texlive-thumbpdf, texlive-thumbpdf-bin, texlive-thumbpdf-doc
texlive-thumbpdf
RHEL 8.0
texlive-tipa, texlive-tipa-doc
texlive-tipa
RHEL 8.0
texlive-titlesec, texlive-titlesec-doc
texlive-titlesec
RHEL 8.0
texlive-titling, texlive-titling-doc
texlive-titling
RHEL 8.0
texlive-tocloft, texlive-tocloft-doc
texlive-tocloft
RHEL 8.0
texlive-tools, texlive-tools-doc
texlive-tools
RHEL 8.0
texlive-txfonts, texlive-txfonts-doc
texlive-txfonts
RHEL 8.0
texlive-type1cm, texlive-type1cm-doc
texlive-type1cm
RHEL 8.0
texlive-typehtml, texlive-typehtml-doc
texlive-typehtml
RHEL 8.0
texlive-ucharclasses, texlive-ucharclasses-doc
texlive-ucharclasses
RHEL 8.0
texlive-ucs, texlive-ucs-doc
texlive-ucs
RHEL 8.0
texlive-uhc, texlive-uhc-doc
texlive-uhc
RHEL 8.0
texlive-ulem, texlive-ulem-doc
texlive-ulem
RHEL 8.0
texlive-underscore, texlive-underscore-doc
texlive-underscore
RHEL 8.0
texlive-unicode-math, texlive-unicode-math-doc
texlive-unicode-math
RHEL 8.0
texlive-unisugar, texlive-unisugar-doc
texlive-unisugar
RHEL 8.0
texlive-url, texlive-url-doc
texlive-url
RHEL 8.0
texlive-utopia, texlive-utopia-doc
texlive-utopia
RHEL 8.0
texlive-varwidth, texlive-varwidth-doc
texlive-varwidth
RHEL 8.0
texlive-wadalab, texlive-wadalab-doc
texlive-wadalab
RHEL 8.0
texlive-was, texlive-was-doc
texlive-was
RHEL 8.0
texlive-wasy, texlive-wasy-doc
texlive-wasy
RHEL 8.0
texlive-wasysym, texlive-wasysym-doc
texlive-wasysym
RHEL 8.0
texlive-wrapfig, texlive-wrapfig-doc
texlive-wrapfig
RHEL 8.0
texlive-xcolor, texlive-xcolor-doc
texlive-xcolor
RHEL 8.0
texlive-xdvi, texlive-xdvi-bin
texlive-xdvi
RHEL 8.0
texlive-xecjk, texlive-xecjk-doc
texlive-xecjk
RHEL 8.0
texlive-xecolor, texlive-xecolor-doc
texlive-xecolor
RHEL 8.0
texlive-xecyr, texlive-xecyr-doc
texlive-xecyr
RHEL 8.0
texlive-xeindex, texlive-xeindex-doc
texlive-xeindex
RHEL 8.0
texlive-xepersian, texlive-xepersian-doc
texlive-xepersian
RHEL 8.0
texlive-xesearch, texlive-xesearch-doc
texlive-xesearch
RHEL 8.0
texlive-xetex, texlive-xetex-bin, texlive-xetex-doc
texlive-xetex
RHEL 8.0
texlive-xetex-def
texlive-graphics-def
RHEL 8.0
texlive-xetex-itrans, texlive-xetex-itrans-doc
texlive-xetex-itrans
RHEL 8.0
texlive-xetex-pstricks, texlive-xetex-pstricks-doc
texlive-xetex-pstricks
RHEL 8.0
texlive-xetex-tibetan, texlive-xetex-tibetan-doc
texlive-xetex-tibetan
RHEL 8.0
texlive-xetexfontinfo, texlive-xetexfontinfo-doc
texlive-xetexfontinfo
RHEL 8.0
texlive-xifthen, texlive-xifthen-doc
texlive-xifthen
RHEL 8.0
texlive-xkeyval, texlive-xkeyval-doc
texlive-xkeyval
RHEL 8.0
texlive-xltxtra, texlive-xltxtra-doc
texlive-xltxtra
RHEL 8.0
texlive-xmltex, texlive-xmltex-bin, texlive-xmltex-doc
texlive-xmltex
RHEL 8.0
texlive-xstring, texlive-xstring-doc
texlive-xstring
RHEL 8.0
texlive-xtab, texlive-xtab-doc
texlive-xtab
RHEL 8.0
texlive-xunicode, texlive-xunicode-doc
texlive-xunicode
RHEL 8.0
tkinter
python2-tkinter, python3-tkinter
RHEL 8.0
trace-cmd
kernelshark, trace-cmd
RHEL 8.0
tracker
tracker, tracker-miners
RHEL 8.0
trousers
Itrousers, trousers-lib
RHEL 8.0
unbound-python
python3-unbound
RHEL 8.0
unit-api
unit-api, unit-api-javadoc
RHEL 8.0
uom-lib
uom-lib, uom-lib-javadoc
RHEL 8.0
uom-se
uom-se, uom-se-javadoc
RHEL 8.0
uom-systems
uom-systems, uom-systems-javadoc
RHEL 8.0
urw-fonts
urw-base35-fonts
RHEL 8.0
util-linux
util-linux, util-linux-user
RHEL 8.0
vlgothic-fonts
google-noto-sans-cjk-ttc-fonts
RHEL 8.0
vulkan
vulkan-loader, vulkan-tools, vulkan-validation-layers
RHEL 8.0
vulkan-devel
mesa-vulkan-devel, vulkan-headers, vulkan-loader-devel
RHEL 8.0
vulkan-filesystem
vulkan-loader
RHEL 8.0
webkitgtk4
webkit2gtk3
RHEL 8.0
webkitgtk4-devel
webkit2gtk3-devel
RHEL 8.0
webkitgtk4-jsc
webkit2gtk3-jsc
RHEL 8.0
webkitgtk4-jsc-devel
webkit2gtk3-jsc-devel
RHEL 8.0
webkitgtk4-plugin-process-gtk2
webkit2gtk3-plugin-process-gtk2
RHEL 8.0
webkit2gtk3-plugin-process-gtk2
软件包在 RHEL 8.3 中被删除,因为 WebKitGTK 2.26 删除了对链接 GTK 2 的 NPAPI 插件的支持。值得注意的是,这意味着 Adobe Flash 不再正常工作。
wireshark
wireshark-cli
RHEL 8.0
wireshark-gnome
wireshark
RHEL 8.0
wqy-zenhei-fonts
google-noto-sans-cjk-ttc-fonts
RHEL 8.0
xchat
hexchat
RHEL 8.0
xmvn, xmvn-api, xmvn-bisect, xmvn-connector-aether, xmvn-connector-ivy, xmvn-core, xmvn-install, xmvn-minimal, xmvn-mojo, xmvn-parent-pom, xmvn-resolve, xmvn-subst, xmvn-tools-pom
RHEL 8.0
xorg-x11-drv-wacom
xorg-x11-drv-wacom, xorg-x11-drv-wacom-serial-support
RHEL 8.0
xorg-x11-server-Xwayland
xorg-x11-server-Xwayland
RHEL 8.5
Xwayland
现在从独立的
Xwayland
上游版本构建,而不是从通用的
Xserver
软件包构建。软件包名称是一样的。不需要迁移。
xsom (pki-deps:10.6), xsom-javadoc (pki-deps:10.6)
RHEL 8.0
xterm
xterm, xterm-resize
RHEL 8.0
yum-cron
dnf-automatic
RHEL 8.0
dnf-automatic
软件包提供类似的功能,但与
yum-cron
配置文件不兼容。
yum-metadata-parser
python3-dnf
RHEL 8.0
用户现在应该使用 DNF API(查询、软件包对象等)来使用 repodata 内容。
yum-plugin-aliases, yum-plugin-fastestmirror, yum-plugin-priorities, yum-plugin-remove-with-leaves, yum-plugin-tmprepo, yum-plugin-tsflags
RHEL 8.0
以上的功能由 DNF 提供。
yum-plugin-tmprepo
的功能由
--repofrompath
选项提供。设置
tsflags
选项现在是
dnf
集成的部分:使用
--setopt=tsflags=<flags>
。
yum-plugin-auto-update-debug-info, yum-plugin-changelog, yum-plugin-copr
dnf-plugins-core
RHEL 8.0
所有这些插件现在都是
dnf-plugins-core
软件包的一部分,但仍可安装到原始名称下。
yum-plugin-versionlock
python3-dnf-plugin-versionlock
RHEL 8.0
仍可在原始名称下安装。
yum-rhn-plugin
dnf-plugin-spacewalk
RHEL 8.0
yum-utils
dnf-utils
RHEL 8.0
有关当前 RHEL 8 次要发行本中可用软件包的完整列表,请查看
软件包清单
。
以下软件包在 RHEL 8 中的存储库间移动:
软件包
|
原始软件仓库*
|
当前软件仓库*
|
修改自
|
apache-commons-collections-javadoc
rhel8-AppStream
rhel8-CRB
RHEL 8.1
apache-commons-collections-testframework
rhel8-AppStream
rhel8-CRB
RHEL 8.1
apache-commons-lang-javadoc
rhel8-AppStream
rhel8-CRB
RHEL 8.1
apache-commons-net
rhel8-CRB
rhel8-AppStream
RHEL 8.3
bind9.16-dnssec-utils
rhel8-CRB
rhel8-AppStream
RHEL 8.8
brotli-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.3
compat-locales-sap
rhel8-AppStream
rhel8-SAP-NetWeaver
RHEL 8.1
daxctl-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.2
elfutils-debuginfod-client
rhel8-AppStream
rhel8-BaseOS
RHEL 8.3
elfutils-debuginfod-client-devel
rhel8-AppStream
rhel8-BaseOS
RHEL 8.3
ghostscript-x11
rhel8-CRB
rhel8-AppStream
RHEL 8.3
glibc-gconv-extra
rhel8-AppStream
rhel8-BaseOS
RHEL 8.7
gobject-introspection-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.3
hivex
rhel8-CRB
rhel8-AppStream
RHEL 8.10
hivex-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.10
iso-codes-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.1
jakarta-commons-httpclient-demo
rhel8-AppStream
rhel8-CRB
RHEL 8.1
jakarta-commons-httpclient-javadoc
rhel8-AppStream
rhel8-CRB
RHEL 8.1
jakarta-commons-httpclient-manual
rhel8-AppStream
rhel8-CRB
RHEL 8.1
rhel8-CRB
rhel8-AppStream
RHEL 8.1
json-c-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.4
jsr-305
rhel8-CRB
rhel8-AppStream
RHEL 8.2
leptonica
rhel8-CRB
rhel8-AppStream
RHEL 8.5
libbabeltrace
rhel8-AppStream
rhel8-BaseOS
RHEL 8.3
libcacard-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.3
libcomps-devel
rhel8-BaseOS
rhel8-CRB
RHEL 8.5
libidn2-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.3
libiscsi
rhel8-CRB
rhel8-AppStream
RHEL 8.10
libiscsi-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.10
libiscsi-utils
rhel8-CRB
rhel8-AppStream
RHEL 8.10
liblockfile
rhel8-AppStream
rhel8-BaseOS
RHEL 8.7
libmaxminddb-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.2
libmnl-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.3
libmpc-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.5
libnbd
rhel8-CRB
rhel8-AppStream
RHEL 8.10
libnbd-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.10
libogg-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.3
libseccomp-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.1
liburing
rhel8-AppStream
rhel8-BaseOS
RHEL 8.6
libvirt-dbus
rhel8-CRB
rhel8-AppStream
RHEL 8.10
maven-resolver
rhel8-CRB
rhel8-AppStream
RHEL 8.2
maven-wagon
rhel8-CRB
rhel8-AppStream
RHEL 8.2
nbdfuse
rhel8-CRB
rhel8-AppStream
RHEL 8.10
ndctl-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.2
netcf
rhel8-CRB
rhel8-AppStream
RHEL 8.10
netcf-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.10
netcf-libs
rhel8-CRB
rhel8-AppStream
RHEL 8.10
ocaml
rhel8-CRB
rhel8-AppStream
RHEL 8.10
ocaml-compiler-libs
rhel8-CRB
rhel8-AppStream
RHEL 8.10
ocaml-hivex
rhel8-CRB
rhel8-AppStream
RHEL 8.10
ocaml-hivex-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.10
ocaml-libguestfs
rhel8-CRB
rhel8-AppStream
RHEL 8.10
ocaml-libguestfs-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.10
ocaml-libnbd
rhel8-CRB
rhel8-AppStream
RHEL 8.10
ocaml-libnbd-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.10
ocaml-runtime
rhel8-CRB
rhel8-AppStream
RHEL 8.10
openldap-servers
rhel8-BaseOS
rhel8-CRB
RHEL 8.0
opus-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.3
perl-Digest
rhel8-AppStream
rhel8-BaseOS
RHEL 8.9
perl-Digest-MD5
rhel8-AppStream
rhel8-BaseOS
RHEL 8.9
perl-Importer
rhel8-CRB
rhel8-AppStream
RHEL 8.3
perl-IO-Socket-IP
rhel8-AppStream
rhel8-BaseOS
RHEL 8.9
perl-IO-String
rhel8-CRB
rhel8-AppStream
RHEL 8.4
perl-hivex
rhel8-CRB
rhel8-AppStream
RHEL 8.10
perl-libnet
rhel8-AppStream
rhel8-BaseOS
RHEL 8.9
perl-Sys-Virt
rhel8-CRB
rhel8-AppStream
RHEL 8.10
perl-Term-Table
rhel8-CRB
rhel8-AppStream
RHEL 8.3
perl-Tk
rhel8-CRB
rhel8-AppStream
RHEL 8.3
perl-URI
rhel8-AppStream
rhel8-BaseOS
RHEL 8.9
poppler-qt5
rhel8-CRB
rhel8-AppStream
RHEL 8.7
protobuf-c-compiler
rhel8-CRB
rhel8-AppStream
RHEL 8.4
protobuf-c-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.4
protobuf-compiler
rhel8-CRB
rhel8-AppStream
RHEL 8.4
python3-bind9.16
rhel8-CRB
rhel8-AppStream
RHEL 8.8
python3-hivex
rhel8-CRB
rhel8-AppStream
RHEL 8.10
python3-libnbd
rhel8-CRB
rhel8-AppStream
RHEL 8.10
python3-libvirt
rhel8-CRB
rhel8-AppStream
RHEL 8.10
python3-markdown
rhel8-CRB
rhel8-BaseOS
RHEL 8.10
python3-systemd
rhel8-AppStream
rhel8-BaseOS
RHEL 8.6
resource-agents-sap-hana
rhel8-SAP-NetWeaver
rhel8-SAP-Solutions
RHEL 8.2
resource-agents-sap-hana-scaleout
rhel8-SAP-NetWeaver
rhel8-SAP-Solutions
RHEL 8.2
rt-tests
rhel8-RT
rhel8-AppStream
RHEL 8.4
rt-tests
rhel8-NFV
rhel8-AppStream
RHEL 8.4
ruby-hivex
rhel8-CRB
rhel8-AppStream
RHEL 8.10
samba-test
rhel8-AppStream
rhel8-BaseOS
RHEL 8.2
samba-test
rhel8-BaseOS
rhel8-AppStream
RHEL 8.1
sgabios
rhel8-CRB
rhel8-AppStream
RHEL 8.10
rhel8-CRB
rhel8-AppStream
RHEL 8.2
spirv-tools-libs
rhel8-CRB
rhel8-AppStream
RHEL 8.1
stress-ng
rhel8-NFV
rhel8-AppStream
RHEL 8.6
stress-ng
rhel8-RT
rhel8-AppStream
RHEL 8.6
tinycdb
rhel8-CRB
rhel8-AppStream
RHEL 8.2
usbredir-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.3
velocity-demo
rhel8-AppStream
rhel8-CRB
RHEL 8.1
velocity-javadoc
rhel8-AppStream
rhel8-CRB
RHEL 8.1
velocity-manual
rhel8-AppStream
rhel8-CRB
RHEL 8.1
virtio-win
rhel8-Supplementary
rhel8-AppStream
RHEL 8.1
xerces-j2-demo
rhel8-AppStream
rhel8-CRB
RHEL 8.1
xerces-j2-javadoc
rhel8-AppStream
rhel8-CRB
RHEL 8.1
xkeyboard-config-devel
rhel8-CRB
rhel8-AppStream
RHEL 8.1
xml-commons-apis-javadoc
rhel8-AppStream
rhel8-CRB
RHEL 8.1
xml-commons-apis-manual
rhel8-AppStream
rhel8-CRB
RHEL 8.1
xml-commons-resolver-javadoc
rhel8-AppStream
rhel8-CRB
RHEL 8.1
* 下表使用存储库 ID 的缩写名称。使用以下示例来帮助识别完整的存储库 ID,其中
<arch>
是特定的构架:
rhel8-BaseOS:
rhel-8-for-
<arch>
-baseos-rpms, rhel-8-for-
<arch>
-baseos-eus-rpms, rhel-8-for-
<arch>
-baseos-e4s-rpms。
rhel8-AppStream:
rhel-8-for-
<arch>
-appstream-rpms, rhel-8-for-
<arch>
-appstream-eus-rpms, rhel-8-for-
<arch>
-appstream-e4s-rpms。
rhel8-CRB:
codeready-builder-for-rhel-8-
<arch>
-rpms, codeready-builder-for-rhel-8-
<arch>
-eus-rpms。
rhel8-SAP-Solutions:
rhel-8-for-
<arch>
-sap-solutions-rpms, rhel-8-for-
<arch>
-sap-solutions-eus-rpms, rhel-8-for-
<arch>
-sap-solutions-e4s-rpms。
rhel8-SAP-NetWeaver:
rhel-8-for-
<arch>
-sap-netweaver-rpms, rhel-8-for-
<arch>
-sap-netweaver-eus-rpms, rhel-8-for-
<arch>
-sap-netweaver-e4s-rpms。
有关当前 RHEL 8 次要发行本中可用软件包的完整列表,请查看
软件包清单
。
以下软件包是 RHEL 7 的一部分,但没有包括在 RHEL 8 中:
软件包
|
备注
|
a2ps
软件包已经被删除。
enscript
软件包可覆盖其一些功能。用户可以在
/etc/enscript.cfg
文件中配置
enscript
。
abrt-addon-upload-watch
abrt-devel
abrt-gui-devel
abrt-retrace-client
acpid-sysvinit
advancecomp
adwaita-icon-theme-devel
adwaita-qt-common
adwaita-qt4
agg-devel
aic94xx-firmware
akonadi
akonadi-devel
akonadi-mysql
alacarte
alsa-tools
anaconda-widgets-devel
ant-antunit
ant-antunit-javadoc
antlr-C++-doc
antlr-python
apache-commons-configuration
apache-commons-configuration-javadoc
apache-commons-daemon
apache-commons-daemon-javadoc
apache-commons-daemon-jsvc
apache-commons-dbcp
apache-commons-dbcp-javadoc
apache-commons-digester
apache-commons-digester-javadoc
apache-commons-jexl
apache-commons-jexl-javadoc
apache-commons-pool
apache-commons-pool-javadoc
apache-commons-validator
apache-commons-validator-javadoc
apache-commons-vfs
apache-commons-vfs-ant
apache-commons-vfs-examples
apache-commons-vfs-javadoc
apache-rat
apache-rat-core
apache-rat-javadoc
apache-rat-plugin
apache-rat-tasks
apr-util-nss
apr-util-nss
软件包使用 NSS Cryptography 程序库为
apr_crypto.h
界面提供后端。任何使用这个接口的
NSS
后端的应用程序都应迁移到使用
OpenSSL
后端,后者在
apr-util-openssl
软件包中提供。
args4j
args4j-javadoc
ark-libs
asciidoc-latex
at-spi
at-spi-devel
at-spi-python
at-sysvinit
atlas-sse2
atlas-sse3
atlas-static
atlas-z10
atlas-z10-devel
atlas-z196
atlas-z196-devel
attica
attica-devel
audiocd-kio
audiocd-kio-devel
audiocd-kio-libs
audiofile
audiofile-devel
audit-libs-python
audit-libs-static
authconfig-gtk
authd
automoc
autotrace-devel
avahi-dnsconfd
avahi-qt3
avahi-qt3-devel
avahi-qt4
avahi-qt4-devel
avahi-tools
avahi-ui-tools
avalon-framework
avalon-framework-javadoc
avalon-logkit
avalon-logkit-javadoc
bacula-console-bat
bacula-devel
bacula-traymonitor
baekmuk-ttf-batang-fonts
baekmuk-ttf-dotum-fonts
baekmuk-ttf-fonts-common
baekmuk-ttf-fonts-ghostscript
baekmuk-ttf-gulim-fonts
baekmuk-ttf-hline-fonts
base64coder
base64coder-javadoc
batik
batik-demo
batik-javadoc
batik-rasterizer
batik-slideshow
batik-squiggle
batik-svgpp
batik-ttf2svg
bison-devel
bitmap-console-fonts
bitmap-fixed-fonts
bitmap-fonts-compat
bitmap-lucida-typewriter-fonts
blas-static
blas64-devel
blas64-static
bluedevil
bluedevil-autostart
bmc-snmp-proxy
bogofilter-bogoupgrade
bridge-utils
bsdcpio
bsh-demo
bsh-utils
btrfs-progs
btrfs-progs-devel
buildnumber-maven-plugin
buildnumber-maven-plugin-javadoc
bwidget
bzr-doc
joe-tools
caribou
caribou-antler
caribou-devel
caribou-gtk2-module
caribou-gtk3-module
cdparanoia-static
cdrskin
ceph-common
check-static
cheese-libs-devel
cifs-utils-devel
cim-schema-docs
cjkuni-ukai-fonts
clutter-gst2-devel
clutter-tests
cmpi-bindings-pywbem
cobertura
cobertura-javadoc
cockpit-kubernetes
cockpit-machines-ovirt
codehaus-parent
codemodel-javadoc
cogl-tests
colord-extra-profiles
colord-kde
compat-cheese314
compat-dapl
compat-dapl-devel
compat-dapl-static
compat-dapl-utils
compat-db
compat-db-headers
compat-db47
compat-exiv2-023
compat-gcc-44
compat-gcc-44-c++
compat-gcc-44-gfortran
compat-glade315
compat-glew
compat-glibc
compat-glibc-headers
compat-gnome-desktop314
compat-grilo02
compat-libcap1
compat-libcogl-pango12
compat-libcogl12
compat-libcolord1
compat-libf2c-34
compat-libgdata13
compat-libgfortran-41
compat-libgnome-bluetooth11
compat-libgnome-desktop3-7
compat-libgweather3
compat-libical1
compat-libmediaart0
compat-libmpc
compat-libpackagekit-glib2-16
compat-libstdc++-33
compat-libtiff3
compat-libupower-glib1
compat-libxcb
compat-openldap
compat-openmpi16
compat-openmpi16-devel
compat-opensm-libs
compat-poppler022
compat-poppler022-cpp
compat-poppler022-glib
compat-poppler022-qt
compat-sap-c++-5
compat-sap-c++-6
compat-sap-c++-7
compat-sap-c++-8
comps-extras
conman
console-setup
coolkey-devel
cpptest
cpptest-devel
cppunit
cppunit-devel
cppunit-doc
cpuid
cracklib-python
crash-spu-commands
crash-spu-commands
软件包只在 IBM POWER, big endian 架构上支持,在 RHEL 8 中不支持。您可以从
上游 crash-extensions
存储库获得
spu.c crash
扩展。
crda-devel
criu-devel
crypto-utils
cryptsetup-python
ctdb-tests
RHEL 8 支持的版本控制系统是
Git
、
Mercurial
和
Subversion
。
cvs-contrib
RHEL 8 支持的版本控制系统是
Git
、
Mercurial
和
Subversion
。
cvs-doc
RHEL 8 支持的版本控制系统是
Git
、
Mercurial
和
Subversion
。
cvs-inetd
RHEL 8 支持的版本控制系统是
Git
、
Mercurial
和
Subversion
。
cvsps
cyrus-imapd-devel
dapl-devel
dapl-static
dapl-utils
dbus-doc
dbus-python-devel
dbus-tests
dbusmenu-qt
dbusmenu-qt-devel
dbusmenu-qt-devel-docs
debugmode
dejavu-lgc-sans-fonts
dejavu-lgc-sans-mono-fonts
dejavu-lgc-serif-fonts
deltaiso
device-mapper-multipath-sysvinit
dhcp-devel
dialog-devel
dleyna-connector-dbus-devel
dleyna-core-devel
dlm-devel
dmraid
需要支持组合的硬件和软件 RAID 主机总线适配器(HBA)的用户必须使用
mdadm
工具。
dmraid-devel
dmraid-events
dmraid-events-logwatch
docbook-simple
docbook-slides
docbook-utils-pdf
docbook5-style-xsl
docbook5-style-xsl-extensions
docker-rhel-push-plugin
dom4j
dom4j-demo
dom4j-javadoc
dom4j-manual
dracut-fips
dracut-fips
软件包的功能在 RHEL 8 中由
crypto-policies
软件包和
fips-mode-setup
提供。
dracut-fips-aesni
dragon
drm-utils
drpmsync
dtdinst
dumpet
dvgrab
e2fsprogs-static
edac-utils-devel
efivar-devel
egl-utils
ekiga
ElectricFence
emacs-a2ps
emacs-a2ps-el
emacs-auctex
emacs-auctex-doc
emacs-gettext
emacs-git
emacs-git-el
emacs-gnuplot
emacs-gnuplot-el
emacs-php-mode
empathy
RHEL 8 所支持的即时消息客户端是
hexchat
和
pidgin
。
enchant-aspell
enchant-voikko
eog-devel
epydoc
espeak-devel
evince-dvi
evolution-devel-docs
evolution-tests
expat-static
为
expat
XML 库提供一个静态库的
expat-static
软件包不再提供。改为使用动态链接。
expected-devel
expectk
farstream
farstream-devel
farstream-python
hugestream02-devel
fedfs-utils-admin
fedfs-utils-client
fedfs-utils-common
fedfs-utils-devel
fedfs-utils-lib
fedfs-utils-nsdbparams
fedfs-utils-python
fedfs-utils-server
felix-bundlerepository
felix-bundlerepository-javadoc
felix-framework
felix-framework-javadoc
felix-osgi-obr
felix-osgi-obr-javadoc
felix-shell
felix-shell-javadoc
fence-sanlock
festival
festival-devel
festival-docs
festival-freebsoft-utils
festival-lib
festival-speechtools-devel
festival-speechtools-libs
festival-speechtools-utils
festvox-awb-arctic-hts
festvox-bdl-arctic-hts
festvox-clb-arctic-hts
festvox-jmk-arctic-hts
festvox-kal-diphone
festvox-ked-diphone
festvox-rms-arctic-hts
festvox-slt-arctic-hts
file-roller-nautilus
file-static
filebench
filesystem-content
finch
finch-devel
finger
finger
客户端/服务器的用户可以使用
who
、
pinky
和
last
命令。对于远程机器,请在 SSH 中使用这些命令。
finger-server
fltk-fluid
fltk-static
flute-javadoc
folks
folks-devel
folks-tools
fontforge-devel
fontpackages-tools
fonttools
fop-javadoc
fprintd-devel
freeradius-python
freetype-demos
fros-gnome
fros-recordmydesktop
fuseiso
fwupd-devel
fwupdate-devel
gamin-python
gavl-devel
gcc-gnat
gcc-go
gcc-objc
gcc-objc++
gconf-editor
gd-progs
gdk-pixbuf2-tests
gdm-pam-extensions-devel
gedit-devel
gedit-plugin-bookmarks
gedit-plugin-bracketcompletion
gedit-plugin-charmap
gedit-plugin-codecomment
gedit-plugin-colorpicker
gedit-plugin-colorschemer
gedit-plugin-commander
gedit-plugin-drawspaces
gedit-plugin-findinfiles
gedit-plugin-joinlines
gedit-plugin-multiedit
gedit-plugin-smartspaces
gedit-plugin-synctex
gedit-plugin-terminal
gedit-plugin-textsize
gedit-plugin-translate
gedit-plugin-wordcompletion
gedit-plugins
gedit-plugins-data
gegl-devel
geoclue
geoclue-devel
geoclue-doc
geoclue-gsmloc
geoclue-gui
GeoIP
GeoIp
软件包已被删除。您可以将
libmaxminddb
软件包与
geoipupdate
软件包一起使用。这是上游 GeoIP 项目创建的新 API,它支持新的
mmdb
数据库格式。
GeoIP-data
GeoIP-devel
GeoIP-update
geronimo-jaspic-spec
geronimo-jaspic-spec-javadoc
geronimo-jaxrpc
geronimo-jaxrpc-javadoc
geronimo-jta
geronimo-jta-javadoc
geronimo-osgi-support
geronimo-osgi-support-javadoc
geronimo-saaj
geronimo-saaj-javadoc
ghostscript-chinese
ghostscript-chinese-zh_CN
ghostscript-chinese-zh_TW
ghostscript-cups
ghostscript-gtk
giflib-utils
gimp-data-extras
gimp-help
gimp-help-ca
gimp-help-da
IMP-help-de
IMP-help-el
IMP-help-en_GB
gIMP-help-es
gimp-help-fr
gimp-help-it
gimp-help-ja
gimp-help-ko
gimp-help-nl
gimp-help-nn
gimp-help-pt_BR
gimp-help-ru
gimp-help-sl
gimp-help-sv
gimp-help-zh_CN
git-bzr
git-cvs
git-gnome-keyring
git-hg
git-p4
gjs-tests
glade
glade3
glade3-libgladeui
glade3-libgladeui-devel
glassfish-dtd-parser
glassfish-dtd-parser-javadoc
glassfish-jaxb-javadoc
glassfish-jsp
glassfish-jsp-javadoc
glib-networking-tests
gmp-static
gnome-clocks
gnome-contacts
gnome-desktop3-tests
gnome-devel-docs
gnome-dictionary
gnome-doc-utils
gnome-doc-utils-stylesheets
gnome-documents
gnome-documents-libs
gnome-icon-theme
gnome-icon-theme-devel
gnome-icon-theme-extras
gnome-icon-theme-legacy
gnome-icon-theme-symbolic
gnome-packagekit
gnome-packagekit-common
gnome-packagekit-installer
gnome-packagekit-updater
gnome-python2
gnome-python2-bonobo
gnome-python2-canvas
gnome-python2-devel
gnome-python2-gconf
gnome-python2-gnome
gnome-python2-gnomevfs
gnome-settings-daemon-devel
gnome-shell-extension-alternate-tab
gnome-software-devel
gnome-software-editor
gnome-vfs2
gnome-vfs2-devel
gnome-vfs2-smb
gnome-weather
gnome-weather-tests
gnote
gnu-efi-utils
gnu-getopt
gnu-getopt-javadoc
gnuplot-latex
gnuplot-minimal
gom-devel
google-noto-sans-korean-fonts
google-noto-sans-simplified-chinese-fonts
google-noto-sans-traditional-chinese-fonts
gperftools
gperftools-devel
gperftools-libs
gpm-static
grafana-azure-monitor
grafana-cloudwatch
grafana-elasticsearch
grafana-graphite
grafana-influxdb
grafana-loki
grafana-mssql
grafana-mysql
grafana-opentsdb
grafana-postgres
grafana-prometheus
grafana-stackdriver
grantlee
grantlee-apidocs
grantlee-devel
graphviz-graphs
graphviz-guile
graphviz-java
graphviz-lua
graphviz-ocaml
graphviz-perl
graphviz-php
graphviz-python
graphviz-ruby
graphviz-tcl
Groff-doc
groff-perl
groff-x11
groovy
groovy-javadoc
grub2
grub2-ppc-modules
grub2-ppc64-modules
gsm-tools
gsound-devel
gssdp-utils
gstreamer
gstreamer-devel
gstreamer-devel-docs
gstreamer-plugins-bad-free
gstreamer-plugins-bad-free-devel
gstreamer-plugins-bad-free-devel-docs
gstreamer-plugins-base
gstreamer-plugins-base-devel
gstreamer-plugins-base-devel-docs
gstreamer-plugins-base-tools
gstreamer-plugins-good
gstreamer-plugins-good-devel-docs
gstreamer-python
gstreamer-python-devel
gstreamer-tools
gstreamer1-devel-docs
gstreamer1-plugins-base-devel-docs
gstreamer1-plugins-base-tools
gstreamer1-plugins-ugly-free-devel
gtk-vnc
gtk-vnc-devel
gtk-vnc-python
gtk-vnc2-devel
gtk3-devel-docs
gtk3-immodules
gtk3-tests
gtkhtml3
gtkhtml3-devel
gtksourceview3-tests
gucharmap
gucharmap-devel
gucharmap-libs
gupnp-av-devel
gupnp-av-docs
gupnp-dlna-devel
gupnp-dlna-docs
gupnp-docs
gupnp-igd-python
gutenprint-devel
gutenprint-extras
gutenprint-foomatic
gvfs-tests
gvnc-devel
gvnc-tools
gvncpulse
gvncpulse-devel
gwenview
gwenview-libs
hawkey-devel
highcontrast-qt
highcontrast-qt4
highcontrast-qt5
hispavoces-pal-diphone
hispavoces-sfl-diphone
hsakmt
hsakmt-devel
hspell-devel
hsqldb
hsqldb-demo
hsqldb-javadoc
hsqldb-manual
htdig
html2ps
http-parser-devel
httpunit
httpunit-doc
httpunit-javadoc
i2c-tools-eepromer
i2c-tools-python
ibus-pygtk2
ibus-qt
ibus-qt-devel
ibus-qt-docs
ibus-rawcode
ibus-table-devel
ibutils
ibutils-devel
ibutils-libs
icc-profiles-openicc
icon-naming-utils
im-chooser
im-chooser-common
ImageMagick
ImageMagick-c++
ImageMagick-c++-devel
ImageMagick-devel
ImageMagick-doc
ImageMagick-perl
imsettings
imsettings-devel
imsettings-gsettings
imsettings-libs
imsettings-qt
imsettings-xim
indent
infinipath-psm
infinipath-psm-devel
iniparser
iniparser-devel
ipa-gothic-fonts
ipa-idoverride-memberof-plugin
ipa-mincho-fonts
ipa-pgothic-fonts
ipa-pmincho-fonts
iperf3-devel
iproute-doc
ipsilon
ipsilon-authform
ipsilon-authgssapi
ipsilon-authldap
ipsilon-base
ipsilon-client
ipsilon-filesystem
ipsilon-infosssd
ipsilon-persona
ipsilon-saml2
ipsilon-saml2-base
ipsilon-tools-ipa
iputils-sysvinit
isdn4k-utils
isdn4k-utils-devel
isdn4k-utils-doc
isdn4k-utils-static
isdn4k-utils-vboxgetty
isomd5sum-devel
istack-commons-javadoc
ixpdimm-cli
ixpdimm-monitor
ixpdimm_sw
ixpdimm_sw-devel
jai-imageio-core
jai-imageio-core-javadoc
jakarta-taglibs-standard
jakarta-taglibs-standard-javadoc
jandex
jandex-javadoc
jansson-devel-doc
jarjar
jarjar-javadoc
jarjar-maven-plugin
jasper
jasper-utils
java-1.6.0-openjdk
java-1.6.0-openjdk-demo
java-1.6.0-openjdk-devel
java-1.6.0-openjdk-javadoc
java-1.6.0-openjdk-src
java-1.7.0-openjdk
java-1.7.0-openjdk-accessibility
java-1.7.0-openjdk-demo
java-1.7.0-openjdk-devel
java-1.7.0-openjdk-headless
java-1.7.0-openjdk-javadoc
java-1.7.0-openjdk-src
java-1.8.0-openjdk-accessibility-debug
java-1.8.0-openjdk-debug
java-1.8.0-openjdk-demo-debug
java-1.8.0-openjdk-devel-debug
Java-1.8.0-openjdk-headless-debug
java-1.8.0-openjdk-javadoc-debug
java-1.8.0-openjdk-javadoc-zip-debug
java-1.8.0-openjdk-src-debug
java-11-openjdk-debug
java-11-openjdk-demo-debug
java-11-openjdk-devel-debug
java-11-openjdk-headless-debug
java-11-openjdk-javadoc-debug
java-11-openjdk-javadoc-zip-debug
java-11-openjdk-jmods-debug
java-11-openjdk-src-debug
jbigkit
jboss-annotations-1.1-api-javadoc
jboss-ejb-3.1-api
jboss-ejb-3.1-api-javadoc
jboss-el-2.2-api
jboss-el-2.2-api-javadoc
jboss-jaxrpc-1.1-api
jboss-jaxrpc-1.1-api-javadoc
jboss-servlet-2.5-api
jboss-servlet-2.5-api-javadoc
jboss-servlet-3.0-api
jboss-servlet-3.0-api-javadoc
jboss-specs-parent
jboss-transaction-1.1-api
jboss-transaction-1.1-api-javadoc
jettison
jettison-javadoc
jetty-annotations
jetty-ant
jetty-artifact-remote-resources
jetty-assembly-descriptors
jetty-build-support
jetty-build-support-javadoc
jetty-client
jetty-continuation
jetty-deploy
jetty-distribution-remote-resources
jetty-http
jetty-io
jetty-jaas
jetty-jaspi
jetty-javadoc
jetty-jmx
jetty-jndi
jetty-jsp
jetty-jspc-maven-plugin
jetty-maven-plugin
jetty-monitor
jetty-parent
jetty-plus
jetty-project
jetty-proxy
jetty-rewrite
jetty-runner
jetty-security
jetty-server
jetty-servlet
jetty-servlets
jetty-start
jetty-test-policy
jetty-test-policy-javadoc
jetty-toolchain
jetty-util
jetty-util-ajax
jetty-version-maven-plugin
jetty-version-maven-plugin-javadoc
jetty-webapp
jetty-websocket-api
jetty-websocket-client
jetty-websocket-common
jetty-websocket-parent
jetty-websocket-server
jetty-websocket-servlet
jetty-xml
jing-javadoc
jline-demo
jna-contrib
jna-javadoc
joda-convert
joda-convert-javadoc
js-devel
jsch-demo
json-glib-tests
jsr-311
jsr-311-javadoc
junit-demo
k3b-common
k3b-devel
k3b-libs
kaccessable
kaccessible-libs
kivities
kactivities-devel
kamera
kate-devel
kate-libs
kate-part
kcalc
kcharselect
kcm-gtk
kcm_colors
kcm_touchpad
kcolorchooser
kcoloredit
kde-base-artwork
kde-baseapps
kde-baseapps-devel
kde-baseapps-libs
kde-filesystem
kde-l10n
kde-l10n-Arabic
kde-l10n-Basque
kde-l10n-Bosnian
kde-l10n-British
kde-l10n-Bulgarian
kde-l10n-Catalan
kde-l10n-Catalan-Valencian
kde-l10n-Chinese
kde-l10n-Croatian
kde-l10n-Czech
kde-l10n-Danish
kde-l10n-Dutch
kde-l10n-Estonian
kde-l10n-Farsi
kde-l10n-Finnish
kde-l10n-Galician
kde-l10n-Greek
kde-l10n-Hebrew
kde-l10n-Hungarian
kde-l10n-Icelandic
kde-l10n-Interlingua
kde-l10n-Irish
kde-l10n-Kazakh
kde-l10n-Khmer
kde-l10n-Latvian
kde-l10n-Lithuanian
kde-l10n-LowSaxon
kde-l10n-Norwegian
kde-l10n-Norwegian-Nynorsk
kde-l10n-Polish
kde-l10n-Portuguese
kde-l10n-Romanian
kde-l10n-Serbian
kde-l10n-Slovak
kde-l10n-Slovenian
kde-l10n-Swedish
kde-l10n-Tajik
kde-l10n-Thai
kde-l10n-Turkish
kde-l10n-Ukrainian
kde-l10n-Uyghur
kde-l10n-Vietnamese
kde-l10n-Walloon
kde-plasma-networkmanagement
kde-plasma-networkmanagement-libreswan
kde-plasma-networkmanagement-libs
kde-plasma-networkmanagement-mobile
kde-print-manager
kde-runtime
kde-runtime-devel
kde-runtime-drkonqi
kde-runtime-libs
kde-settings
kde-settings-ksplash
kde-settings-minimal
kde-settings-plasma
kde-settings-pulseaudio
kde-style-oxygen
kde-style-phase
kde-wallpapers
kde-workspace
kde-workspace-devel
kde-workspace-ksplash-themes
kde-workspace-libs
kdeaccessibility
kdeadmin
kdeartwork
kdeartwork-screensavers
kdeartwork-sounds
kdeartwork-wallpapers
kdeclassic-cursor-theme
kdegraphics
kdegraphics-devel
kdegraphics-libs
kdegraphics-strigi-analyzer
kdegraphics-thumbnailers
kdelibs
kdelibs-apidocs
kdelibs-common
kdelibs-devel
kdelibs-ktexteditor
kdemultimedia
kdemultimedia-common
kdemultimedia-devel
kdemultimedia-libs
kdenetwork
kdenetwork-common
kdenetwork-devel
kdenetwork-fileshare-samba
kdenetwork-kdnssd
kdenetwork-kget
kdenetwork-kget-libs
kdenetwork-kopete
kdenetwork-kopete-devel
kdenetwork-kopete-libs
kdenetwork-krdc
kdenetwork-krdc-devel
kdenetwork-krdc-libs
kdenetwork-krfb
kdenetwork-krfb-libs
kdepim
kdepim-devel
kdepim-libs
kdepim-runtime
kdepim-runtime-libs
kdepimlibs
kdepimlibs-akonadi
kdepimlibs-apidocs
kdepimlibs-devel
kdepimlibs-kxmlrpcclient
kdeplasma-addons
kdeplasma-addons-devel
kdeplasma-addons-libs
kdesdk
kdesdk-cervisia
kdesdk-common
kdesdk-devel
kdesdk-dolphin-plugins
kdesdk-kapptemplate
kdesdk-kapptemplate-template
kdesdk-kcachegrind
kdesdk-kioslave
kdesdk-kmtrace
kdesdk-kmtrace-devel
kdesdk-kmtrace-libs
kdesdk-kompare
kdesdk-kompare-devel
kdesdk-kompare-libs
kdesdk-kpartloader
kdesdk-kstartperf
kdesdk-kuiviewer
kdesdk-lokalize
kdesdk-okteta
kdesdk-okteta-devel
kdesdk-okteta-libs
kdesdk-poxml
kdesdk-scripts
kdesdk-strigi-analyzer
kdesdk-thumbnailers
kdesdk-umbrello
kdeutils
kdeutils-common
kdeutils-minimal
kernel-bootwrapper
kernel-rt-doc
kernel-rt-trace
kernel-rt-trace-devel
kernel-rt-trace-kvm
keytool-maven-plugin
keytool-maven-plugin-javadoc
kgamma
kgreeter-plugins
khotkeys
khotkeys-libs
kiconedit
kinfocenter
kio_sysinfo
kmenuedit
kmod-oracleasm
kolourpaint
kolourpaint-libs
konkretcmpi
konkretcmpi-devel
konkretcmpi-python
konsole
konsole-part
kross-interpreters
kross-python
kross-ruby
kruler
ksaneplugin
kscreen
ksnapshot
ksshaskpass
ksysguard
ksysguard-libs
ksysguardd
ktimer
kwallet
kwin-gles
kwin-gles-libs
kwin-libs
kwrite
kxml-javadoc
langtable-data
lapack64-devel
lapack64-static
lasso-python
latencytop
latencytop-common
latencytop-tui
latrace
lcms2-utils
ldns-doc
ldns-python
libabw-devel
libabw-doc
libabw-tools
libappindicator
libappindicator-devel
libappindicator-docs
libappstream-glib-builder
libappstream-glib-builder-devel
libart_lgpl
libart_lgpl-devel
libasan-static
libavc1394-devel
libbase-javadoc
libblockdev-btrfs
libblockdev-btrfs-devel
libblockdev-dm-devel
libblockdev-kbd-devel
libblockdev-mpath-devel
libblockdev-nvdimm-devel
libbluedevil
libbluedevil-devel
libbluray-devel
libbonobo
libbonobo-devel
libbonoboui
libbonoboui-devel
libbytesize-devel
libcacard-tools
libcap-ng-python
libcdr-devel
libcdr-doc
libcdr-tools
libcgroup-devel
libchamplain-demos
libchewing
libchewing-devel
libchewing-python
libcmis-devel
libcmis-tools
libcmpiutil
libcmpiutil-devel
libcryptui
libcryptui-devel
libdb-devel-static
libdb-java
libdb-java-devel
libdb-tcl
libdb-tcl-devel
libdbi
libdbi-dbd-mysql
libdbi-dbd-pgsql
libdbi-dbd-sqlite
libdbi-devel
libdbi-drivers
libdbusmenu-gtk2
libdbusmenu-gtk2-devel
libdbusmenu-jsonloader
libdbusmenu-jsonloader-devel
libdbusmenu-tools
libdhash-devel
libdmapsharing-devel
libdmmp-devel
libdmx-devel
libdnet-progs
libdnet-python
libdv-tools
libdvdnav-devel
libeasyfc-devel
libeasyfc-gobject-devel
libee
libee-devel
libee-utils
libesmtp
libesmtp-devel
libestr-devel
libetonyek-doc
libetonyek-tools
libevdev-utils
libexif-doc
libexttextcat-devel
libexttextcat-tools
libfastjson-devel
libfonts-javadoc
libformula-javadoc
libfprint-devel
libfreehand-devel
libfreehand-doc
libfreehand-tools
libgcab1-devel
libgccjit
libgdither-devel
libgee06
libgee06-devel
libgepub
libgepub-devel
libgfortran-static
libgfortran4
libgfortran5
libglade2
libglade2-devel
libGLEWmx
libgnat
libgnat-devel
libgnat-static
libgnome
libgnome-devel
libgnome-keyring-devel
libgnomecanvas
libgnomecanvas-devel
libgnomeui
libgnomeui-devel
libgo
libgo-devel
libgo-static
libgovirt-devel
libgudev1-devel
libgxim
libgxim-devel
libgxps-tools
libhangul-devel
libhbaapi-devel
libhif-devel
libibcommon
libibcommon-devel
libibcommon-static
libical-glib
libical-glib-devel
libical-glib-doc
libid3tag
libid3tag-devel
libiec61883-utils
libieee1284-python
libimobiledevice-python
libimobiledevice-utils
libindicator
libindicator-devel
libindicator-gtk3-tools
libindicator-tools
libinvm-cim
libinvm-cim-devel
libinvm-cli
libinvm-cli-devel
libinvm-i18n
libinvm-i18n-devel
libiodbc
libiodbc-devel
libipa_hbac-devel
libiptcdata-devel
libiptcdata-python
libitm-static
libixpdimm-cim
libixpdimm-core
libjpeg-turbo-static
libkcddb
libkcddb-devel
libkcompactdisc
libkcompactdisc-devel
libkdcraw
libkdcraw-devel
libkexiv2
libkexiv2-devel
libkipi
libkipi-devel
libkkc-devel
libkc-tools
libksane
libksane-devel
libkscreen
libkscreen-devel
libkworkspace
liblayout-javadoc
libloader-javadoc
liblognorm-devel
liblouis-devel
liblouis-doc
liblouis-utils
libmatchbox-devel
libmaxminddb-devel-debuginfo
libmbim-devel
libmediaart-devel
libmediaart-tests
libmnl-static
libmodman-devel
libmsn
libmsn-devel
libmspub-devel
libmspub-doc
libmspub-tools
libmtp-examples
libmudflap
libmudflap-devel
libmudflap-static
libmwaw-devel
libmwaw-doc
libmwaw-tools
libmx
libmx-devel
libmx-docs
libndp-devel
libnetfilter_cthelper-devel
libnetfilter_cttimeout-devel
libnl
libnl-devel
libnm-gtk
libnm-gtk-devel
libntlm
libntlm-devel
libobjc
libocxl-docs
libodfgen-doc
libofa
libofa-devel
liboil
liboil-devel
libopenraw-pixbuf-loader
liborcus-devel
liborcus-doc
liborcus-tools
libosinfo-devel
libosinfo-vala
libotf-devel
libpagemaker-devel
libpagemaker-doc
libpagemaker-tools
libpinyin-tools
libpipeline-devel
libplist-python
libpmemcto
libpmemcto-debug
libpmemcto-devel
libpmemobj++-devel
libpng-static
libpng12-devel
libproxy-kde
libpst
libpst-devel
libpst-devel-doc
libpst-doc
libpst-python
libpurple-perl
libpurple-tcl
libqmi-devel
libquadmath-static
LibRaw-static
librelp-devel
libreoffice
libreoffice-bsh
libreoffice-glade
libreoffice-librelogo
libreoffice-nlpsolver
libreoffice-officebean
libreoffice-officebean-common
libreoffice-postgresql
libreoffice-rhino
libreofficekit-devel
libreport-compat
libreport-devel
libreport-gtk-devel
libreport-web-devel
librepository-javadoc
librevenge-doc
libselinux-static
libsemanage-static
libserializer-javadoc
libsexy
libsexy-devel
libsmbios-devel
libsndfile-utils
libsolv-demo
libspiro-devel
libss-devel
libssh2
因为存在对
qemu-kvm
的依赖关系,
libssh2
软件包在 RHEL 8.0 中临时可用。从 RHEL 8.1 开始,QEMU 模拟器使用
libssh
库,并且删除了
libssh2
。
libssh2-devel
libssh2-docs
libsss_certmap-devel
libsss_idmap-devel
libsss_simpleifp-devel
libstaroffice-devel
libstaroffice-doc
libstaroffice-tools
libstoragemgmt-targetd-plugin
libtar-devel
libteam-devel
libtheora-devel-docs
libtiff-static
libtimezonemap-devel
libtnc
libtnc-devel
libtranslit
libtranslit-devel
libtranslit-icu
libtranslit-m17n
libtsan-static
libuninameslist-devel
libunwind
libunwind-devel
libusal-devel
libusb-static
libusbmuxd-utils
libuser-devel
libusnic_verbs
libvdpau-docs
libverto-glib
libverto-glib-devel
libverto-libevent-devel
libverto-tevent
libverto-tevent-devel
libvirt-cim
libvirt-daemon-driver-lxc
libvirt-daemon-lxc
libvirt-gconfig-devel
libvirt-glib-devel
libvirt-gobject-devel
libvirt-java
libvirt-java-devel
libvirt-java-javadoc
libvirt-login-shell
libvirt-snmp
libvisio-doc
libvisio-tools
libvma-devel
libvma-utils
libvpx-utils
libwebp-java
libwebp-tools
libwpd-tools
libwpg-tools
libwps-tools
libwvstreams
libwvstreams-devel
libwvstreams-static
libxcb-doc
libXevie
libXevie-devel
libXfont
libXfont-devel
libxml2-static
libxslt-python
libzapojit
libzapojit-devel
libzmf-devel
libzmf-doc
libzmf-tools
lldpad-devel
log4cxx
log4cxx-devel
log4j-manual
lpsolve-devel
lua-static
lvm2-cluster
lvm2-python-libs
lvm2-sysvinit
lz4-static
m17n-contrib
m17n-contrib-extras
m17n-db-devel
m17n-db-extras
m17n-lib-devel
m17n-lib-tools
m2crypto
malaga-devel
man-pages-cs
man-pages-es
man-pages-es-extra
man-pages-fr
man-pages-it
man-pages-ja
man-pages-ko
man-pages-pl
man-pages-ru
man-pages-zh-CN
mariadb-bench
marisa-devel
marisa-perl
marisa-python
marisa-ruby
marisa-tools
maven-changes-plugin
maven-changes-plugin-javadoc
maven-deploy-plugin
maven-deploy-plugin-javadoc
maven-doxia-module-fo
maven-ear-plugin
maven-ear-plugin-javadoc
maven-ejb-plugin
maven-ejb-plugin-javadoc
maven-error-diagnostics
maven-gpg-plugin
maven-gpg-plugin-javadoc
maven-istack-commons-plugin
maven-jarsigner-plugin
maven-jarsigner-plugin-javadoc
maven-javadoc-plugin
maven-javadoc-plugin-javadoc
maven-jxr
maven-jxr-javadoc
maven-osgi
maven-osgi-javadoc
maven-plugin-jxr
maven-project-info-reports-plugin
maven-project-info-reports-plugin-javadoc
maven-release
maven-release-javadoc
maven-release-manager
maven-release-plugin
maven-reporting-exec
maven-repository-builder
maven-repository-builder-javadoc
maven-scm
maven-scm-javadoc
maven-scm-test
maven-shared-jar
maven-shared-jar-javadoc
maven-site-plugin
maven-site-plugin-javadoc
maven-verifier-plugin
maven-verifier-plugin-javadoc
maven-wagon-provider-test
maven-wagon-scm
maven-war-plugin
maven-war-plugin-javadoc
mdds-devel
meanwhile-devel
meanwhile-doc
memcached-devel
memstomp
mesa-demos
mesa-libxatracker-devel
mesa-private-llvm
mesa-private-llvm-devel
metacity-devel
mgetty
可以使用
agetty
通过串行进行登录。用户可以使用其他方式进行传真(网页传真、多功能打印机等)。
mgetty-sendfax
mgetty-viewfax
mgetty-voice
migrationtools
minizip
minizip-devel
mipv6-daemon
mkbootdisk
mod_revocator
ModemManager-vala
mono-icon-theme
mozjs17
mozjs17-devel
mozjs24
mozjs24-devel
mpage
mpich-3.0-autoload
mpich-3.0-doc
mpich-3.2-autoload
mpich-3.2-doc
mpitests-compat-openmpi16
msv-demo
msv-javadoc
msv-manual
msv-msv
msv-rngconv
msv-xmlgen
msv-xsdlib
mvapich2-2.0-devel
mvapich2-2.0-doc
mvapich2-2.0-psm-devel
mvapich2-2.2-devel
mvapich2-2.2-doc
mvapich2-2.2-psm-devel
mvapich2-2.2-psm2-devel
mvapich23-devel
mvapich23-doc
mvapich23-psm-devel
mvapich23-psm2-devel
nagios-plugins-bacula
nasm-doc
nasm-rdoff
ncurses-static
nekohtml
nekohtml-demo
nekohtml-javadoc
nepomuk-core
nepomuk-core-devel
nepomuk-core-libs
nepomuk-widgets
nepomuk-widgets-devel
net-snmp-gui
net-snmp-python
net-snmp-sysvinit
netsniff-ng
NetworkManager-glib
NetworkManager-glib-devel
newt-static
nfsometer
nfstest
nhn-nanum-brush-fonts
nhn-nanum-fonts-common
nhn-nanum-myeongjo-fonts
nhn-nanum-pen-fonts
nmap-frontend
nss-pem
nss-pkcs11-devel
nss_compat_ossl
nss_compat_ossl-devel
ntp-doc
ntp-perl
nuvola-icon-theme
nuxwdog
nuxwdog-client-java
nuxwdog-client-perl
nuxwdog-devel
obex-data-server
obexd
objectweb-anttask
objectweb-anttask-javadoc
ocaml-brlapi
ocaml-calendar
ocaml-calendar-devel
ocaml-csv
ocaml-csv-devel
ocaml-curses
ocaml-curses-devel
ocaml-docs
ocaml-emacs
ocaml-fileutils
ocaml-fileutils-devel
ocaml-gettext
ocaml-gettext-devel
ocaml-libvirt
ocaml-libvirt-devel
ocaml-ocamlbuild-doc
ocaml-source
ocaml-x11
ocaml-xml-light
ocaml-xml-light-devel
oci-register-machine
okular
okular-devel
okular-libs
okular-part
opa-libopamgt-devel
opal-devel
open-vm-tools-devel
open-vm-tools-test
opencc
opencc-devel
opencc-doc
opencc-tools
openchange-client
openchange-devel
openchange-devel-docs
opencv-devel-docs
opencv-python
openhpi-devel
OpenIPMI-modalias
openjpeg-libs
openldap-servers
RHEL 版本 8.1-8.5 中不存在
openldap-servers
软件包。
openldap-servers-sql
openlmi
openlmi-account
openlmi-account-doc
openlmi-fan
openlmi-fan-doc
openlmi-hardware
openlmi-hardware-doc
openlmi-indicationmanager-libs
openlmi-indicationmanager-libs-devel
openlmi-journald
openlmi-journald-doc
openlmi-logicalfile
openlmi-logicalfile-doc
openlmi-networking
openlmi-networking-doc
openlmi-pcp
openlmi-powermanagement
openLMI-powermanagement-doc
openlmi-providers
openlmi-providers-devel
openlmi-python-base
openlmi-python-providers
openlmi-python-test
openlmi-realmd
openlmi-realmd-doc
openlmi-service
openlmi-service-doc
openlmi-software
openlmi-software-doc
openlmi-storage
openlmi-storage-doc
openlmi-tools
openlmi-tools-doc
openobex
客户可以使用
gnome-bluetooth
,通过蓝牙在 PC 和移动设备之间传输文件,或者使用
gvfs-afc
在移动设备上读取文件。使用 OBEX 协议的应用程序需要重写。
openobex-apps
openobex-devel
openscap-containers
openslp-devel
openslp-server
opensm-static
openssh-server-sysvinit
openssl-static
openssl098e
openvswitch
openvswitch-controller
openvswitch-test
openwsman-perl
openwsman-ruby
oprofile-devel
oprofile-gui
oprofile-jit
optipng
ORBit2
ORBit2-devel
orc-doc
ortp-devel
oscilloscope
oxygen-cursor-themes
oxygen-gtk
oxygen-gtk2
oxygen-gtk3
oxygen-icon-theme
PackageKit-yum-plugin
pakchois-devel
pam_snapper
pango-tests
paps-devel
passivetex
pciutils-devel-static
pcp-collector
pcp-manager
pcp-monitor
pcp-pmda-rpm
pcre-tools
pcre2-static
pentaho-libxml-javadoc
pentaho-reporting-flow-engine-javadoc
perl-AppConfig
Perl-Archive-Extract
perl-B-Keywords
perl-Browser-Open
perl-Business-ISBN
perl-Business-ISBN-Data
Perl-CGI-Session
perl-Class-Load
perl-Class-Load-XS
perl-Config-Simple
perl-Config-Tiny
perl-CPAN-Changes
perl-CPANPLUS
perl-CPANPLUS-Dist-Build
perl-Crypt-CBC
perl-Crypt-DES
perl-Crypt-PasswdMD5
perl-Crypt-SSLeay
perl-CSS-Tiny
perl-Data-Peek
perl-DateTime-Format-DateParse
perl-DBD-Pg-tests
perl-DBIx-Simple
Perl-Devel-Cover
Perl-Devel-Cycle
perl-Devel-EnforceEncapsulation
Perl-Devel-Leak
perl-Email-Address
perl-FCGI
perl-File-Find-Rule-Perl
perl-File-Inplace
perl-Font-AFM
perl-Font-TTF
perl-FreezeThaw
perl-GD
perl-GD-Barcode
perl-Hook-LexWrap
perl-HTML-Format
perl-HTML-FormatText-WithLinks
perl-HTML-FormatText-WithLinks-AndTables
perl-Image-Base
perl-Image-Info
perl-Image-Xbm
perl-Image-Xpm
Perl-Inline
Perl-Inline-Files
perl-IO-CaptureOutput
perl-JSON-tests
perl-libxml-perl
perl-Locale-Maketext-Gettext
perl-Locale-PO
perl-Log-Message
perl-Log-Message-Simple
perl-Mixin-Lineether
perl-Module-Manifest
perl-Module-Signature
perl-Net-Daemon
perl-Net-DNS-Nameserver
perl-Net-DNS-Resolver-Programmable
perl-Net-LibIDN
perl-Net-Telnet
perl-Newt
perl-Object-Accessor
perl-Object-Deadly
perl-Package-Constants
perl-PAR-Dist
Perl-Parallel-Iterator
perl-Parse-CPAN-Meta
perl-Parse-RecDescent
Perl-Perl-Critic
perl-Perl-Critic-More
perl-Perl-MinimumVersion
perl-Perl4-CoreLibs
perl-PlRPC
perl-Pod-Coverage-TrustPod
perl-Pod-Eventual
perl-Pod-POM
perl-Pod-Spell
Perl-PPI
perl-PPI-HTML
perl-PPIx-Regexp
perl-PPIx-Utilities
perl-Probe-Perl
perl-Readonly-XS
perl-Sort-Versions
perl-String-Format
perl-String-Similarity
perl-Syntax-Highlight-Engine-Kate
perl-Task-Weaken
perl-Template-Toolkit
perl-Term-UI
perl-Test-ClassAPI
perl-Test-CPAN-Meta
perl-Test-DistManifest
perl-Test-EOL
perl-Test-HasVersion
perl-Test-Inter
Perl-Test-Manifest
Perl-Test-Memory-Cycle
perl-Test-MinimumVersion
perl-Test-MockObject
perl-Test-NoTabs
perl-Test-Object
perl-Test-Output
perl-Test-Perl-Critic
Perl-Test-Perl-Critic-Policy
perl-Test-Portability-Files
perl-Test-Script
perl-Test-Spelling
perl-Test-SubCalls
perl-Test-Synopsis
perl-Test-Tester
perl-Test-Vars
perl-Test-Without-Module
perl-Text-CSV_XS
perl-Text-Iconv
perl-Tree-DAG_Node
perl-Unicode-Map8
perl-Unicode-String
perl-universal-can
perl-universal-isa
perl-Version-Requirements
perl-WWW-Curl
perl-XML-Dumper
perl-XML-Filter-BufferText
perl-XML-Grove
perl-XML-Handler-YAWriter
perl-XML-LibXSLT
perl-XML-SAX-Writer
perl-XML-TreeBuilder
perl-XML-Writer
perl-XML-XPathEngine
phonon
phonon-backend-gstreamer
phonon-devel
php-pecl-memcache
php-pspell
pidgin-perl
pinentry-qt
pinentry-qt4
pki-javadoc
plasma-scriptengine-python
plasma-scriptengine-ruby
plexus-digest
plexus-digest-javadoc
plexus-mail-sender
plexus-mail-sender-javadoc
plexus-tools-pom
plymouth-devel
pm-utils
pm-utils-devel
pngcrush
pngnq
polkit-kde
polkit-qt
polkit-qt-devel
polkit-qt-doc
poppler-demos
poppler-qt
poppler-qt-devel
popt-static
postfix-sysvinit
pothana2000-fonts
powerpc-utils-python
pprof
pps-tools
pptp-setup
procps-ng-devel
protobuf-emacs
protobuf-emacs-el
protobuf-java
protobuf-javadoc
protobuf-lite-static
protobuf-python
protobuf-static
protobuf-vim
psutils
psutils-perl
pth-devel
ptlib
ptlib-devel
publican
publican-common-db5-web
publican-common-web
publican-doc
publican-redhat
pulseaudio-esound-compat
pulseaudio-module-gconf
pulseaudio-module-zeroconf
pulseaudio-qpaeq
pygpgme
pygtk2-libglade
pykde4
pykde4-akonadi
pykde4-devel
pyldb-devel
pyliblzma
PyOpenGL
PyOpenGL-Tk
pyOpenSSL-doc
pyorbit
pyorbit-devel
PyPAM
pyparsing-doc
PyQt4
PyQt4-devel
pytalloc-devel
python-adal
python-appindicator
python-beaker
python-cffi-doc
python-cherrypy
python-criu
python-deltarpm
python-di
python-dmidecode
python-dtopt
python-fpconst
python-gpod
python-gudev
python-inotify-examples
python-ipaddr
python-IPy
python-isodate
python-isomd5sum
python-kitchen
python-kitchen-doc
python-libteam
python-libvoikko
python-lxml-docs
python-matplotlib
python-matplotlib-doc
python-matplotlib-qt4
python-matplotlib-tk
python-memcached
python-msrest
python-msrestazure
python-mutagen
python-openvswitch
python-paramiko
python-paramiko-doc
python-paste
python-pillow-devel
python-pillow-doc
python-pillow-qt
python-pillow-sane
python-pillow-tk
python-pyblock
python-rados
python-rbd
python-reportlab-docs
python-rtslib-doc
python-setproctitle
python-slip-gtk
python-smbc
python-smbc-doc
python-smbios
python-sphinx-doc
python-sphinx-theme-openlmi
python-tempita
python-tornado
python-tornado-doc
python-twisted-core
python-twisted-core-doc
python-twisted-web
python-twisted-words
python-urlgrabber
python-volume_key
python-webob
python-webtest
python-which
python-zope-interface
python2-caribou
python2-futures
python2-gexiv2
python2-gluster
python2-smartcols
python2-solv
python2-subprocess32
python3-debug
python3-devel
qca-ossl
qca2-devel
qimageblitz
qimageblitz-devel
qimageblitz-examples
qjson
qjson-devel
qpdf-devel
qt-assistant
qt-config
qt-demos
qt-devel
qt-devel-private
qt-doc
qt-examples
qt-mysql
qt-odbc
qt-postgresql
qt-qdbusviewer
qt-qvfb
qt-settings
qt-x11
qt3-config
qt3-designer
qt3-devel
qt3-devel-docs
qt3-MySQL
qt3-ODBC
qt3-PostgreSQL
qt5-qt3d-doc
qt5-qtbase-doc
qt5-qtcanvas3d-doc
qt5-qtconnectivity-doc
qt5-qtdeclarative-doc
qt5-qtenginio
qt5-qtenginio-devel
qt5-qtenginio-doc
qt5-qtenginio-examples
qt5-qtgraphicaleffects-doc
qt5-qtimageformats-doc
qt5-qtlocation-doc
qt5-qtmultimedia-doc
qt5-qtquickcontrols-doc
qt5-qtquickcontrols2-doc
qt5-qtscript-doc
qt5-qtsensors-doc
qt5-qtserialbus-doc
qt5-qtserialport-doc
qt5-qtsvg-doc
qt5-qttools-doc
qt5-qtwayland-doc
qt5-qtwebchannel-doc
qt5-qtwebsockets-doc
qt5-qtx11extras-doc
qt5-qtxmlpatterns-doc
quagga
从 RHEL 8.1 开始,Qgga 已被一个新的路由协议堆栈 Free Range Routing(FRRouting 或 FRR)替代,后者由 AppStream 存储库中的
frr
软件包提供。FRR 提供基于 TCP/IP 的路由服务,支持多种 IPv4 和 IPv6 路由协议,如 BGP、IS-IS、OSPF、PIM 和 RIP。
quagga-contrib
qv4l2
rarian-devel
ras-utils
RHEL 8 支持的版本控制系统是
Git
、
Mercurial
和
Subversion
。
rdate
rdist
readline-static
realmd-devel-docs
Red_Hat_Enterprise_Linux-Release_Notes-7-as-IN
Red_Hat_Enterprise_Linux-Release_Notes-7-bn-IN
Red_Hat_Enterprise_Linux-Release_Notes-7-de-DE
Red_Hat_Enterprise_Linux-Release_Notes-7-en-US
Red_Hat_Enterprise_Linux-Release_Notes-7-es-ES
Red_Hat_Enterprise_Linux-Release_Notes-7-fr-FR
Red_Hat_Enterprise_Linux-Release_Notes-7-gu-IN
Red_Hat_Enterprise_Linux-Release_Notes-7-hi-IN
Red_Hat_Enterprise_Linux-Release_Notes-7-it-IT
Red_Hat_Enterprise_Linux-Release_Notes-7-ja-JP
Red_Hat_Enterprise_Linux-Release_Notes-7-kn-IN
Red_Hat_Enterprise_Linux-Release_Notes-7-ko-KR
Red_Hat_Enterprise_Linux-Release_Notes-7-ml-IN
Red_Hat_Enterprise_Linux-Release_Notes-7-mr-IN
Red_Hat_Enterprise_Linux-Release_Notes-7-or-IN
Red_Hat_Enterprise_Linux-Release_Notes-7-pa-IN
Red_Hat_Enterprise_Linux-Release_Notes-7-pt-BR
Red_Hat_Enterprise_Linux-Release_Notes-7-ru-RU
Red_Hat_Enterprise_Linux-Release_Notes-7-ta-IN
Red_Hat_Enterprise_Linux-Release_Notes-7-te-IN
Red_Hat_Enterprise_Linux-Release_Notes-7-zh-CN
Red_Hat_Enterprise_Linux-Release_Notes-7-zh-TW
redhat-access-gui
redhat-access-plugin-ipa
redhat-bookmarks
redhat-lsb-supplemental
redhat-lsb-trialuse
redhat-upgrade-dracut
redhat-upgrade-dracut-plymouth
redhat-upgrade-tool
redland-mysql
redland-pgsql
redland-virtuoso
relaxngcc
relaxngcc-javadoc
relaxngDatatype-javadoc
rest-devel
resteasy-base-jettison-provider
resteasy-base-tjws
rfkill
rhdb-utils
rhino
rhino-demo
rhino-javadoc
rhino-manual
rhythmbox-devel
rngom
rngom-javadoc
rp-pppoe
rrdtool-php
rrdtool-python
要登录到远程系统,请使用 SSH。
rsh-server
rsyslog-libdbi
rtcheck
rtctl
rteval-common
ruby-tcltk
rubygem-did_you_mean
rubygem-net-http-persistent
rubygem-net-http-persistent-doc
rubygem-thor
rubygem-thor-doc
rusers
rusers-server
sac-javadoc
samba-dc
samba-dc-libs
sanlock-python
sapconf
satyr-devel
satyr-python
saxon
saxon-demo
saxon-javadoc
saxon-manual
saxon-scripts
sbc-devel
sblim-cim-client2
sblim-cim-client2-javadoc
sblim-cim-client2-manual
sblim-cmpi-base-devel
sblim-cmpi-base-test
sblim-cmpi-fsvol
sblim-cmpi-fsvol-devel
sblim-cmpi-fsvol-test
sblim-cmpi-network
sblim-cmpi-network-devel
sblim-cmpi-network-test
sblim-cmpi-nfsv3
sblim-cmpi-nfsv3-test
sblim-cmpi-nfsv4
sblim-cmpi-nfsv4-test
sblim-cmpi-params
sblim-cmpi-params-test
sblim-cmpi-sysfs
sblim-cmpi-sysfs-test
sblim-cmpi-syslog
sblim-cmpi-syslog-test
sblim-gather-devel
sblim-gather-test
sblim-indication_helper-devel
sblim-smis-hba
sblim-testsuite
scannotation
scannotation-javadoc
scpio
screen
SDL-static
sdparm
seahorse-nautilus
seahorse-sharing
sendmail-sysvinit
setools-devel
setools-libs-tcl
setuptool
shared-desktop-ontology
shared-desktop-ontologies-devel
shim-unsigned-ia32
shim-unsigned-x64
sisu-parent
slang-slsh
slang-static
smbios-utils
smbios-utils-bin
smbios-utils-python
snakeyaml
snakeyaml-javadoc
snapper
snapper-devel
snapper-libs
SOAPpy
soprano
soprano-apidocs
soprano-devel
source-highlight-devel
sox-devel
speex-tools
spice-streaming-agent
spice-streaming-agent-devel
spice-xpi
sqlite-tcl
squid-migration-script
squid-sysvinit
sssd-libwbclient
sssd-libwbclient-devel
stax2-api
stax2-api-javadoc
strigi
strigi-devel
strigi-libs
strongimcv
subscription-manager-migration
subscription-manager-plugin-container
subversion-kde
subversion-python
subversion-ruby
sudo-devel
suitesparse-doc
suitesparse-static
supermin-helper
svgpart
svrcore
svrcore-devel
sweeper
syslinux-devel
syslinux-perl
system-config-date
system-config-date-docs
system-config-firewall
system-config-firewall-base
system-config-firewall-tui
system-config-keyboard
system-config-keyboard-base
system-config-kickstart
system-config-language
system-config-printer
已删除
system-config-printer
软件包。其工作站功能已包含在
gnome-control-center
中,CUPS Web UI 涵盖其服务器用例。
system-config-users-docs
system-switch-java
systemd-sysv
t1lib
t1lib-apps
t1lib-devel
t1lib-static
t1utils
taglib-doc
talk-server
tang-nagios
targetd
tcl-pgtcl
tclx-devel
tcp_wrappers
请参阅
替换 RHEL 8 中的 TCP wrapper
。
tcp_wrappers-devel
tcp_wrappers-libs
teamd-devel
teckit-devel
telepathy-farstream
telepathy-farstream-devel
telepathy-filesystem
telepathy-gabble
telepathy-glib
telepathy-glib-devel
telepathy-glib-vala
telepathy-haze
telepathy-logger
telepathy-logger-devel
telepathy-mission-control
telepathy-mission-control-devel
telepathy-salut
tex-preview
texlive-collection-documentation-base
texlive-mh
texlive-mh-doc
texlive-misc
texlive-thailatex
texlive-thailatex-doc
tigervnc-server-applet
tix-doc
tn5250
tn5250-devel
tncfhh
tncfhh-devel
tncfhh-examples
tncfhh-libs
tncfhh-utils
tog-pegasus-test
tokyocabinet-devel-doc
tomcat
Apache Tomcat 服务器已从 RHEL 8.0 中删除,但在 RHEL 8.8 中被重新引入。Apache Tomcat 是一个 Java Servlet 和 JavaServer Pages(JSP)技术的 servlet 容器。与 RHEL 8.8 相比,需要 servlet 容器的早期次版本的用户可以使用
JBoss Web Server
。
tomcat-admin-webapps
tomcat-docs-webapp
tomcat-el-2.2-api
tomcat-javadoc
tomcat-jsp-2.2-api
tomcat-jsvc
tomcat-lib
tomcat-servlet-3.0-api
tomcat-webapps
totem-devel
totem-pl-parser-devel
traceer-docs
tracker-needle
traceer-preferences
trang
trousers-static
txw2-javadoc
udisks2-vdo
unique3
unique3-devel
unique3-docs
unoconv
uriparser
uriparser-devel
usbguard-devel
usbredir-server
usnic-tools
ustr-debug
ustr-debug-static
ustr-devel
ustr-static
uuid-c++
uuid-c++-devel
uuid-dce
uuid-dce-devel
uuid-perl
uuid-php
v4l-utils
v4l-utils-devel-tools
vala-doc
valadoc
valadoc-devel
valgrind-openmpi
vemana2000-fonts
vigra
vigra-devel
virtuoso-opensource
virtuoso-opensource-utils
vlgothic-p-fonts
vsftpd-sysvinit
vte3-devel
wayland-doc
webkit2gtk3-plugin-process-gtk2
webkit2gtk3-plugin-process-gtk2
软件包已被删除,因为 WebKitGTK 2.26 删除了对链接 GTK 2 的 NPAPI 插件的支持。值得注意的是,这意味着 Adobe Flash 不再正常工作。
webkitgtk3
webkitgtk3-devel
webkitgtk3-doc
webkitgtk4-doc
webrtc-audio-processing-devel
woodstox-core
woodstox-core-javadoc
wordnet
wordnet-browser
wordnet-devel
wordnet-doc
ws-commons-util
ws-commons-util-javadoc
ws-jaxme
ws-jaxme-javadoc
ws-jaxme-manual
wsdl4j
wsdl4j-javadoc
wvdial
x86info
xchat-tcl
xdg-desktop-portal-devel
xerces-c
xerces-c-devel
xerces-c-doc
xferstats
xguest
xhtml2fo-style-xsl
xhtml2ps
xisdnload
xml-commons-apis12
xml-commons-apis12-javadoc
xml-commons-apis12-manual
xmlgraphics-commons
xmlgraphics-commons-javadoc
xmlrpc-c-apps
xmlrpc-client
xmlrpc-common
xmlrpc-javadoc
xmlrpc-server
xmlsec1-gcrypt-devel
xmlsec1-nss-devel
xmlto-tex
xmlto-xhtml
xorg-x11-drv-intel-devel
xorg-x11-drv-keyboard
xorg-x11-drv-mouse
xorg-x11-drv-mouse-devel
xorg-x11-drv-openchrome
xorg-x11-drv-openchrome-devel
xorg-x11-drv-synaptics
xorg-x11-drv-synaptics-devel
xorg-x11-drv-vmmouse
xorg-x11-drv-void
xorg-x11-xkb-extras
xpp3-javadoc
xpp3-minimal
xsettings-kde
xstream
xstream-javadoc
xulrunner
xulrunner-devel
xvattr
xz-compat-libs
yelp-xsl-devel
yum-langpacks
本地化现在是 DNF 的 一 个完整部分。
yum-NetworkManager-dispatcher
yum-plugin-filter-data
yum-plugin-fs-snapshot
yum-plugin-keys
yum-plugin-list-data
yum-plugin-local
yum-plugin-merge-conf
yum-plugin-ovl
yum-plugin-post-transaction-actions
yum-plugin-pre-transaction-actions
yum-plugin-protectbase
yum-plugin-ps
yum-plugin-rpm-warm-cache
yum-plugin-show-leaves
yum-plugin-upgrade-helper
yum-plugin-verify
yum-updateonboot
|
|
RHEL 8 中的某些软件包通过 CodeReady Linux Builder 存储库发布,其中包含供开发人员使用的、不支持的软件包。有关此存储库中软件包的完整列表,请查看
软件包清单
。
以下软件包在 RHEL 7 中支持的渠道中发布,且在 RHEL 8 中不被支持,并且是 RHEL 8 中 CodeReady Linux Builder 存储库的一部分:
软件包
|
RHEL 7 频道
|
antlr-tool
rhel7-base
rhel7-base
cal10n
rhel7-base
cdi-api-javadoc
rhel7-base
codemodel
rhel7-base
dejagnu
rhel7-base
docbook-style-dsssl
rhel7-base
docbook-utils
rhel7-base
docbook5-schemas
rhel7-base
elinks
rhel7-base
flex-devel
rhel7-base
geronimo-jms
rhel7-base
gnome-common
rhel7-base
hamcrest
rhel7-base
imake
rhel7-base
isorelax
rhel7-base
jakarta-oro
rhel7-base
javamail
rhel7-base
jaxen
rhel7-base
rhel7-base
rhel7-base
junit
rhel7-base
jvnet-parent
rhel7-base
libdbusmenu-doc
rhel7-base
libdbusmenu-gtk3-devel
rhel7-base
libfdt
rhel7-base
libgit2-devel
rhel7-extras
libindicator-gtk3-devel
rhel7-base
libmodulemd-devel
rhel7-extras
libseccomp-devel
rhel7-base
libstdc++-static
rhel7-base
rhel7-base
objectweb-asm
rhel7-base
openjade
rhel7-base
openldap-servers
rhel7-base
opensp
rhel7-base
perl-Class-Singleton
rhel7-base
perl-DateTime
rhel7-base
perl-DateTime-Locale
rhel7-base
perl-DateTime-TimeZone
rhel7-base
Perl-Devel-Symdump
rhel7-base
perl-Digest-SHA1
rhel7-base
perl-HTML-Tree
rhel7-base
perl-HTTP-Daemon
rhel7-base
perl-IO-stringy
rhel7-base
perl-List-MoreUtils
rhel7-base
perl-Module-Implementation
rhel7-base
perl-Package-DeprecationManager
rhel7-base
perl-Package-stash
rhel7-base
perl-Package-Stash-XS
rhel7-base
perl-Params-Validate
rhel7-base
perl-Pod-Coverage
rhel7-base
perl-SGMLSpm
rhel7-base
perl-Test-Pod
rhel7-base
perl-Test-Pod-Coverage
rhel7-base
perl-XML-Twig
rhel7-base
perl-YAML-Tiny
rhel7-base
perltidy
rhel7-base
rhel7-base
regexp
rhel7-base
texinfo
rhel7-base
rhel7-base
weld-parent
rhel7-base
xmltoman
rhel7-base
xorg-x11-apps
rhel7-base
以下软件包已移到 RHEL 8 中的 CodeReady Linux Builder 存储库中:
软件包
|
原始 RHEL 8 软件仓库
|
修改自
|
apache-commons-collections-javadoc
rhel8-AppStream
RHEL 8.1
apache-commons-collections-testframework
rhel8-AppStream
RHEL 8.1
apache-commons-lang-javadoc
rhel8-AppStream
RHEL 8.1
jakarta-commons-httpclient-demo
rhel8-AppStream
RHEL 8.1
jakarta-commons-httpclient-javadoc
rhel8-AppStream
RHEL 8.1
jakarta-commons-httpclient-manual
rhel8-AppStream
RHEL 8.1
libcomps-devel
rhel8-BaseOS
RHEL 8.5
openldap-servers
rhel8-BaseOS
RHEL 8.0
velocity-demo
rhel8-AppStream
RHEL 8.1
velocity-javadoc
rhel8-AppStream
RHEL 8.1
velocity-manual
rhel8-AppStream
RHEL 8.1
xerces-j2-demo
rhel8-AppStream
RHEL 8.1
xerces-j2-javadoc
rhel8-AppStream
RHEL 8.1
xml-commons-apis-javadoc
rhel8-AppStream
RHEL 8.1
xml-commons-apis-manual
rhel8-AppStream
RHEL 8.1
xml-commons-resolver-javadoc
rhel8-AppStream
RHEL 8.1
The text of and illustrations in this document are licensed by Red Hat under a Creative Commons Attribution–Share Alike 3.0 Unported license ("CC-BY-SA"). An explanation of CC-BY-SA is available at
http://creativecommons.org/licenses/by-sa/3.0/
. In accordance with CC-BY-SA, if you distribute this document or an adaptation of it, you must provide the URL for the original version.
Red Hat, as the licensor of this document, waives the right to enforce, and agrees not to assert, Section 4d of CC-BY-SA to the fullest extent permitted by applicable law.
Red Hat, Red Hat Enterprise Linux, the Shadowman logo, the Red Hat logo, JBoss, OpenShift, Fedora, the Infinity logo, and RHCE are trademarks of Red Hat, Inc., registered in the United States and other countries.
Linux
® is the registered trademark of Linus Torvalds in the United States and other countries.
Java
® is a registered trademark of Oracle and/or its affiliates.
XFS
® is a trademark of Silicon Graphics International Corp. or its subsidiaries in the United States and/or other countries.
MySQL
® is a registered trademark of MySQL AB in the United States, the European Union and other countries.
Node.js
® is an official trademark of Joyent. Red Hat is not formally related to or endorsed by the official Joyent Node.js open source or commercial project.
|
|
|
|
|
|