Tdnf package handling

From Bitbull Wiki
Revision as of 13:21, 19 April 2018 by Chris (talk | contribs) (Created page with "* 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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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'