<?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>Varun&#039;s Whiteboard on Technology &#187; GNU/Linux</title>
	<atom:link href="http://paheli.net/blog/category/gnulinux/feed/" rel="self" type="application/rss+xml" />
	<link>http://paheli.net/blog</link>
	<description>Everything is a Puzzle waiting to be solved!</description>
	<lastBuildDate>Fri, 17 Sep 2010 19:13:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Desktop screenshot &#8211; Ubuntu Gutsy Gibbon and GNOME</title>
		<link>http://paheli.net/blog/2007/11/26/desktop-screenshot-ubuntu-gutsy-gibbon-and-gnome/</link>
		<comments>http://paheli.net/blog/2007/11/26/desktop-screenshot-ubuntu-gutsy-gibbon-and-gnome/#comments</comments>
		<pubDate>Sun, 25 Nov 2007 23:51:21 +0000</pubDate>
		<dc:creator>Varun</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[miscellaneous]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Gutsy Gibbon]]></category>
		<category><![CDATA[screenshot]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.paheli.net/blog/2007/11/26/desktop-screenshot-ubuntu-gutsy-gibbon/</guid>
		<description><![CDATA[This is how my desktop looks like. I am running Ubuntu Gutsy Gibbon (7.10) and Gnome platform. I have been using Ubuntu for 3 years now and it is my all-time favourite operating system. It is easy to install, user-friendly, looks good, is fast and has almost everything that I need for my day to [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>This is how my desktop looks like. I am running <a href="https://wiki.ubuntu.com/GutsyGibbon" title="Gutsy Gibbon - Ubuntu Wiki">Ubuntu Gutsy Gibbon (7.10)</a> and <a href="http://www.gnome.org/" title="GNOME: The Free Software Desktop Project">Gnome platform</a>. I have been using Ubuntu for 3 years now and it is my all-time favourite operating system. It is easy to install, user-friendly, looks good, is fast and has almost everything that I need for my day to day work.</p>
<p><a href="http://www.paheli.net/blog/wp-content/uploads/2007/11/ubuntu-linux-desktop.png" title="Varun’s Desktop - Ubuntu Gutsy Gibbon and GNOME"><img src="http://www.paheli.net/blog/wp-content/uploads/2007/11/ubuntu-linux-desktop.png" alt="Varun’s Desktop - Ubuntu Gutsy Gibbon and GNOME" border="2" height="421" width="672" /></a></p>
<div class="shr-publisher-7"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://paheli.net/blog/2007/11/26/desktop-screenshot-ubuntu-gutsy-gibbon-and-gnome/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Get a list of installed packages in Ubuntu for reinstallation on another system</title>
		<link>http://paheli.net/blog/2007/11/25/list-of-installed-packages-in-ubuntu-for-reinstallation-on-another-system/</link>
		<comments>http://paheli.net/blog/2007/11/25/list-of-installed-packages-in-ubuntu-for-reinstallation-on-another-system/#comments</comments>
		<pubDate>Sun, 25 Nov 2007 01:54:05 +0000</pubDate>
		<dc:creator>Varun</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[packages]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.paheli.net/blog/2007/11/25/list-of-installed-packages-in-ubuntu/</guid>
		<description><![CDATA[How do you get a new Ubuntu (or Debian or any distro using dpkg) installation to quickly have a specific set of packages installed without scouring through the list of packages and selecting packages one by one? More specifically how do you get a new Ubuntu installation (the target system) to have the same packages [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>How do you get a new <a href="http://www.ubuntu.com/" title="Ubuntu Home Page">Ubuntu</a> (or Debian or any distro using dpkg) installation to quickly have a specific set of packages installed without scouring through the list of packages and selecting packages one by one? More specifically how do you get a new Ubuntu installation  (the target system) to have the same packages as your current one (the source system)?</p>
<p><strong>Solution</strong></p>
<p><strong>Step 1:</strong> Configure and enable one or more repositories on the target system so that all repositories available in the source system are available in the target system. This Ubuntu help article &#8211; <a href="https://help.ubuntu.com/community/Repositories/Ubuntu#head-a86dddc6826cec4a3847d8441b24051d07b8dc64" title="Adding Repositories in Ubuntu">Adding Repositories in Ubuntu</a>&#8221; &#8211;  has more info on how to do it. Remember to add any non-standard repositories (for e.g. <a href="http://www.google.com/linuxrepositories/ubuntu704.html" title="Linux Software Repositories">Google repositories</a>) in addition to the standard ones.</p>
<p><strong>Step 2:</strong> Get a listing of the packages currently installed on the source system using the following command.</p>
<p><code>sudo dpkg --get-selections | cut -f1 &gt; installed-packages.txt</code></p>
<p><strong>Step 3:</strong> Use the following command to feed the list of packages into <a href="http://en.wikipedia.org/wiki/Apt-get" title="Advanced Packaging Tool (Wikipedia)">apt-get</a> on the target system, wait for apt-get to download and install all the packages and voila! you are done.</p>
<p><code></code><code>cat installed-packages.txt | </code><code>sudo </code><code>xargs apt-get install</code></p>
<div class="shr-publisher-5"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://paheli.net/blog/2007/11/25/list-of-installed-packages-in-ubuntu-for-reinstallation-on-another-system/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

