<?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>Vorlon's Blog &#187; Gentoo</title>
	<atom:link href="http://blog.vorlons.info/archives/tag/gentoo/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.vorlons.info</link>
	<description>Science, Life, Computers, ... who knows what will end up in here...</description>
	<lastBuildDate>Mon, 12 Oct 2009 15:35:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>Serious DNS vulnerabilities &#8211; update for bind available</title>
		<link>http://blog.vorlons.info/archives/2008/07/09/174/</link>
		<comments>http://blog.vorlons.info/archives/2008/07/09/174/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 09:24:28 +0000</pubDate>
		<dc:creator>vorlon</dc:creator>
				<category><![CDATA[Computer stuff]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://blog.vorlons.info/?p=174</guid>
		<description><![CDATA[In the light of yesterday&#8217;s large coordinated release of DNS related updates to various products, I would like to point you to the updated bind packages in the portage tree. net-dns/bind-9.4.2_p1 is currently being marked stable on all supported architectures net-dns/bind-9.5.0_p1 has been committed with unstable keywords Nameservers should be updated quite soon, since this [...]]]></description>
			<content:encoded><![CDATA[<p>In the light of yesterday&#8217;s large coordinated release of DNS related updates to various products, I would like to point you to the updated bind packages in the portage tree.</p>
<ul>
<li>net-dns/bind-9.4.2_p1 is currently being marked stable on all supported architectures</li>
<li>net-dns/bind-9.5.0_p1 has been committed with unstable keywords</li>
</ul>
<p>Nameservers should be updated quite soon, since this issue should be considered serious.</p>
<p>A GLSA will be published after all security architectures have marked the affected package stable. The progress can be followed in bug <a title="bug #231201" href="https://bugs.gentoo.org/show_bug.cgi?id=231201" target="_blank">#231201</a>.</p>
<p>For more information have a look at the following links and the references therein:</p>
<ul>
<li><a title="VU #800113" href="http://www.kb.cert.org/vuls/id/800113" target="_blank">US-CERT Vulnerability Note VU#800113</a></li>
<li><a href="http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-1447" target="_blank">CVE-2008-1447</a></li>
<li><a href="http://www.isc.org/sw/bind/forgery-resilience.php" target="_blank">ISC info</a></li>
</ul>
<p>Also note that if you are restricting the used outgoing ports of your nameserver by a firewall for example, this policy should be revisited.</p>
<p><em>Update 2008-07-11:<br />
</em><a title="GLSA 200807-08" href="http://www.gentoo.org/security/en/glsa/glsa-200807-08.xml" target="_blank">GLSA 200807-08</a> has just been released to address this issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vorlons.info/archives/2008/07/09/174/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>etckeeper &#8211; keeping /etc in a git repository</title>
		<link>http://blog.vorlons.info/archives/2008/02/28/166/</link>
		<comments>http://blog.vorlons.info/archives/2008/02/28/166/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 21:35:25 +0000</pubDate>
		<dc:creator>vorlon</dc:creator>
				<category><![CDATA[Computer stuff]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://blog.vorlons.info/archives/2008/02/28/166/</guid>
		<description><![CDATA[When having a look at git yesterday, I stumbled upon etckeeper, a tool to keep /etc in a git (or mercurial) repository and also keeps the metadata (file permissions, &#8230;) in the repo making use of metastore. It hooks into apt but I used /etc/portage/basrc to call it before and after installing a package: case [...]]]></description>
			<content:encoded><![CDATA[<p>When having a look at <a href="http://git.or.cz/">git</a> yesterday, I stumbled upon <a href="http://kitenet.net/~joey/code/etckeeper/">etckeeper</a>, a tool to keep /etc in a git (or mercurial) repository and also keeps the metadata (file permissions, &#8230;) in the repo making use of <a href="http://david.hardeman.nu/software.php">metastore</a>.</p>
<p>It hooks into apt but I used /etc/portage/basrc to call it before and after installing a package:</p>
<blockquote><p> case &#8220;$EBUILD_PHASE&#8221;  in<br />
preinst)<br />
elog &#8220;Running etckeeper pre-install&#8230;&#8221;<br />
/usr/bin/etckeeper pre-install<br />
;;<br />
postinst)<br />
elog &#8220;Running etckeeper post-install&#8230;&#8221;<br />
/usr/bin/etckeeper post-install<br />
;;<br />
esac</p></blockquote>
<p>One could also modify /etc/etckeeper/post-install.d/50vcs-commit to include the package name etc. in the commit message while emerging:</p>
<blockquote><p>  &#8212; a/post-install.d/50vcs-commit<br />
+++ b/post-install.d/50vcs-commit<br />
@@ -2,5 +2,12 @@<br />
set -e</p>
<p>if etckeeper unclean; then<br />
-       etckeeper commit &#8220;committing changes after $HIGHLEVEL_PACKAGE_MANAGER run&#8221;<br />
+       case $LOWLEVEL_PACKAGE_MANAGER in<br />
+               portage)<br />
+                       etckeeper commit &#8220;committing changes after $HIGHLEVEL_PACKAGE_MANAGER run ($CATEGORY/$P)&#8221;<br />
+                       ;;<br />
+               *)<br />
+                       etckeeper commit &#8220;committing changes after $HIGHLEVEL_PACKAGE_MANAGER run&#8221;<br />
+                       ;;<br />
+       esac<br />
fi</p></blockquote>
<p>There are probably other/better ways to accomplish this and more&#8230;</p>
<p>Anyways&#8230; etckeeper looks like a nice and very flexible tool to keep /etc in a repository if one wants to.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vorlons.info/archives/2008/02/28/166/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Matroska Dateien editieren/erstellen</title>
		<link>http://blog.vorlons.info/archives/2007/11/27/161/</link>
		<comments>http://blog.vorlons.info/archives/2007/11/27/161/#comments</comments>
		<pubDate>Tue, 27 Nov 2007 19:59:14 +0000</pubDate>
		<dc:creator>vorlon</dc:creator>
				<category><![CDATA[Computer stuff]]></category>
		<category><![CDATA[Gentoo-de]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Matroska]]></category>

		<guid isPermaLink="false">http://blog.vorlons.info/archives/2007/11/27/161/</guid>
		<description><![CDATA[Auf der Suche nach einer Möglichkeit einen Audio Stream aus einer Matroska Containerdatei zu entfernen bin ich gerade auf MKVToolnix gestossen. Neben den üblichen Kommandozeilentools gibt&#8217;s dazu auch eine recht übersichtliche GUI, mit der das Problem im Nu gelöst war. Auch das Erstellen und ich hoffe auch Splitten von Containern sollte recht einfach gehen. Achja, [...]]]></description>
			<content:encoded><![CDATA[<p>Auf der Suche nach einer Möglichkeit einen Audio Stream aus einer <a href="http://www.matroska.org">Matroska</a> Containerdatei zu entfernen bin ich gerade auf <a href="http://www.bunkus.org/videotools/mkvtoolnix/">MKVToolnix</a> gestossen. Neben den üblichen Kommandozeilentools gibt&#8217;s dazu auch eine recht übersichtliche GUI, mit der das Problem im Nu gelöst war. Auch das Erstellen und ich hoffe auch Splitten von Containern sollte recht einfach gehen.</p>
<p>Achja, für Gentoo  gibt&#8217;s die Tools im Portage Tree als media-video/mkvtoolnix, wxwidgets USE-Flag hierbei nicht vergessen.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vorlons.info/archives/2007/11/27/161/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Gentoo, Lego und die Schlingen des Amazonas</title>
		<link>http://blog.vorlons.info/archives/2007/05/31/145/</link>
		<comments>http://blog.vorlons.info/archives/2007/05/31/145/#comments</comments>
		<pubDate>Thu, 31 May 2007 14:01:18 +0000</pubDate>
		<dc:creator>vorlon</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Gentoo-de]]></category>
		<category><![CDATA[Geeks]]></category>
		<category><![CDATA[Gentoo]]></category>

		<guid isPermaLink="false">http://blog.vorlons.info/archives/2007/05/31/145/</guid>
		<description><![CDATA[Nun bin ich vorhin durch Zufall auf ein Buch bei Amazon gestossen, &#8220;Die Gentoo Metadistribution&#8221; von Tobias Scherbaum. Beim Blick auf den Abschnitt &#8220;Kunden, die diesen Artikel angesehen haben, haben auch angesehen&#8221; findet man dann &#8220;LEGO World City 7034 &#8211; Überwachungs- und Abhörtruck von LEGO&#8221;. Den Zusammenhang kann mir vielleicht mal jemand erklären Nun hat [...]]]></description>
			<content:encoded><![CDATA[<p>Nun bin ich vorhin durch Zufall auf ein Buch bei Amazon gestossen, &#8220;<a href="http://www.amazon.de/Die-Gentoo-Metadistribution-Tobias-Scherbaum/dp/382661769X/ref=pd_sbs_b_1/028-9513501-9139745">Die Gentoo Metadistribution</a>&#8221; von Tobias Scherbaum. Beim Blick auf den Abschnitt &#8220;<span class="h1">Kunden, die diesen Artikel angesehen haben, haben auch angesehen&#8221; findet man dann &#8220;</span><a href="http://www.amazon.de/LEGO-World-City-7034-%C3%9Cberwachungs/dp/B0000CFUIX/ref=pd_sbs_b_4/028-9513501-9139745">LEGO World City 7034 &#8211; Überwachungs- und Abhörtruck</a>             von LEGO&#8221;. Den Zusammenhang kann mir vielleicht mal jemand erklären <img src='http://blog.vorlons.info/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Nun hat <a href="http://blog.pregos.info">prego</a> sich noch die Seite des Trucks weiter angeguckt und dort findet sich dann bei &#8220;<span class="h1">Kunden, die diesen Artikel gekauft haben, haben auch folgende Artikel gekauft&#8221; das dazugehörige Buch&#8230; &#8220;</span><a href="http://www.amazon.de/Zeitmanagement-f%C3%BCr-Systemadministratoren-Thomas-Limoncelli/dp/3897214652/ref=pd_sim_dbs_toy_1/028-9513501-9139745">Zeitmanagement für Systemadministratoren</a>&#8221; von Thomas A. Limoncelli <img src='http://blog.vorlons.info/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vorlons.info/archives/2007/05/31/145/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Gentoo Summer Camp 2006</title>
		<link>http://blog.vorlons.info/archives/2006/06/19/113/</link>
		<comments>http://blog.vorlons.info/archives/2006/06/19/113/#comments</comments>
		<pubDate>Mon, 19 Jun 2006 14:51:30 +0000</pubDate>
		<dc:creator>vorlon</dc:creator>
				<category><![CDATA[Gentoo-de]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Gentoo]]></category>

		<guid isPermaLink="false">http://blog.vorlons.info/archives/2006/06/19/113/</guid>
		<description><![CDATA[Bin ich gerade, zugegebenermassen zum zweiten Mal, ueber das GSC 2006 gestolpert&#8230; Allerdings hab&#8217; ich jetzt erst gesehen, dass das ja direkt um die Ecke von dem Ort liegt, wo ich aufgewachsen bin. Da muss ich mal gucken, ob sich da nicht etwas Zeit fuer freimachen laesst&#8230; Link: http://gsc2006.nachtnebelnelken.de/]]></description>
			<content:encoded><![CDATA[<p>Bin ich gerade, zugegebenermassen zum zweiten Mal, ueber das GSC 2006 gestolpert&#8230; Allerdings hab&#8217; ich jetzt erst gesehen, dass das ja direkt um die Ecke von dem Ort liegt, wo ich aufgewachsen bin. Da muss ich mal gucken, ob sich da nicht etwas Zeit fuer freimachen laesst&#8230;</p>
<p>Link:  <a href="http://gsc2006.nachtnebelnelken.de/">http://gsc2006.nachtnebelnelken.de/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vorlons.info/archives/2006/06/19/113/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ESO-MIDAS on Gentoo</title>
		<link>http://blog.vorlons.info/archives/2006/03/15/99/</link>
		<comments>http://blog.vorlons.info/archives/2006/03/15/99/#comments</comments>
		<pubDate>Wed, 15 Mar 2006 21:04:30 +0000</pubDate>
		<dc:creator>vorlon</dc:creator>
				<category><![CDATA[Computer stuff]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[Gentoo]]></category>

		<guid isPermaLink="false">http://blog.vorlons.info/archives/2006/03/15/99/</guid>
		<description><![CDATA[Just got ESO-MIDAS 06FEBpl1.0 installed on my amd64 Gentoo system Last time I tried it didn&#8217;t work too well&#8230;]]></description>
			<content:encoded><![CDATA[<p align="left">Just got <a href="http://www.eso.org/projects/esomidas">ESO-MIDAS</a> 06FEBpl1.0 installed on my amd64 Gentoo system <img src='http://blog.vorlons.info/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Last time I tried it didn&#8217;t work too well&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vorlons.info/archives/2006/03/15/99/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update auf PHP5</title>
		<link>http://blog.vorlons.info/archives/2006/02/27/95/</link>
		<comments>http://blog.vorlons.info/archives/2006/02/27/95/#comments</comments>
		<pubDate>Mon, 27 Feb 2006 18:08:34 +0000</pubDate>
		<dc:creator>vorlon</dc:creator>
				<category><![CDATA[Computer stuff]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Gentoo-de]]></category>
		<category><![CDATA[Weblog]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.vorlons.info/archives/2006/02/27/95/</guid>
		<description><![CDATA[So&#8230; jetzt läuft der Webserver auch mit PHP5&#8230; update hat mit Hilfe von http://www.gentoo.org/proj/en/php/php-upgrading.xml problemlos geklappt.]]></description>
			<content:encoded><![CDATA[<p>So&#8230; jetzt läuft der Webserver auch mit PHP5&#8230; update hat mit Hilfe von <a href="http://www.gentoo.org/proj/en/php/php-upgrading.xml">http://www.gentoo.org/proj/en/php/php-upgrading.xml</a> problemlos geklappt.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vorlons.info/archives/2006/02/27/95/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NewsForge &#124; My Workstation OS: Gentoo</title>
		<link>http://blog.vorlons.info/archives/2005/03/18/60/</link>
		<comments>http://blog.vorlons.info/archives/2005/03/18/60/#comments</comments>
		<pubDate>Fri, 18 Mar 2005 16:29:40 +0000</pubDate>
		<dc:creator>vorlon</dc:creator>
				<category><![CDATA[Gentoo-de]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Gentoo]]></category>

		<guid isPermaLink="false">http://blog.vorlons.info/archives/2005/03/18/60/</guid>
		<description><![CDATA[Ein netter Artikel bei Newsforge über Gentoo: NewsForge &#124; My Workstation OS: Gentoo Beschreibt zum grossen Teil auch die Dinge die mir an Gentoo gefallen und das ist nicht das herumfeilen an irgendwelchen Compiler-Optionen etc. sondern die Konfigurierbarkeit, die tolle Community und all das&#8230; Gefunden bei Pieter über Planet Gentoo.]]></description>
			<content:encoded><![CDATA[<p>Ein netter Artikel bei Newsforge über Gentoo: <a href="http://os.newsforge.com/os/05/03/04/2035214.shtml?tid=2">NewsForge | My Workstation OS: Gentoo</a><br />
Beschreibt zum grossen Teil auch die Dinge die mir an Gentoo gefallen und das ist nicht das herumfeilen an irgendwelchen Compiler-Optionen etc. sondern die Konfigurierbarkeit, die tolle Community und all das&#8230;</p>
<p>Gefunden bei <a href="http://metadistribution.org/blog/archives/archive_2005-m03.php#e22">Pieter</a> über <a href="http://planet.gentoo.org">Planet Gentoo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vorlons.info/archives/2005/03/18/60/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Neue Kategorie: Gentoo-de</title>
		<link>http://blog.vorlons.info/archives/2005/03/18/59/</link>
		<comments>http://blog.vorlons.info/archives/2005/03/18/59/#comments</comments>
		<pubDate>Fri, 18 Mar 2005 16:18:08 +0000</pubDate>
		<dc:creator>vorlon</dc:creator>
				<category><![CDATA[Gentoo-de]]></category>
		<category><![CDATA[Weblog]]></category>
		<category><![CDATA[Gentoo]]></category>

		<guid isPermaLink="false">http://blog.vorlons.info/archives/2005/03/18/59/</guid>
		<description><![CDATA[Nachdem nun sämtliche Einträge der Kategorie Gentoo automatisch auch im Planet Gentoo und dort die Sprache der Wahl natürlich Englisch ist, hab&#8217; ich nun noch die Kategorie Gentoo-de hinzugefügt. Hier wird wohl alles in Zusammenhang mit Gentoo landen, was nicht so recht in den Planet passt oder was ich einfach mal (auch) auf Deutsch schreiben [...]]]></description>
			<content:encoded><![CDATA[<p>Nachdem nun sämtliche Einträge der Kategorie <a href="http://blog.vorlons.info/archives/category/gentoo/">Gentoo</a> automatisch auch im <a href="http://planet.gentoo.org">Planet Gentoo</a> und dort die Sprache der Wahl natürlich Englisch ist, hab&#8217; ich nun noch die Kategorie Gentoo-de hinzugefügt. Hier wird wohl alles in Zusammenhang mit Gentoo landen, was nicht so recht in den Planet passt oder was ich einfach mal (auch) auf Deutsch schreiben will.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vorlons.info/archives/2005/03/18/59/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

