【Linux】[yum]エラー: インストールまたは更新に利用できるいくつかの要求された… | 夕湖津のブログ

夕湖津のブログ

問題解決に役立つ情報の提供を目指します

■事象

yum groupinstallで下記エラー

 

# yum groupinstall "Develepment Tools"
読み込んだプラグイン:fastestmirror, langpacks
There is no installed groups file.
Maybe run: yum groups mark convert (see man yum)
Loading mirror speeds from cached hostfile
 * base: ftp-srv2.kddilabs.jp
 * epel: nrt.edge.kernel.org
 * extras: ftp-srv2.kddilabs.jp
 * updates: ftp-srv2.kddilabs.jp
Warning: group Develepment Tools does not exist.
Maybe run: yum groups mark install (see man yum)
エラー: インストールまたは更新に利用できるいくつかの要求されたグループにパッケージがありません

 

■原因

groupinstall対象の名称をタイポしている。

上記だと

×Develepment Tools

○Development Tools

 

と思いきや、それでも同じエラーになった・・・

↓ 下記で成功します。

#  yum groupinstall "Develepment Tools"--setopt=group_package_types=mandatory,default,optional

 

cf. https://access.redhat.com/solutions/1310043