blob: c4dc4af67a835b1a9109becc9c25e799d295b249 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
|
#----------------------------------------------
#
# To install the latest version of a package:
$ yum install {package-name}
#
#----------------------------------------------
#
# To reinstall a package:
$ yum reinstall {package-name}
#
#----------------------------------------------
#
# To perform a local install:
$ yum localinstall {package-name}
#
#----------------------------------------------
#
# To install all updates/patches
$ yum update
#
#----------------------------------------------
#
# To fix an interrupted update
$ yum-complete-transaction
# If this doesn't work type in the following:
$ yum history
# This will list the yum transactions. A * will indicate an
# interrupted/aborted transaction. Take note of the transaction number,
# then yupe the following:
$ yum history redo force-reinstall [transaction ID]
# Alternatively, undo and then redo the transaction as follows:
$ yum history undo [transaction ID]
$ yum history redo [transaction ID]
#
#----------------------------------------------
#
# To install updates for specific package
$ yum update {package-name}
#
#----------------------------------------------
#
# To downgrade a specific package
$ yum downgrade {package-name}
#
#----------------------------------------------
#
# To updates package to specific version.
## First find a list of all duplicates
$ yum --showduplicates list {package-name}
## Now update to particular version
$ yum update-to {package-name}-{version}
#
#----------------------------------------------
#
# To display a list of updated software and security fixes
$ yum list updates
#
#----------------------------------------------
#
# To find out whether updates exist for already installed packages
$ yum check-update
#
#----------------------------------------------
#
# To remove a package:
$ yum remove {package-name}
$ yum erase {package-name}
#
#----------------------------------------------
#
# To remove unneeded packages/deps:
$ yum autoremove
#
#----------------------------------------------
#
# 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 a package:
$ yum info {package-name}
#
#----------------------------------------------
#
# List all installed packages
$ yum list installed
#
#----------------------------------------------
#
# List packages containing a certain keyword:
$ yum list <package_name_or_word_to_search>
#
#----------------------------------------------
#
# 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)
#
#----------------------------------------------
#
# Clean Yum Cache
$ yum clean all
## To check local rpm database for problems
$ yum check
#
#----------------------------------------------
#
# List currently enabled repositories:
$ yum repolist
#
#----------------------------------------------
#
# To see info about enabled repositories:
$ yum repoinfo {repo-name}
#
#----------------------------------------------
#
# To work with a given repository:
$ yum repo-pkgs {repo-name} <list|installed|remove|upgrade|reinstall|info> {package-name}
#
#----------------------------------------------
#
# To add a yum repo
$ yum-config-manager --add-repo {repo-url}
#
#----------------------------------------------
#
# To enable a yum repo
$ yum-config-manager --enable {repo-id}
## use `yum repolist all` to list all repo ids.
#
#----------------------------------------------
#
# To disable a yum repo
$ yum-config-manager --disable {repo-id}
#
#----------------------------------------------
#
# To view yum history
$ yum history
or
$ yum history list
# Lots of things that you can do with this. Checkout
# https://www.cyberciti.biz/faq/yum-history-command/
#
#----------------------------------------------
#
# To list available groups from all yum repos.
#
$ yum groups list
or
$ yum grouplist
#
#----------------------------------------------
#
# To view group description/list of packages it contains etc.
#
$ yum groups info "GROUP NAME"
#
#----------------------------------------------
#
# To install a group of packages
#
$ yum groups install "GROUP NAME"
#
#----------------------------------------------
#
# To remove a group of packages
#
$ yum groups remove "GROUP NAME"
#
#----------------------------------------------
|