<?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>sudo -s &#187; Debian</title>
	<atom:link href="http://sudoers.org/category/debian/feed/" rel="self" type="application/rss+xml" />
	<link>http://sudoers.org</link>
	<description>Got root?</description>
	<lastBuildDate>Mon, 08 Aug 2011 20:35:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Taken from Shell-fu</title>
		<link>http://sudoers.org/2008/12/taken-from-shell-fu/</link>
		<comments>http://sudoers.org/2008/12/taken-from-shell-fu/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 22:20:59 +0000</pubDate>
		<dc:creator>limed</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[sys admin]]></category>

		<guid isPermaLink="false">http://sudoers.org/?p=9</guid>
		<description><![CDATA[This is taken from shell-fu.org still a pretty handy one liner though This will delete any packages that are not installed anymore which still has configuration files on the box]]></description>
			<content:encoded><![CDATA[<p>This is taken from shell-fu.org still a pretty handy one liner though</p>
<pre class="brush: plain; title: ; notranslate">aptitude search ~c | awk '{ print $2 }' | xargs aptitude -y purge</pre>
<p>This will delete any packages that are not installed anymore which still has configuration files on the box</p>
]]></content:encoded>
			<wfw:commentRss>http://sudoers.org/2008/12/taken-from-shell-fu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>deborphan and for loops</title>
		<link>http://sudoers.org/2008/12/deborphan-and-for-loops/</link>
		<comments>http://sudoers.org/2008/12/deborphan-and-for-loops/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 18:29:59 +0000</pubDate>
		<dc:creator>limed</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[sys admin]]></category>

		<guid isPermaLink="false">http://sudoers.org/?p=7</guid>
		<description><![CDATA[deborphan is a package in debian that list orphaned libraries in debian. Handy for removing libraries that is no longer needed on a server. The problem with deborphan is that it only lists packages that are orphaned but doesnt remove them, so I do this: I love BASH]]></description>
			<content:encoded><![CDATA[<p>deborphan is a package in debian that list orphaned libraries in debian. Handy for removing libraries that is no longer needed on a server. The problem with deborphan is that it only lists packages that are orphaned but doesnt remove them, so I do this:</p>
<pre class="brush: plain; title: ; notranslate">
 for i in `deborphan`; do sudo aptitude remove $i; done
</pre>
<p>I love BASH <img src='http://sudoers.org/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://sudoers.org/2008/12/deborphan-and-for-loops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

