$ dnf group list --installed
Installed Environment Groups:
Fedora Workstation
Installed Groups:
Container Management
However, Container Management
is included in Fedora Workstation
. How to remove the explicit mark on the Container Management
?
dnf group remove
will actually remove the packages in the group, so that’s not right… (Not obvious in this group as many packages are dependencies for other packages in other groups.)
dnf group mark remove
seems right but I’m not sure. It marks the group as removed (there is “removed” mark?) but it should be installed under the environment group. And I’m not sure if the packages in the group become orphaned[1] or still belong to the group.
Why is “Container Management” explicitly marked in the Workstation image in the first place?
p.s. I tried searching for dnf documentations on the group and mark concept but couldn’t find a detailed explanation.