<?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>Pario TechnoBlob &#187; Etch</title>
	<atom:link href="http://pario.no/tag/etch/feed/" rel="self" type="application/rss+xml" />
	<link>http://pario.no</link>
	<description>A cronological documentation test project, nothing serious, really!</description>
	<lastBuildDate>Wed, 14 Jul 2010 12:12:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Debian backports and pinning</title>
		<link>http://pario.no/2008/02/22/debian-backports-and-pinning/</link>
		<comments>http://pario.no/2008/02/22/debian-backports-and-pinning/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 23:05:53 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[backports]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Etch]]></category>

		<guid isPermaLink="false">http://pario.no/2008/02/22/debian-backports/</guid>
		<description><![CDATA[I&#8217;m running Debian Etch because I prefer the stable Debian package tree. This is all great but the software is a little outdated compared to other distributions like Ubuntu. That is where backports come in. Backports are recompiled packages from testing (mostly) and unstable (in a few cases only, e.g. security updates), so they will [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m running Debian Etch because I prefer the stable Debian package tree. This is all great but the software is a little outdated compared to other distributions like Ubuntu. That is where backports come in. Backports are recompiled packages from testing (mostly) and unstable (in a few cases only, e.g. security updates), so they will run without new libraries (wherever it is possible) on a stable Debian distribution. They recommend you to pick out single backports which fits your needs, and not to use all backports available here.</p>
<p>Using backports is simple</p>
<ol>
<li>Add this line to your <strong>/etc/apt/sources.list</strong></li>
<pre>
deb http://www.backports.org/debian etch-backports main contrib non-free</pre>
<li>Run
<pre>
apt-get update</pre>
<p>You might get a error message</p>
<pre>
Reading package lists... Done
W: GPG error: http://www.backports.org etch-backports Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY EA8E8B2116BA136C
W: You may want to run apt-get update to correct these problems</pre>
<p>This message comes on Debian Etch because you haven&#8217;t imported the backports keyring. It&#8217;s easily fixed by running the command</p>
<pre>
apt-get install debian-backports-keyring</pre>
</li>
<li>Since all backports are deactivated by default you got to tell the package manager to use the backports repository. To install a newer version of nmap
<pre>
apt-get -t etch-backports install nmap</pre>
</li>
</ol>
<p>It is important to remember that if you forget to tell apt-get that nmap is installed from backports and run another apt-get install nmap it will remove my backports package.</p>
<p><strong>A simple solution to this is to use pinning</strong><br />
Edit <strong>/etc/apt/preferences</strong>, the file has to be created if you haven&#8217;t used pinning before</p>
<pre>
Package: nmap
Pin: release a=etch-backports
Pin-Priority: 999</pre>
<p>Now the system &#8220;remembers&#8221; that nmap is installed from the backports repository and you don&#8217;t have to worry about it anymore, nice.</p>
<p>Source: <a href="http://www.backports.org/">http://www.backports.org/</a></p>
<script type="text/javascript">var wordpress_toolbar_urls = ["http:\/\/www.backports.org\/"];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMDgvMDIvMjIvZGViaWFuLWJhY2twb3J0cy1hbmQtcGlubmluZy88d3B0Yj5EZWJpYW4gYmFja3BvcnRzIGFuZCBwaW5uaW5nPHdwdGI%2BaHR0cDovL3BhcmlvLm5vPHdwdGI%2BUGFyaW8gVGVjaG5vQmxvYg%3D%3D";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2008/02/22/debian-backports-and-pinning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mounting remote filesystems using SSH and Debian</title>
		<link>http://pario.no/2008/02/20/mounting-remote-filesystems-using-ssh-and-debian/</link>
		<comments>http://pario.no/2008/02/20/mounting-remote-filesystems-using-ssh-and-debian/#comments</comments>
		<pubDate>Wed, 20 Feb 2008 20:50:40 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Etch]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://pario.no/2008/02/19/mounting-remote-filesystems-using-ssh-and-debian/</guid>
		<description><![CDATA[This post describes how to mount a remote filesystem through SSH using the shfs kernel module on a Debian Etch server. By doing this I can access the remote filesystem as if it was a local filesystem and also use my local tools and software. This is a short description of how I made a [...]]]></description>
			<content:encoded><![CDATA[<p>This post describes how to mount a remote filesystem through SSH using the shfs kernel module on a Debian Etch server. By doing this I can access the remote filesystem as if it was a local filesystem and also use my local tools and software.<br />
This is a short description of how I made a remote filesystem accessible on my private server.</p>
<p>Download the needed software</p>
<pre>
# apt-get install shfs-source shfs-utils module-assistant</pre>
<p>This step might not be needed on your system, but I didn&#8217;t have the needed software to build the kernel module</p>
<pre>
# module-assistant prepare</pre>
<p>Use the module assistant to build the kernel module to match your local system (I use a 2.6 kernel but this whould work on a 2.4 kernel also)</p>
<pre>
module-assistant build shfs</pre>
<p>Now you can install it</p>
<pre>
# module-assistant install shfs
Selecting previously deselected package shfs-module-2.6.18-5-686.
(Reading database ... 78212 files and directories currently installed.)
Unpacking shfs-module-2.6.18-5-686 (from .../shfs-module-2.6.18-5-686_0.35-6.2+2.6.18.dfsg.1-17_i386.deb) ...
Setting up shfs-module-2.6.18-5-686 (0.35-6.2+2.6.18.dfsg.1-17) ...</pre>
<p>You might see some error messages but those are mostly harmless :) and can be ignored.<br />
Now we can try to mount the remote filesystem</p>
<pre>
# mkdir /export/remotefs
# shfsmount user@remotesystem.com /export/remotefs
Password:</pre>
<p>The remote filesystem should now be available after typing your password.</p>
<pre>
# cd /export/remotefs
# ls</pre>
<p>You will now see all your files in the remote filesystem as if they were on your local machine.<br />
To unmount your filesystem</p>
<pre>
# cd /
# umount /export/remotefs</pre>
<p>This post could have been extended to use passwordless</p>
<script type="text/javascript">var wordpress_toolbar_urls = [];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMDgvMDIvMjAvbW91bnRpbmctcmVtb3RlLWZpbGVzeXN0ZW1zLXVzaW5nLXNzaC1hbmQtZGViaWFuLzx3cHRiPk1vdW50aW5nIHJlbW90ZSBmaWxlc3lzdGVtcyB1c2luZyBTU0ggYW5kIERlYmlhbjx3cHRiPmh0dHA6Ly9wYXJpby5ubzx3cHRiPlBhcmlvIFRlY2hub0Jsb2I%3D";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2008/02/20/mounting-remote-filesystems-using-ssh-and-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>apt-show-versions</title>
		<link>http://pario.no/2008/02/12/apt-show-versions/</link>
		<comments>http://pario.no/2008/02/12/apt-show-versions/#comments</comments>
		<pubDate>Mon, 11 Feb 2008 23:28:37 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apt-show-versions]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Etch]]></category>

		<guid isPermaLink="false">http://pario.no/2008/02/12/apt-show-versions/</guid>
		<description><![CDATA[apt-show-versions is a Debian tool that lists available package versions with distributions. This is really useful if you have a mixed stable/testing environment and want to list all packages which are from testing and can be upgraded in testing. This package is not installed automatically so you have to install it your self apt-get install [...]]]></description>
			<content:encoded><![CDATA[<p>apt-show-versions is a Debian tool that lists available package versions with distributions. This is really useful if you have a mixed stable/testing environment and want to list all packages which are from testing and can be upgraded in testing.</p>
<p>This package is not installed automatically so you have to install it your self</p>
<pre>
apt-get install apt-show-versions</pre>
<p>An example output from this command</p>
<pre>
groff-base/etch uptodate 1.18.1.1-12
notification-daemon/etch uptodate 0.3.5-1+b1
libavahi-common3/etch uptodate 0.6.16-3etch1
esound-common/etch uptodate 0.2.36-3
libgnome2-0/etch uptodate 2.16.0-2
m4/etch uptodate 1.4.8-2
libkpathsea4/etch uptodate 3.0-30
...</pre>
<p>The -u option displays a list of upgradeable packages</p>
<pre>
# apt-show-versions -u
     # apt-show-versions -u
linux-image-2.6.18-6-686/etch upgradeable from 2.6.18.dfsg.1-17etch1 to 2.6.18.dfsg.1-18etch1</pre>
<script type="text/javascript">var wordpress_toolbar_urls = [];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMDgvMDIvMTIvYXB0LXNob3ctdmVyc2lvbnMvPHdwdGI%2BYXB0LXNob3ctdmVyc2lvbnM8d3B0Yj5odHRwOi8vcGFyaW8ubm88d3B0Yj5QYXJpbyBUZWNobm9CbG9i";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2008/02/12/apt-show-versions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrade from Debian Etch to Debian Lenny</title>
		<link>http://pario.no/2008/02/08/upgrade-from-debian-etch-to-debian-lenny/</link>
		<comments>http://pario.no/2008/02/08/upgrade-from-debian-etch-to-debian-lenny/#comments</comments>
		<pubDate>Fri, 08 Feb 2008 19:20:16 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[dist-upgrade]]></category>
		<category><![CDATA[Etch]]></category>
		<category><![CDATA[Lenny]]></category>

		<guid isPermaLink="false">http://pario.no/2008/02/08/upgrade-debian-etch-to-debian-lenny/</guid>
		<description><![CDATA[To upgrade a Debian Etch (stable) installation to testing Debian Lenny (unstable), you can do the following steps Edit sources.list sudo vi /etc/apt/sources.list change all occurences of the word etch for lenny, or stable for testing Do the update and upgrade sudo apt-get update &#38;&#38; apt-get dist-upgrade That is all that is needed to upgrade [...]]]></description>
			<content:encoded><![CDATA[<p>To upgrade a Debian Etch (stable) installation to testing Debian Lenny (unstable), you can do the following steps</p>
<ol>
<li>Edit <strong>sources.list</strong>
<pre>
sudo vi /etc/apt/sources.list</pre>
<p>change all occurences of the word etch for lenny, or stable for testing</li>
<li>Do the update and upgrade
<pre>
sudo apt-get update &amp;&amp; apt-get dist-upgrade</pre>
</li>
</ol>
<p>That is all that is needed to upgrade Debian Etch to Debian Lenny which is expected to be released fall 2008. The process can be reversed if you would like to revert from Lenny to Etch, just change back your changes in <strong>sources.list</strong><br />
<note>One note is that you will need to install a new kernel because the Etch kernel is not automatically updated when perform the upgrade to Lenny.</note></p>
<script type="text/javascript">var wordpress_toolbar_urls = [];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMDgvMDIvMDgvdXBncmFkZS1mcm9tLWRlYmlhbi1ldGNoLXRvLWRlYmlhbi1sZW5ueS88d3B0Yj5VcGdyYWRlIGZyb20gRGViaWFuIEV0Y2ggdG8gRGViaWFuIExlbm55PHdwdGI%2BaHR0cDovL3BhcmlvLm5vPHdwdGI%2BUGFyaW8gVGVjaG5vQmxvYg%3D%3D";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2008/02/08/upgrade-from-debian-etch-to-debian-lenny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto install Sun Java on Debian Etch</title>
		<link>http://pario.no/2007/04/27/howto-install-sun-java-on-debian-etch/</link>
		<comments>http://pario.no/2007/04/27/howto-install-sun-java-on-debian-etch/#comments</comments>
		<pubDate>Fri, 27 Apr 2007 13:26:08 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Etch]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://hhj.no/wordpress/2007/04/27/howto-install-sun-java-on-debian-etch/</guid>
		<description><![CDATA[The original Sun Java 2 is available in the ‘non-free’ section of the Debian repositories. To enable this section first add the non-free repository to the apt sources file &#8211; the /etc/apt/sources.list should look like, &#8211; important parts are in bold: deb http://ftp.us.debian.org/debian/ etch main contrib non-free Now, update apt: sudo apt-get update Then install [...]]]></description>
			<content:encoded><![CDATA[<p>The original Sun Java 2 is available in the ‘non-free’ section of the Debian repositories. To enable this section first add the non-free repository to the apt sources file &#8211; the /etc/apt/sources.list should look like, &#8211; important parts are in bold:<span id="more-135"></span><br />
<code>deb http://ftp.us.debian.org/debian/ etch main <strong>contrib non-free</strong></code></p>
<p>Now, update apt:<br />
<code>sudo apt-get update</code></p>
<p>Then install the Java debian packages.<br />
<code>sudo apt-get install sun-java5-jre</code></p>
<script type="text/javascript">var wordpress_toolbar_urls = [];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMDcvMDQvMjcvaG93dG8taW5zdGFsbC1zdW4tamF2YS1vbi1kZWJpYW4tZXRjaC88d3B0Yj5Ib3d0byBpbnN0YWxsIFN1biBKYXZhIG9uIERlYmlhbiBFdGNoPHdwdGI%2BaHR0cDovL3BhcmlvLm5vPHdwdGI%2BUGFyaW8gVGVjaG5vQmxvYg%3D%3D";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2007/04/27/howto-install-sun-java-on-debian-etch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
