timeconfig 需要多少 RPM?

timeconfig 需要多少 RPM?

我已完成setuptools设置并已阅读其中的内容列表/etc/setuptools.d

timeconfig我也有兴趣安装,但我只需要 TUI 版本(无 GUI)。我需要哪些 RPM? (我将在 CentOS ISO 安装中包含这些 RPM)

答案1

您需要系统配置日期包。

在 CentOS 中,默认情况下不安装它,但您可以通过键入来安装它

sudo yum install system-config-date 

这应该会为您提供所需的 tui 工具,您可以通过键入来运行该工具

sudo system-config-date

答案2

如果您可以合理猜测命令所在的位置,yum 可以告诉您它位于哪个包中。

# yum resolvedep /usr/bin/timeconfig
No Package Found for /usr/bin/timeconfig

# yum resolvedep /usr/sbin/timeconfig
0:system-config-date-1.8.12-4.el5.noarch

答案3

您可以使用 yum Provides 代替 yumresolvedep。填充所有文件列表可能需要一段时间,但这非常方便。

# yum provides *bin/timeconfig
Loaded plugins: downloadonly, rhnplugin
system-config-date-1.8.12-5.el5.noarch : A graphical interface for modifying system date and time
Repo        : rhel-x86_64-server-updates-5
Matched from:
Filename    : /usr/sbin/timeconfig



system-config-date-1.8.12-4.el5.noarch : A graphical interface for modifying system date and time
Repo        : rhel-x86_64-server-updates-5
Matched from:
Filename    : /usr/sbin/timeconfig

相关内容