<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments on: Pacman Commands Cheat Sheet for Arch Linux	</title>
	<atom:link href="https://www.ubuntumint.com/archlinux-pacman-cheatsheet/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.ubuntumint.com/archlinux-pacman-cheatsheet/</link>
	<description>UbuntuMint - Everything About Ubuntu Linux</description>
	<lastBuildDate>Mon, 24 Jul 2023 08:22:01 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>
	<item>
		<title>
		By: Angel		</title>
		<link>https://www.ubuntumint.com/archlinux-pacman-cheatsheet/#comment-23201</link>

		<dc:creator><![CDATA[Angel]]></dc:creator>
		<pubDate>Tue, 07 Mar 2023 13:29:24 +0000</pubDate>
		<guid isPermaLink="false">https://www.ubuntumint.com/?p=3479#comment-23201</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.ubuntumint.com/archlinux-pacman-cheatsheet/#comment-6173&quot;&gt;Ravi Saive&lt;/a&gt;.

You&#039;ve mixed up your examples for querying package and installing a package. You have &lt;code&gt;-Ss&lt;/code&gt; in your install example, which is the query package command and you have &lt;code&gt;-S&lt;/code&gt; in your query example, which is the install package command.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.ubuntumint.com/archlinux-pacman-cheatsheet/#comment-6173">Ravi Saive</a>.</p>
<p>You&#8217;ve mixed up your examples for querying package and installing a package. You have <code>-Ss</code> in your install example, which is the query package command and you have <code>-S</code> in your query example, which is the install package command.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: JKMooney		</title>
		<link>https://www.ubuntumint.com/archlinux-pacman-cheatsheet/#comment-9019</link>

		<dc:creator><![CDATA[JKMooney]]></dc:creator>
		<pubDate>Wed, 06 Apr 2022 21:19:35 +0000</pubDate>
		<guid isPermaLink="false">https://www.ubuntumint.com/?p=3479#comment-9019</guid>

					<description><![CDATA[The command &lt;code&gt;sudo pacman -Rsc&lt;/code&gt; translates as follows
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;-R&lt;/strong&gt; =&#062; Remove&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;-s&lt;/strong&gt; =&#062; recursive&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;-c&lt;/strong&gt; =&#062; cascade (remove all target packages as well as packages that depend on them).&lt;/li&gt;
&lt;/ul&gt;
So, &lt;code&gt;pacman -Rsc&lt;/code&gt; is asking to purging an install. &lt;code&gt;-Rs&lt;/code&gt; might be safer unless you know you won&#039;t inadvertently delete something you need to keep.]]></description>
			<content:encoded><![CDATA[<p>The command <code>sudo pacman -Rsc</code> translates as follows</p>
<ul>
<li><strong>-R</strong> =&gt; Remove</li>
<li><strong>-s</strong> =&gt; recursive</li>
<li><strong>-c</strong> =&gt; cascade (remove all target packages as well as packages that depend on them).</li>
</ul>
<p>So, <code>pacman -Rsc</code> is asking to purging an install. <code>-Rs</code> might be safer unless you know you won&#8217;t inadvertently delete something you need to keep.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.ubuntumint.com/archlinux-pacman-cheatsheet/#comment-6173</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Fri, 07 Jan 2022 03:53:52 +0000</pubDate>
		<guid isPermaLink="false">https://www.ubuntumint.com/?p=3479#comment-6173</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.ubuntumint.com/archlinux-pacman-cheatsheet/#comment-6163&quot;&gt;Moltke&lt;/a&gt;.

@Moltke,

Thanks for the corrections. I have updated the article as per your suggestions...]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.ubuntumint.com/archlinux-pacman-cheatsheet/#comment-6163">Moltke</a>.</p>
<p>@Moltke,</p>
<p>Thanks for the corrections. I have updated the article as per your suggestions&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Moltke		</title>
		<link>https://www.ubuntumint.com/archlinux-pacman-cheatsheet/#comment-6163</link>

		<dc:creator><![CDATA[Moltke]]></dc:creator>
		<pubDate>Thu, 06 Jan 2022 13:53:06 +0000</pubDate>
		<guid isPermaLink="false">https://www.ubuntumint.com/?p=3479#comment-6163</guid>

					<description><![CDATA[Nice article, just a couple of things; &lt;strong&gt;sudo&lt;/strong&gt; isn&#039;t needed when querying the database, but only to install and/or remove pkgs. Also, the correct syntax to install is &lt;code&gt;*sudo pacman -S*&lt;/code&gt;, one &lt;code&gt;-S-&lt;/code&gt; not 2. 

Another thing, you made a typo here: 

*For the leafpad package we installed earlier, we can get the following info about it:
&lt;pre&gt;
$ sudo pacman -Qi apache*
&lt;/pre&gt;
You mentioned &lt;strong&gt;leafpad&lt;/strong&gt;, but in the example used *&lt;strong&gt;apache&lt;/strong&gt;*, and again, no need for &lt;strong&gt;sudo&lt;/strong&gt;.]]></description>
			<content:encoded><![CDATA[<p>Nice article, just a couple of things; <strong>sudo</strong> isn&#8217;t needed when querying the database, but only to install and/or remove pkgs. Also, the correct syntax to install is <code>*sudo pacman -S*</code>, one <code>-S-</code> not 2. </p>
<p>Another thing, you made a typo here: </p>
<p>*For the leafpad package we installed earlier, we can get the following info about it:</p>
<pre>
$ sudo pacman -Qi apache*
</pre>
<p>You mentioned <strong>leafpad</strong>, but in the example used *<strong>apache</strong>*, and again, no need for <strong>sudo</strong>.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
