Difference between revisions of "Tdnf package handling"
Jump to navigation
Jump to search
(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...") |
(No difference)
|
Latest revision as of 13:21, 19 April 2018
- 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'