mirror of
https://github.com/cheat/cheat.git
synced 2024-11-14 08:01:09 +01:00
Add cheatsheet for yum
This commit is contained in:
parent
26e5261713
commit
edb392da7f
1 changed files with 23 additions and 0 deletions
23
cheatsheets/yum
Normal file
23
cheatsheets/yum
Normal file
|
@ -0,0 +1,23 @@
|
|||
To install the latest version of a package:
|
||||
yum install <package name>
|
||||
|
||||
To search for a package:
|
||||
yum search <package name>
|
||||
|
||||
To find what package installs a program:
|
||||
yum whatprovides </path/to/program>
|
||||
|
||||
To find the dependencies of a package:
|
||||
yum deplist <package name>
|
||||
|
||||
To find information about an installed package:
|
||||
yum info <package name>
|
||||
|
||||
List currently enabled repositories:
|
||||
yum repolist
|
||||
|
||||
To download the source RPM for a package:
|
||||
yumdownloader --source <package name>
|
||||
|
||||
(You have to install yumdownloader first, which is installed by the
|
||||
yum-utils package)
|
Loading…
Reference in a new issue