Tdnf package handling

From Bitbull Wiki
Jump to navigation Jump to search
  • install package and deps
only do in vcsa if package has no impact to default packages (never do in production)
tdnf install httpd
  • remove package and deps
only do in vcsa if package has no impact to default packages (never do in production)
tdnf remove php-mysql
  • update entire system and deps
never do in vcsa
tdnf upgrade
  • update all packges
never do in vcsa
tdnf update

update one package without question

never do in vcsa
tdnf -y update httpd
  • clean package cache
tdnf clean all
  • search for name in package-name and description
tdnf search vim
  • search for name in package-name
tdnf list '*http*'
  • search for package which provides this comand
tdnf provides '*fortune'