<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>yum list &#8211; lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</title>
	<atom:link href="https://lifelinux.com/tag/yum-list/feed/" rel="self" type="application/rss+xml" />
	<link>https://lifelinux.com</link>
	<description>All About Linux !</description>
	<lastBuildDate>Sat, 30 Apr 2011 07:47:07 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.5.3</generator>
	<item>
		<title>Using yum command on CentOS / RedHat</title>
		<link>https://lifelinux.com/using-yum-command-on-centos-redhat/</link>
					<comments>https://lifelinux.com/using-yum-command-on-centos-redhat/#respond</comments>
		
		<dc:creator><![CDATA[lifeLinux]]></dc:creator>
		<pubDate>Sat, 30 Apr 2011 07:27:48 +0000</pubDate>
				<category><![CDATA[Bash Shell]]></category>
		<category><![CDATA[Sys Admin]]></category>
		<category><![CDATA[rhel 5]]></category>
		<category><![CDATA[rpm]]></category>
		<category><![CDATA[yum]]></category>
		<category><![CDATA[yum check]]></category>
		<category><![CDATA[yum command]]></category>
		<category><![CDATA[yum install]]></category>
		<category><![CDATA[yum list]]></category>
		<category><![CDATA[yum update]]></category>
		<guid isPermaLink="false">http://www.lifelinux.com/?p=307</guid>

					<description><![CDATA[<p>yum is an interactive, automated update program which can be used for maintaining systems using rpm. Synopsis yum [options] [command] [package ...] The following is a list of the most commonly used yum commands: Install a package yum install [package name] Used to install the latest version of a package or group of packages. If [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://lifelinux.com/using-yum-command-on-centos-redhat/">Using yum command on CentOS / RedHat</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p><p>yum is an interactive, automated update program which can be used for maintaining systems using rpm.</p>
<h3>Synopsis</h3>
<pre>
yum [options] [command] [package ...]
</pre>
<p><span id="more-307"></span><br />
The following is a list of the most commonly used yum commands:</p>
<p><strong>Install a package</strong></p>
<pre>
yum install [package name]
</pre>
<p>Used to install the latest version of a package or group of packages. If no package matches the specified package name(s), they are assumed to be a shell glob, and any matches are then installed.</p>
<p><strong>Update the specified packages</strong></p>
<pre>
yum update [package name]
</pre>
<p>Used to update the specified packages to the latest available version. If no package name/s are specified, then yum will attempt to update all installed packages.</p>
<p><strong>Check update</strong></p>
<pre>
yum check-update
</pre>
<p>This command allows you to determine whether any updates are available for your installed packages. yum returns a list of all package updates from all repositories if any are available.</p>
<p><strong>Remove a package</strong></p>
<pre>
yum remove [package name]
</pre>
<p>Used to remove specified packages, along with any other packages dependent on the packages being removed.</p>
<p><strong>Determine which packages provide a specific file or feature</strong></p>
<pre>
yum provides [file name]
</pre>
<p><strong>Find any packages containing the specified keyword</strong></p>
<pre>
yum search [keyword]
</pre>
<p>This command is used to find any packages containing the specified keyword in the description, summary, packager and package name fields of RPMs in all repositories.</p>
<p><strong>For a complete list of available yum commands, refer to man yum.</strong></p>
<pre>
man yum
</pre>
<p>Sample outputs:</p>
<pre>
NAME
       yum - Yellowdog Updater Modified

SYNOPSIS
       yum [options] [command] [package ...]

DESCRIPTION
       yum  is an interactive, rpm based, package manager. It can automatically perform system updates, including dependency analysis and obsolete pro-
       cessing based on "repository" metadata. It can also perform installation of new packages, removal of old packages and  perform  queries  on  the
       installed  and/or  available  packages  among many other commands/services (see below). yum is similar to other high level package managers like
       apt-get and smart.

       While there are some graphical interfaces directly to the yum code, more recent graphical interface development is happening with PackageKit and
       the gnome-packagekit application.

       command is one of:
        * install package1 [package2] [...]
        * update [package1] [package2] [...]
        * check-update
        * upgrade [package1] [package2] [...]
        * remove | erase package1 [package2] [...]
        * list [...]
        * info [...]
        * provides | whatprovides feature1 [feature2] [...]
        * clean [ packages | headers | metadata | dbcache | all ]
        * makecache
        * groupinstall group1 [group2] [...]
        * groupupdate group1 [group2] [...]
        * grouplist [hidden] [groupwildcard] [...]
        * groupremove group1 [group2] [...]
        * groupinfo group1 [...]
        * search string1 [string2] [...]
        * shell [filename]
        * resolvedep dep1 [dep2] [...]
        * localinstall rpmfile1 [rpmfile2] [...]
        * localupdate rpmfile1 [rpmfile2] [...]
...
</pre>
<h3>Example: Install LAMP with single command by yum</h3>
<p>Enter the following command:</p>
<pre>
yum install httpd mysql mysql-server php 
</pre>
<g:plusone href="https://lifelinux.com/using-yum-command-on-centos-redhat/" size="standard"  annotation="none"   ></g:plusone><p>The post <a rel="nofollow" href="https://lifelinux.com/using-yum-command-on-centos-redhat/">Using yum command on CentOS / RedHat</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lifelinux.com/using-yum-command-on-centos-redhat/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
