本文共 696 字,大约阅读时间需要 2 分钟。
今天使用CentOS 7的组安装,结果发现提示错误,
1 | yum groupinstall "System Administration Tools" |
详细信息如下:
1 2 3 4 5 6 7 8 | Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile * base: mirrors.aliyun.com * extras: mirrors.aliyun.com * updates: mirrors.aliyun.com Warning: Group system-admin-tools does not have any packages to install . Maybe run: yum groups mark install (see man yum) No packages in any requested group available to install or update |
经过一番谷歌,结果发现红帽的官方说7中的yum已经发生变化,需要使用特定选项来安装,具体命令如下:
1 | yum groupinstall "System Administration Tools" --setopt=group_package_types=mandatory,default,optional |