dnf group list

dos2unix

Well-Known Member
Joined
May 3, 2019
Messages
2,387
Reaction score
2,074
Credits
18,347
Does Debian based Linux systems have equivalent commands to "dnf group list" or "dnf group install" or "dnf group remove"?
 


Does Debian based Linux systems have equivalent commands to "dnf group list" or "dnf group install" or "dnf group remove"?
Dude, Debian-based Linux systems like Ubuntu and Linux Mint use a different package manager called "apt" (Advanced Package Tool). The equivalent commands to "dnf group list" and "dnf group install" in Debian-based systems are:

To list available package groups:
Bash:
apt-cache search '^task-' | awk '{ print $1 }'

To install a package group:
Bash:
sudo apt-get install <package-group-name>

So, instead of using the "dnf" commands, you rock the "apt" commands on Debian-based systems. Keep in mind that package group management may vary between different Debian-based distributions.

If you got any more questions, feel free to drop them my way, dude!
 


Latest posts

Top