<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Clean up unnecessary packages on ubuntu</title>
	<atom:link href="http://strabes.wordpress.com/2006/10/16/clean-up-unnecessary-packages-on-ubuntu-dapper/feed/" rel="self" type="application/rss+xml" />
	<link>http://strabes.wordpress.com/2006/10/16/clean-up-unnecessary-packages-on-ubuntu-dapper/</link>
	<description>Tips, howtos, and information for the casual and beginning linux user</description>
	<lastBuildDate>Fri, 13 Nov 2009 02:32:46 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: montoya</title>
		<link>http://strabes.wordpress.com/2006/10/16/clean-up-unnecessary-packages-on-ubuntu-dapper/#comment-3179</link>
		<dc:creator>montoya</dc:creator>
		<pubDate>Mon, 26 Oct 2009 21:45:51 +0000</pubDate>
		<guid isPermaLink="false">http://strabes.wordpress.com/2006/10/16/clean-up-unnecessary-packages-on-ubuntu-dapper/#comment-3179</guid>
		<description>Use:
# aptitude remove --purge `deborphan`
is very simply :)

Bye</description>
		<content:encoded><![CDATA[<p>Use:<br />
# aptitude remove &#8211;purge `deborphan`<br />
is very simply <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Bye</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Ardan</title>
		<link>http://strabes.wordpress.com/2006/10/16/clean-up-unnecessary-packages-on-ubuntu-dapper/#comment-3087</link>
		<dc:creator>Tim Ardan</dc:creator>
		<pubDate>Wed, 04 Feb 2009 08:00:44 +0000</pubDate>
		<guid isPermaLink="false">http://strabes.wordpress.com/2006/10/16/clean-up-unnecessary-packages-on-ubuntu-dapper/#comment-3087</guid>
		<description>I should also mention, I&#039;m running Ubuntu 8.10 (Intrepid-Ibex).</description>
		<content:encoded><![CDATA[<p>I should also mention, I&#8217;m running Ubuntu 8.10 (Intrepid-Ibex).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Ardan</title>
		<link>http://strabes.wordpress.com/2006/10/16/clean-up-unnecessary-packages-on-ubuntu-dapper/#comment-3086</link>
		<dc:creator>Tim Ardan</dc:creator>
		<pubDate>Wed, 04 Feb 2009 08:00:04 +0000</pubDate>
		<guid isPermaLink="false">http://strabes.wordpress.com/2006/10/16/clean-up-unnecessary-packages-on-ubuntu-dapper/#comment-3086</guid>
		<description>Worked beautifully for me.  Thanks for the article!</description>
		<content:encoded><![CDATA[<p>Worked beautifully for me.  Thanks for the article!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zeratul</title>
		<link>http://strabes.wordpress.com/2006/10/16/clean-up-unnecessary-packages-on-ubuntu-dapper/#comment-2740</link>
		<dc:creator>Zeratul</dc:creator>
		<pubDate>Fri, 23 May 2008 17:27:34 +0000</pubDate>
		<guid isPermaLink="false">http://strabes.wordpress.com/2006/10/16/clean-up-unnecessary-packages-on-ubuntu-dapper/#comment-2740</guid>
		<description>ncie one</description>
		<content:encoded><![CDATA[<p>ncie one</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kindofabuzz</title>
		<link>http://strabes.wordpress.com/2006/10/16/clean-up-unnecessary-packages-on-ubuntu-dapper/#comment-2725</link>
		<dc:creator>kindofabuzz</dc:creator>
		<pubDate>Tue, 29 Apr 2008 02:29:45 +0000</pubDate>
		<guid isPermaLink="false">http://strabes.wordpress.com/2006/10/16/clean-up-unnecessary-packages-on-ubuntu-dapper/#comment-2725</guid>
		<description>should be --purge and not -purge</description>
		<content:encoded><![CDATA[<p>should be &#8211;purge and not -purge</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CarlosMosca</title>
		<link>http://strabes.wordpress.com/2006/10/16/clean-up-unnecessary-packages-on-ubuntu-dapper/#comment-2235</link>
		<dc:creator>CarlosMosca</dc:creator>
		<pubDate>Sun, 04 Nov 2007 16:37:07 +0000</pubDate>
		<guid isPermaLink="false">http://strabes.wordpress.com/2006/10/16/clean-up-unnecessary-packages-on-ubuntu-dapper/#comment-2235</guid>
		<description>Thanks!  That helped a bit.  What I found works like a charm without having to change any file permissions, potentially endangering your system is to use &#039;sudo&#039; (love it!) like so:

sudo apt-get autoclean
sudo apt-get clean

Autoclean will delete the var/cache files of programs that aren&#039;t installed.
Clean will delete ALL the var/cache files of programs stored on disk.  This helped me free 600 megs!

The first time I tried to do this I messed with my file permissions and delete stuff that I should have NOT deleted, ending up with a fresh install.  When I found out that I didn&#039;t need to mess with my file permissions at all by using these two commands above, I was overjoyed!  I have since cleaned up my downloaded files cache (&#039;var/cache&#039;) regularly.  I must add that you can use this command at your own risk although I have found no problems whatsoever.  Enjoy!  :)</description>
		<content:encoded><![CDATA[<p>Thanks!  That helped a bit.  What I found works like a charm without having to change any file permissions, potentially endangering your system is to use &#8217;sudo&#8217; (love it!) like so:</p>
<p>sudo apt-get autoclean<br />
sudo apt-get clean</p>
<p>Autoclean will delete the var/cache files of programs that aren&#8217;t installed.<br />
Clean will delete ALL the var/cache files of programs stored on disk.  This helped me free 600 megs!</p>
<p>The first time I tried to do this I messed with my file permissions and delete stuff that I should have NOT deleted, ending up with a fresh install.  When I found out that I didn&#8217;t need to mess with my file permissions at all by using these two commands above, I was overjoyed!  I have since cleaned up my downloaded files cache (&#8216;var/cache&#8217;) regularly.  I must add that you can use this command at your own risk although I have found no problems whatsoever.  Enjoy!  <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob Turner</title>
		<link>http://strabes.wordpress.com/2006/10/16/clean-up-unnecessary-packages-on-ubuntu-dapper/#comment-1263</link>
		<dc:creator>Rob Turner</dc:creator>
		<pubDate>Mon, 30 Jul 2007 21:59:40 +0000</pubDate>
		<guid isPermaLink="false">http://strabes.wordpress.com/2006/10/16/clean-up-unnecessary-packages-on-ubuntu-dapper/#comment-1263</guid>
		<description>The command below sisnt work for me in gutsy:

sudo deborphan &#124; xargs sudo apt-get -y remove –purge 

Worked using:

sudo deborphan &#124; xargs sudo apt-get -y remove

Had to run it 3 or 5 times because of dependencies.</description>
		<content:encoded><![CDATA[<p>The command below sisnt work for me in gutsy:</p>
<p>sudo deborphan | xargs sudo apt-get -y remove –purge </p>
<p>Worked using:</p>
<p>sudo deborphan | xargs sudo apt-get -y remove</p>
<p>Had to run it 3 or 5 times because of dependencies.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nigel Horne</title>
		<link>http://strabes.wordpress.com/2006/10/16/clean-up-unnecessary-packages-on-ubuntu-dapper/#comment-4</link>
		<dc:creator>Nigel Horne</dc:creator>
		<pubDate>Wed, 08 Nov 2006 15:08:05 +0000</pubDate>
		<guid isPermaLink="false">http://strabes.wordpress.com/2006/10/16/clean-up-unnecessary-packages-on-ubuntu-dapper/#comment-4</guid>
		<description>That worked, thanks.

root@OceanBlue9:/etc/apt# apt-get install deborphan
Reading package lists... Done
Building dependency tree... Done
The following extra packages will be installed:
  dialog
Recommended packages:
  apt
The following NEW packages will be installed
  deborphan dialog
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 264kB of archives.
After unpacking 1585kB of additional disk space will be used.
Do you want to continue [Y/n]?
WARNING: The following packages cannot be authenticated!
  dialog deborphan
Install these packages without verification [y/N]? y
Get: 1 http://archive.ubuntu.com dapper/universe dialog 1.0-20060101-1 [201kB]
Get: 2 http://archive.ubuntu.com dapper/universe deborphan 1.7.18 [62.0kB]
Fetched 264kB in 1s (202kB/s)
Selecting previously deselected package dialog.
(Reading database ... 101121 files and directories currently installed.)
Unpacking dialog (from .../dialog_1.0-20060101-1_i386.deb) ...
Selecting previously deselected package deborphan.
Unpacking deborphan (from .../deborphan_1.7.18_i386.deb) ...
Setting up dialog (1.0-20060101-1) ...
Setting up deborphan (1.7.18) ...

localepurge: Disk space freed in /usr/share/locale: 244K</description>
		<content:encoded><![CDATA[<p>That worked, thanks.</p>
<p>root@OceanBlue9:/etc/apt# apt-get install deborphan<br />
Reading package lists&#8230; Done<br />
Building dependency tree&#8230; Done<br />
The following extra packages will be installed:<br />
  dialog<br />
Recommended packages:<br />
  apt<br />
The following NEW packages will be installed<br />
  deborphan dialog<br />
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.<br />
Need to get 264kB of archives.<br />
After unpacking 1585kB of additional disk space will be used.<br />
Do you want to continue [Y/n]?<br />
WARNING: The following packages cannot be authenticated!<br />
  dialog deborphan<br />
Install these packages without verification [y/N]? y<br />
Get: 1 <a href="http://archive.ubuntu.com" rel="nofollow">http://archive.ubuntu.com</a> dapper/universe dialog 1.0-20060101-1 [201kB]<br />
Get: 2 <a href="http://archive.ubuntu.com" rel="nofollow">http://archive.ubuntu.com</a> dapper/universe deborphan 1.7.18 [62.0kB]<br />
Fetched 264kB in 1s (202kB/s)<br />
Selecting previously deselected package dialog.<br />
(Reading database &#8230; 101121 files and directories currently installed.)<br />
Unpacking dialog (from &#8230;/dialog_1.0-20060101-1_i386.deb) &#8230;<br />
Selecting previously deselected package deborphan.<br />
Unpacking deborphan (from &#8230;/deborphan_1.7.18_i386.deb) &#8230;<br />
Setting up dialog (1.0-20060101-1) &#8230;<br />
Setting up deborphan (1.7.18) &#8230;</p>
<p>localepurge: Disk space freed in /usr/share/locale: 244K</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nigel Horne</title>
		<link>http://strabes.wordpress.com/2006/10/16/clean-up-unnecessary-packages-on-ubuntu-dapper/#comment-3</link>
		<dc:creator>Nigel Horne</dc:creator>
		<pubDate>Wed, 08 Nov 2006 09:44:32 +0000</pubDate>
		<guid isPermaLink="false">http://strabes.wordpress.com/2006/10/16/clean-up-unnecessary-packages-on-ubuntu-dapper/#comment-3</guid>
		<description>Fails on Ubuntu 6.0.6:

$ sudo apt-get install deborphan
Reading package lists... Done
Building dependency tree... Done
Package deborphan is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package deborphan has no installation candidate</description>
		<content:encoded><![CDATA[<p>Fails on Ubuntu 6.0.6:</p>
<p>$ sudo apt-get install deborphan<br />
Reading package lists&#8230; Done<br />
Building dependency tree&#8230; Done<br />
Package deborphan is not available, but is referred to by another package.<br />
This may mean that the package is missing, has been obsoleted, or<br />
is only available from another source<br />
E: Package deborphan has no installation candidate</p>
]]></content:encoded>
	</item>
</channel>
</rss>
