<?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>myfedora.co.za</title>
	<atom:link href="http://myfedora.co.za/feed/" rel="self" type="application/rss+xml" />
	<link>http://myfedora.co.za</link>
	<description>The 411 on Fedora Linux</description>
	<lastBuildDate>Fri, 18 May 2012 21:36:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Kill All Processes</title>
		<link>http://myfedora.co.za/2012/04/kill-all-processes/</link>
		<comments>http://myfedora.co.za/2012/04/kill-all-processes/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 07:30:19 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Fedora/Redhat Linux]]></category>
		<category><![CDATA[Linux Bash Shell]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[kill]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[redhat]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://myfedora.co.za/?p=64</guid>
		<description><![CDATA[To quickly kill all processes with a spefic name or username The Following will kill -9 any running instance of postfix &#160; ps -ef &#124; grep postfix &#124; grep -v grep &#124; awk &#39;{print $2}&#39; &#124; xargs kill -9]]></description>
			<content:encoded><![CDATA[<p>To quickly kill all processes with a spefic name or username</p>
<p>The Following will kill -9 any running instance of postfix</p>
<div class="geshi bash">
<ol>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">ps</span> -ef <span class="sy0">|</span> <span class="kw2">grep</span> postfix <span class="sy0">|</span> <span class="kw2">grep</span> -v <span class="kw2">grep</span> <span class="sy0">|</span> <span class="kw2">awk</span> <span class="st0">&#39;{print $2}&#39;</span> <span class="sy0">|</span> <span class="kw2">xargs</span> <span class="kw2">kill</span> <span class="nu0">-9</span></div>
</li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://myfedora.co.za/2012/04/kill-all-processes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Diff two remote file systems</title>
		<link>http://myfedora.co.za/2012/04/diff-two-remote-file-systems/</link>
		<comments>http://myfedora.co.za/2012/04/diff-two-remote-file-systems/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 12:30:57 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[diff]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[remote]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[file]]></category>

		<guid isPermaLink="false">http://myfedora.co.za/?p=42</guid>
		<description><![CDATA[If you have two remote file systems and you want to compare the new with the old and just copy the changes, you can generate that list with the below command: &#160; &#160; diff &#60;&#40;/usr/bin/ssh user1@192.168.122.1 &#39;ls /opt/tibcosvc/tibco/tpcl/5.6/lib/&#39;&#41; &#60;&#40;/usr/bin/ssh user2@192.168.122.1 &#39;ls /tmp/&#39;&#41; &#124; grep -i &#34;&#62;&#34; &#124; sed &#39;s/&#62; //g&#39; Note: You need ssh keys]]></description>
			<content:encoded><![CDATA[<p>If you have two remote file systems and you want to compare the new with the old and just copy the changes, you can generate that list with the below command:</p>
<div class="geshi bash">
<ol start="5">
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">diff</span> <span class="sy0">&lt;</span><span class="br0">&#40;</span><span class="sy0">/</span>usr<span class="sy0">/</span>bin<span class="sy0">/</span><span class="kw2">ssh</span> user1<span class="sy0">@</span><span class="nu0">192.168</span><span class="nu0">.122</span><span class="nu0">.1</span> <span class="st0">&#39;ls /opt/tibcosvc/tibco/tpcl/5.6/lib/&#39;</span><span class="br0">&#41;</span> <span class="sy0">&lt;</span><span class="br0">&#40;</span><span class="sy0">/</span>usr<span class="sy0">/</span>bin<span class="sy0">/</span><span class="kw2">ssh</span> user2<span class="sy0">@</span><span class="nu0">192.168</span><span class="nu0">.122</span><span class="nu0">.1</span> <span class="st0">&#39;ls /tmp/&#39;</span><span class="br0">&#41;</span> <span class="sy0">|</span> <span class="kw2">grep</span> -i <span class="st0">&quot;&gt;&quot;</span> <span class="sy0">|</span> <span class="kw2">sed</span> <span class="st0">&#39;s/&gt; //g&#39;</span></div>
</li>
</ol>
</div>
<p>Note: You need ssh keys</p>
]]></content:encoded>
			<wfw:commentRss>http://myfedora.co.za/2012/04/diff-two-remote-file-systems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TAR Hidden Files</title>
		<link>http://myfedora.co.za/2012/04/tar-hidden-files/</link>
		<comments>http://myfedora.co.za/2012/04/tar-hidden-files/#comments</comments>
		<pubDate>Mon, 23 Apr 2012 12:43:38 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tar]]></category>

		<guid isPermaLink="false">http://myfedora.co.za/?p=36</guid>
		<description><![CDATA[TAR Hidden Files The idea is to TAR a folder/directory not just a list of files To tar all files in current directory: &#160; tar -cfvz backup.tgz * &#160; &#160; &#160; &#160; &#160; &#160; does not include hidden dot files, but tar -cfvz backup.tgz . does Source: http://www.elidickinson.com/node/13]]></description>
			<content:encoded><![CDATA[<h2>TAR Hidden Files</h2>
<div>
<div id="node-13">The idea is to TAR a folder/directory not just a list of files</p>
<div>
<p>To tar all files in current directory:</p>
<div class="geshi bash">
<ol start="2">
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">tar</span> -cfvz backup.tgz <span class="sy0">*</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; does not include hidden dot files,</div>
</li>
</ol>
</div>
<p>but </p>
<div class="geshi bash">
<ol start="2">
<li class="li1">
<div class="de1"><span class="kw2">tar</span> -cfvz backup.tgz .</div>
</li>
</ol>
</div>
<p>does</p>
<p>Source: <a title="http://www.elidickinson.com/node/13" href="http://www.elidickinson.com/node/13">http://www.elidickinson.com/node/13</a></p>
</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://myfedora.co.za/2012/04/tar-hidden-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install Cinnamon on Fedora 16</title>
		<link>http://myfedora.co.za/2012/04/how-to-install-cinnamon-on-fedora-16/</link>
		<comments>http://myfedora.co.za/2012/04/how-to-install-cinnamon-on-fedora-16/#comments</comments>
		<pubDate>Sun, 22 Apr 2012 18:16:32 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Desktop]]></category>

		<guid isPermaLink="false">http://myfedora.co.za/?p=6</guid>
		<description><![CDATA[Since the release of Gnome 3.x and KDE 4.x many users decided that is is not wort it to use the current desktops any more. Cinnamon aims to breach that gap and make Linux a pleasure to use As ROOT: curl http://repos.fedorapeople.org/repos/leigh123linux/cinnamon/fedora-cinnamon.repo -o /etc/yum.repos.d/fedora-cinnamon.repo yum install cinnamon gconf-editor Now logout. Select a new GDM session [...]]]></description>
			<content:encoded><![CDATA[<p>Since the release of Gnome 3.x and KDE 4.x many users decided that is is not wort it to use the current desktops any more.<br />
Cinnamon aims to breach that gap and make Linux a pleasure to use</p>
<p><span style="color: #ff0000;"><strong>As ROOT:</strong></span></p>
<pre class="2" lang="bash">
curl http://repos.fedorapeople.org/repos/leigh123linux/cinnamon/fedora-cinnamon.repo -o /etc/yum.repos.d/fedora-cinnamon.repo
yum install cinnamon gconf-editor</pre>
<p>Now logout. Select a new GDM session (cinnamon) and log back in. Your desktop should now look like this:</p>
<p><img class="alignnone" title="cinnamon-fedora desktop" src="http://4.bp.blogspot.com/-Ms0u8rvrNSk/TwcaFOcWPaI/AAAAAAAAHPY/s_T3z0Vww98/s1600/cinnamon-fedora16_2.png" alt="" width="838" height="541" /></p>
]]></content:encoded>
			<wfw:commentRss>http://myfedora.co.za/2012/04/how-to-install-cinnamon-on-fedora-16/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

