Projekt

Allgemein

Profil

Howto yum » Historie » Version 1

Jeremias Keihsler, 13.01.2017 10:48

1 1 Jeremias Keihsler
h1. Update
2
3
<pre><code class="bash">
4
yum update
5
</code></pre>
6
7
if for any reason your download fails due to bandwidth issues (e.g. VirtualBox-Repo), this will repeat @yum update@ until successful
8
<pre><code class="bash">
9
yum update -y ; until [ $? -eq 0 ]; do yum update -y; done
10
</code></pre>
11
12
h1. List Packages
13
14
h2. List installed Packages
15
16
<pre><code class="bash">
17
yum list installed
18
</code></pre>