<?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>HandsomePlanet &#187; debian</title>
	<atom:link href="http://www.handsomeplanet.com/archives/tag/debian/feed" rel="self" type="application/rss+xml" />
	<link>http://www.handsomeplanet.com</link>
	<description>technology and other perplexities</description>
	<lastBuildDate>Mon, 19 Sep 2011 16:22:01 +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>What&#8217;s my ubuntu (or debian) version?</title>
		<link>http://www.handsomeplanet.com/archives/219</link>
		<comments>http://www.handsomeplanet.com/archives/219#comments</comments>
		<pubDate>Tue, 05 Oct 2010 19:41:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.handsomeplanet.com/?p=219</guid>
		<description><![CDATA[I have a  number of machines running various OS releases. Sometimes I need to check what flavor or relase I&#8217;m running on the current machine. While uname -a will show the Linux kernel version, there are a few ways to get more information. Here are three possibilities: cat /etc/issue cat /etc/lsb-release and my favorite: lsb_release [...]]]></description>
			<content:encoded><![CDATA[<p>I have a  number of machines running various OS releases.   Sometimes I need to check what flavor or relase I&#8217;m running on the current machine.<br />
While <code>uname -a</code> will show the Linux kernel version, there are a few ways to get more information.<br />
Here are three possibilities:<br />
<code>cat /etc/issue<br />
cat /etc/lsb-release</code><br />
and my favorite:<br />
<code>lsb_release -a</code></p>
<p>Here&#8217;s some sample output from lsb_release:<br />
<code>$ lsb_release -a<br />
LSB Version:	core-2.0-ia32:core-2.0-noarch:core-3.0-ia32:core-3.0-noarch:core-3.1-ia32:core-3.1-noarch:core-3.2-ia32:core-3.2-noarch:core-4.0-ia32:core-4.0-noarch<br />
Distributor ID:	Ubuntu<br />
Description:	Ubuntu 10.04.1 LTS<br />
Release:	10.04<br />
Codename:	lucid</code></p>
<p>The &#8220;lsb&#8221; in these commands refers to the Linux Standard Base.  For more information, see the <a title="The Linux Foundation" href="http://www.linuxfoundation.org/" target="_blank">Linux Foundation</a> .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.handsomeplanet.com/archives/219/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to keep apache from autostarting on system boot for Debian or Ubuntu</title>
		<link>http://www.handsomeplanet.com/archives/110</link>
		<comments>http://www.handsomeplanet.com/archives/110#comments</comments>
		<pubDate>Mon, 12 Oct 2009 15:40:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[CLI]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.handsomeplanet.com/?p=110</guid>
		<description><![CDATA[An easy way to remove apache2 (or another system service) from the start up scripts in Debian or Ubuntu is to use the update-rc.d mechanism. For instance: # update-rc.d -f apache2 remove The &#8220;-f&#8221; is required if you have existing scripts in /etc/init.d/apache2. If you are planning on manually starting apache, the &#8220;-f&#8221; is [barring [...]]]></description>
			<content:encoded><![CDATA[<p>An easy way to remove apache2 (or another system service) from the start up scripts in Debian or Ubuntu is to use the update-rc.d mechanism.</p>
<p>For instance:</p>
<pre># update-rc.d -f apache2 remove</pre>
<p>The &#8220;-f&#8221; is required if you have existing scripts in /etc/init.d/apache2.   If you are planning on manually starting apache, the &#8220;-f&#8221; is [barring heroic/quixotic effort to create alternatives] a requirement.<br />
Otherwise, in this situation, you will see:</p>
<pre>update-rc.d: /etc/init.d/apache2 exists during rc.d purge (use -f to force)</pre>
<p>A good write-up is here:<br />
<a title="Debuntu.org: How to Manage Services with update-rd.d" href="http://www.debuntu.org/how-to-manage-services-with-update-rc.d"> http://www.debuntu.org/how-to-manage-services-with-update-rc.d</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.handsomeplanet.com/archives/110/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>crontab editor (alternatives redux)</title>
		<link>http://www.handsomeplanet.com/archives/103</link>
		<comments>http://www.handsomeplanet.com/archives/103#comments</comments>
		<pubDate>Mon, 21 Sep 2009 23:16:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[alternatives]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vi]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://www.handsomeplanet.com/?p=103</guid>
		<description><![CDATA[Well, my Debian server seems to think I should edit crontabs by with pico.   So, the fix (as with Ubuntu) : update-alternatives --set editor /usr/bin/vim.tiny]]></description>
			<content:encoded><![CDATA[<p>Well, my Debian server seems to think I should edit crontabs by with pico.   So, the fix (as with Ubuntu) :</p>
<pre>update-alternatives --set editor /usr/bin/vim.tiny</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.handsomeplanet.com/archives/103/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is there a difference between &#8220;apt-get purge&#8221; vs. &#8220;apt-get remove &#8211;purge&#8221; ?</title>
		<link>http://www.handsomeplanet.com/archives/95</link>
		<comments>http://www.handsomeplanet.com/archives/95#comments</comments>
		<pubDate>Tue, 21 Jul 2009 15:40:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[package management]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.handsomeplanet.com/?p=95</guid>
		<description><![CDATA[I was wondering this myself, as the two seemed to do the same thing. Google helpfully turned up a thread from ubuntu-users (Jan. &#8217;09). This post sums it up well (and accurately, I believe): &#62;Derek B. writes: &#62;&#62;Tommy T. wrote: &#62;&#62;&#62; On Fri, Jan 23 [...] Pierre F. wrote: &#62;&#62;&#62; hi, &#62;&#62;&#62; Is there any [...]]]></description>
			<content:encoded><![CDATA[<p>I was wondering this myself, as the two seemed to do the same thing.  Google helpfully turned up a thread from ubuntu-users (Jan. &#8217;09).</p>
<p><a href="https://lists.ubuntu.com/archives/ubuntu-users/2009-January/172480.html">This post</a> sums it up well (and accurately, I believe):</p>
<address><strong>&gt;Derek B. writes:</strong></address>
<address><span style="color: #808080;"> &gt;&gt;Tommy T. wrote:</span></address>
<address><strong> &gt;&gt;&gt; On Fri, Jan 23 [...] Pierre F. wrote:</strong></address>
<p><strong>&gt;&gt;&gt; hi,<br />
&gt;&gt;&gt; Is there any subtle difference between the 2 syntaxes?<br />
&gt;&gt;&gt; (I couldn&#8217;t find the answer in any documentation)</strong><br />
&gt;&gt;<br />
<span style="color: #808080;">&gt;&gt; Don&#8217;t they do different things?</span><br />
<strong>&gt;<br />
&gt;No.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.handsomeplanet.com/archives/95/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

