tdnf 中与‘yum groupinstall’ 对应的是什么?

tdnf 中与‘yum groupinstall’ 对应的是什么?

有没有与此相当的东西?

yum groupinstall "Development Tools"

tdnf帮助中我们仅看到以下内容:

List of Main Commands

check-local               Checks local rpm folder for problems
check-update              Check for available package upgrades
clean                     Remove cached data
distro-sync               Synchronize installed packages to the latest available versions
download                  download a package
download-nodeps           download a package without dependencies
downgrade                 downgrade a package
erase                     Remove a package or packages from your system
help                      Display a helpful usage message
info                      Display details about a package or group of packages
install                   Install a package or packages on your system
list                      List a package or groups of packages
makecache                 Generate the metadata cache
provides                  Find what package provides the given value
remove                    Remove a package or packages from your system
reinstall                 reinstall a package
repolist                  Display the configured software repositories
repoquery                 Query repositories
reposync                  Download all packages from one or more repositories to a directory
search                    Search package details for the given string
update                    Upgrade a package or packages on your system (same as 'upgrade')
updateinfo                Display advisories about packages
upgrade                   Upgrade a package or packages on your system
upgrade-to                Upgrade a package on your system to the specified version

那么... 这个Development Packages分组就消失了吗?

答案1

您可以使用如下命令:

dnf group install "Development Tools"

或者

dnf install @"Development Tools"

相关内容