<?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"
	>

<channel>
	<title>Kirya [.net]</title>
	<atom:link href="http://www.kirya.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kirya.net</link>
	<description>Julien Valroff's weblog and personal homepage</description>
	<pubDate>Tue, 26 Aug 2008 12:08:47 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>New WP design</title>
		<link>http://www.kirya.net/weblog/2008/08/09/new-wp-design/</link>
		<comments>http://www.kirya.net/weblog/2008/08/09/new-wp-design/#comments</comments>
		<pubDate>Sat, 09 Aug 2008 09:09:37 +0000</pubDate>
		<dc:creator>Julien</dc:creator>
		
		<category><![CDATA[Weblog]]></category>

		<guid isPermaLink="false">http://www.kirya.net/?p=263</guid>
		<description><![CDATA[I have just updated my WP setup to use a new design, provided by Smashing Magazine: Fervens was designed by Elena Gafita.
I will work on adapting this theme to better suit my needs, and especially allow easy reading of &#8220;long&#8221; articles. I hope my readers will enjoy it.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.kirya.net/wp-content/uploads/2008/08/i-love-sm.png"><img src="http://www.kirya.net/wp-content/uploads/2008/08/i-love-sm.png" alt="" title="I love Smahing Magazine" width="120" height="33" class="alignnone size-full wp-image-268" /></a>I have just updated my WP setup to use a new design, provided by <a href="http://www.smashingmagazine.com">Smashing Magazine</a>: <a href="http://www.smashingmagazine.com/2008/08/05/fervens-a-free-wordpress-theme/">Fervens</a> was designed by <a href="http://designdisease.com/">Elena Gafita</a>.</p>
<p>I will work on adapting this theme to better suit my needs, and especially allow easy reading of &#8220;long&#8221; articles. I hope my readers will enjoy it.</p>]]></content:encoded>
			<wfw:commentRss>http://www.kirya.net/weblog/2008/08/09/new-wp-design/feed/</wfw:commentRss>
		</item>
		<item>
		<title>USB card reader and USB power management</title>
		<link>http://www.kirya.net/weblog/2008/06/01/usb-card-reader-and-usb-power-management/</link>
		<comments>http://www.kirya.net/weblog/2008/06/01/usb-card-reader-and-usb-power-management/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 08:10:16 +0000</pubDate>
		<dc:creator>Julien</dc:creator>
		
		<category><![CDATA[Weblog]]></category>

		<category><![CDATA[Debian]]></category>

		<category><![CDATA[Planet Debian]]></category>

		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.kirya.net/?p=253</guid>
		<description><![CDATA[I have received a brand new USB card reader.
At first sight, everything was working well &#8220;out of the box&#8221;, but when I have checked the log files, I could see the following lines repeated very frequently:

Jun  1 08:22:08 athyr kernel: [ 1412.134045] usb 6-2: reset high speed USB device using ehci_hcd and address 3

I [...]]]></description>
			<content:encoded><![CDATA[<p>I have received a brand new <abbr class="uttInitialism" title="Universal Serial Bus">USB</abbr> card reader.</p>
<p>At first sight, everything was working well &#8220;out of the box&#8221;, but when I have checked the log files, I could see the following lines repeated very frequently:</p>

<div class="wp_syntax"><div class="code"><pre class="none" style="font-family:monospace;">Jun  1 08:22:08 athyr kernel: [ 1412.134045] usb 6-2: reset high speed USB device using ehci_hcd and address 3</pre></div></div>

<p>I repeat everything seems to work OK, but I can&#8217;t stand this kind of messages, especially when it deals with storage (by experience, everything works well during the tests, you simply ignore error messages, and you loose your data the first time you really use your hardware!).</p>
<p><span id="more-253"></span><br />
After some googling, I have found this issue is hardware related. A lot of people seem to get hit by this. Some have even reverted to <abbr class="uttInitialism" title="Universal Serial Bus">USB</abbr> 1 (UHCI)!</p>
<p>Further googling pointed out <a href="https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.20/+bug/85488/comments/363">this article</a>.</p>
<p>I have tried to disable <abbr class="uttInitialism" title="Universal Serial Bus">USB</abbr> auto-suspend, and changing the idle-delay time (default is 2 seconds). But it doesn&#8217;t help.</p>
<p>Just for reference, this can be done like this:<br />
<code>echo -1 > /sys/module/usbcore/parameters/autosuspend</code></p>
<p>Note the following part of the documentation:<br />
<strong>The idle-delay values for already existing devices will not be affected</strong></p>
<p>To make the change permanent, you need to append <tt>usbcore.autosuspend=-1</tt> to the boot parameters (<abbr class="uttInitialism" title="Universal Serial Bus">USB</abbr> support is compiled into Debian kernels).<br />
More information on: <a href="http://www.mjmwired.net/kernel/Documentation/usb/power-management.txt">http://www.mjmwired.net/kernel/Documentation/usb/power-management.txt</a></p>
<p>I can also see the following message at boot time:</p>

<div class="wp_syntax"><div class="code"><pre class="none" style="font-family:monospace;">unable to enumerate USB device on port 4</pre></div></div>

<p>According to <a href="http://lkml.org/lkml/2008/4/26/217">this recent discussion</a>, it seems it is harmless.</p>
<p>I have however noticed that unplugging the card reader and re-plugging it after the system has booted make these log entries disappear. Does someone have an idea?</p>
<p>Note that I use the latest Debian 2.6.25 kernel:</p>

<div class="wp_syntax"><div class="code"><pre class="none" style="font-family:monospace;">$ uname -a
Linux athyr 2.6.25-2-amd64 #1 SMP Tue May 27 12:45:24 UTC 2008 x86_64 GNU/Linux</pre></div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.kirya.net/weblog/2008/06/01/usb-card-reader-and-usb-power-management/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to fix DNS zone serial numbers</title>
		<link>http://www.kirya.net/weblog/2008/05/24/dns-zone-serial/</link>
		<comments>http://www.kirya.net/weblog/2008/05/24/dns-zone-serial/#comments</comments>
		<pubDate>Sat, 24 May 2008 20:00:24 +0000</pubDate>
		<dc:creator>Julien</dc:creator>
		
		<category><![CDATA[Weblog]]></category>

		<category><![CDATA[Geek]]></category>

		<category><![CDATA[Planet Debian]]></category>

		<guid isPermaLink="false">http://www.kirya.net/?p=252</guid>
		<description><![CDATA[A small memo in case it happens again&#8230; Maybe this can also help others&#8230;
I have made a typing error when incrementing a zone serial number this morning (I though we were in year 2009!). I realized this error after the transfer was made to my secondary server, and I couldn&#8217;t figure out how I could [...]]]></description>
			<content:encoded><![CDATA[<p>A small memo in case it happens again&#8230; Maybe this can also help others&#8230;</p>
<p>I have made a typing error when incrementing a zone serial number this morning (I though we were in year 2009!). I realized this error after the transfer was made to my secondary server, and I couldn&#8217;t figure out how I could fix this: if the serial number on the slave server is lower than the serial number on the master, the slave server will attempt to update its copy of the zone.</p>
<p>I have read <a href="http://www.zytrax.com/books/dns/ch9/serial.html">some</a> <a href="http://www.bind9.net/manual/bind/9.3.2/Bv9ARM.ch08.html#id2567648">websites</a> explaining one should add 2147483647 (2^31-1) to the number, reload the zone, let the slave get updated and revert to the appropriate serial number.</p>
<p>Unfortunately, this solution hasn&#8217;t worked for me.</p>
<p>I have read in <a href="http://www.faqs.org/rfcs/rfc1912.html">RFC 1912</a> (section 2.2  - SOA records), that the system was planned until year 4294. I have henced updated the number of my master server to year 4294123199 (ie. the last possible serial number), reloaded the zone. After the transfer was propagated to the slave, I could simply revert to a standard serial number.</p>]]></content:encoded>
			<wfw:commentRss>http://www.kirya.net/weblog/2008/05/24/dns-zone-serial/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Server migration successful</title>
		<link>http://www.kirya.net/weblog/2008/05/24/server-migration-successful/</link>
		<comments>http://www.kirya.net/weblog/2008/05/24/server-migration-successful/#comments</comments>
		<pubDate>Sat, 24 May 2008 19:49:14 +0000</pubDate>
		<dc:creator>Julien</dc:creator>
		
		<category><![CDATA[Weblog]]></category>

		<category><![CDATA[Geek]]></category>

		<guid isPermaLink="false">http://www.kirya.net/?p=251</guid>
		<description><![CDATA[All my web-services are now running on a new host (namely nix.kirya.net).
The DNS transition is not completely over, but should be ok tomorrow.
It appears everything is working well.
Please report any issue you might notice.]]></description>
			<content:encoded><![CDATA[<p>All my web-services are now running on a new host (namely <a href="http://nix.kirya.net">nix.kirya.net</a>).</p>
<p>The DNS transition is not completely over, but should be ok tomorrow.</p>
<p>It appears everything is working well.<br />
Please report any issue you might notice.</p>]]></content:encoded>
			<wfw:commentRss>http://www.kirya.net/weblog/2008/05/24/server-migration-successful/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hosting problems and side effects of the OpenSSL vulnerability</title>
		<link>http://www.kirya.net/weblog/2008/05/19/hosting-problems-and-side-effects-of-the-openssl-vulnerability/</link>
		<comments>http://www.kirya.net/weblog/2008/05/19/hosting-problems-and-side-effects-of-the-openssl-vulnerability/#comments</comments>
		<pubDate>Mon, 19 May 2008 18:20:52 +0000</pubDate>
		<dc:creator>Julien</dc:creator>
		
		<category><![CDATA[Weblog]]></category>

		<category><![CDATA[Debian]]></category>

		<category><![CDATA[Geek]]></category>

		<category><![CDATA[Planet Debian]]></category>

		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.kirya.net/?p=250</guid>
		<description><![CDATA[I am in the process of moving all my services (including this website and my mail server) to a new host (actually a virtual server). Until now, almost all of them were (hum, are&#8230; see below) hosted on my home server on a DSL line.
The aim is to ease maintenance, reduce power usage, and avoid [...]]]></description>
			<content:encoded><![CDATA[<p>I am in the process of moving all my services (including this website and my mail server) to a new host (actually a virtual server). Until now, almost all of them were (hum, are&#8230; see below) hosted on my home server on a DSL line.</p>
<p>The aim is to ease maintenance, reduce power usage, and avoid any risk of fire when not at home.</p>
<p>Most of the websites and the mail server were moved to the new virtual server at the beginning of the week.</p>
<p>I had to postpone my backup configuration to deal with the <a href="http://www.debian.org/security/2008/dsa-1571">OpenSSL vulnerability</a>.</p>
<p>Unfortunately, one of the filer of my new hosting company crashed on Thursday and all the data of my virtual host have been lost.</p>
<p>The server is still unreachable, I had to move back to my home server on Friday.</p>
<p>This lead to some outages on all my websites in the meantime. Sorry for any inconvenience.</p>
<p>I have also lost a few e-mail (which I have received on the new host, but not yet read, ie. not yet in my MUA cache). If you sent something I haven&#8217;t yet answered to, please send it again.</p>
<p>I hope I will be able to work on the virtual server again next week-end.</p>]]></content:encoded>
			<wfw:commentRss>http://www.kirya.net/weblog/2008/05/19/hosting-problems-and-side-effects-of-the-openssl-vulnerability/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New packages in my experimental repository</title>
		<link>http://www.kirya.net/weblog/2008/05/03/new-packages-in-my-experimental-repositories/</link>
		<comments>http://www.kirya.net/weblog/2008/05/03/new-packages-in-my-experimental-repositories/#comments</comments>
		<pubDate>Sat, 03 May 2008 08:51:28 +0000</pubDate>
		<dc:creator>Julien</dc:creator>
		
		<category><![CDATA[Weblog]]></category>

		<category><![CDATA[Debian]]></category>

		<category><![CDATA[Planet Debian]]></category>

		<guid isPermaLink="false">http://www.kirya.net/?p=246</guid>
		<description><![CDATA[As some of you might have noticed, I have uploaded a bunch of new packages to my experimental repository, all of them related to digital photographic workflow. Most of them are based on existing packages, but built from a VCS snapshot to benefit from newly supported hardware and new features.

ufraw was updated to support my [...]]]></description>
			<content:encoded><![CDATA[<p>As some of you might have noticed, I have <a href="http://lists.kirya.net/debian/">uploaded</a> a bunch of new packages to my <a href="http://packages.kirya.net/packages.php?dist=experimental">experimental repository</a>, all of them related to digital photographic workflow. Most of them are based on existing packages, but built from a VCS snapshot to benefit from newly supported hardware and new features.</p>
<ul>
<li><strong>ufraw</strong> was updated to support my Sony DSLR-A700 camera - packaged based on the latest release available in sid.</li>
<li><strong>hugin</strong> package in unstable is outdated - I have based my package on Debian PhotoTools member Cyril Brulebois&#8217;s work. It seems that some legal questions have been raised, preventing the package to be updated in the official archive.</li>
<li><strong>autopano-sift</strong> fixes FTBS and other bugs in <a href="http://debian-multimedia.org/">Christian Marillat</a>&#8217;s package and proves working well with hugin. I will e-mail him a patch with the amendments I have worked on.</li>
<li><strong>enblend</strong> needs to be built from VCS to work with current hugin snapshots. The package is fully based on the package available in sid.</li>
</ul>
<p>Though I use these packages on a regular basis, they haven&#8217;t been thoroughly tested as official packages would be, and might still contain bugs or errors. Please report any problem you might have.</p>
<p>I will try and update these packages when time allows it. VCS snapshots might be unstable, or even non-usable. As usual, use these non-official packages on your own risk.</p>
<p>Also note that these packages are currently only available for amd64. I will eventually build i386 packages if requested.</p>]]></content:encoded>
			<wfw:commentRss>http://www.kirya.net/weblog/2008/05/03/new-packages-in-my-experimental-repositories/feed/</wfw:commentRss>
		</item>
		<item>
		<title>iPod nano video</title>
		<link>http://www.kirya.net/weblog/2007/12/26/ipod-nano-video/</link>
		<comments>http://www.kirya.net/weblog/2007/12/26/ipod-nano-video/#comments</comments>
		<pubDate>Wed, 26 Dec 2007 10:53:07 +0000</pubDate>
		<dc:creator>Julien</dc:creator>
		
		<category><![CDATA[Weblog]]></category>

		<category><![CDATA[Geek]]></category>

		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.kirya.net/weblog/2007/12/26/ipod-nano-video/</guid>
		<description><![CDATA[My girlfriend received an iPod nano video for Christmas.
As for music, it works fine with rhythmbox from experimental rebuilt against latest libgpod library.
But I can&#8217;t find any Linux software which would allow us to transfer pictures. I have tried gpixpod, but it seems the iPod is too new as it doesn&#8217;t even detect it. iTunes [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.kirya.net/wp-content/uploads/2007/12/ipod-nano.jpg' title='ipod-nano.jpg'><img src='http://www.kirya.net/wp-content/uploads/2007/12/ipod-nano.thumbnail.jpg' alt='ipod-nano.jpg' /></a>My girlfriend received an iPod nano video for Christmas.</p>
<p>As for music, it works fine with rhythmbox from experimental <b>rebuilt</b> against latest libgpod library.</p>
<p>But I can&#8217;t find any Linux software which would allow us to transfer pictures. I have tried <a href="http://www.gpixpod.org/">gpixpod</a>, but it seems the iPod is too new as it doesn&#8217;t even detect it. iTunes does not run with Wine.</p>
<p>I think I will try to set up <a href="http://ipodlinux.org/Main_Page">iPod Linux</a> some day&#8230;</p>]]></content:encoded>
			<wfw:commentRss>http://www.kirya.net/weblog/2007/12/26/ipod-nano-video/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Etch to Lenny upgrade</title>
		<link>http://www.kirya.net/weblog/2007/12/26/etch-to-lenny-upgrade/</link>
		<comments>http://www.kirya.net/weblog/2007/12/26/etch-to-lenny-upgrade/#comments</comments>
		<pubDate>Wed, 26 Dec 2007 09:25:39 +0000</pubDate>
		<dc:creator>Julien</dc:creator>
		
		<category><![CDATA[Weblog]]></category>

		<category><![CDATA[Planet Debian]]></category>

		<guid isPermaLink="false">http://www.kirya.net/weblog/2007/12/26/etch-to-lenny-upgrade/</guid>
		<description><![CDATA[I have just upgraded one of my system from Etch to Lenny. The process was very fast and I had no problem, except hal which refused to start because of SELinux. This is now fixed thanks to audit2allow.
I have also lost some time due to the fact I had forgotten to install the headers of [...]]]></description>
			<content:encoded><![CDATA[<p>I have just upgraded one of my system from Etch to Lenny. The process was very fast and I had no problem, except hal which refused to start because of SELinux. This is now fixed thanks to <tt>audit2allow</tt>.</p>
<p>I have also lost some time due to the fact I had forgotten to install the headers of the upgraded kernel, preventing me from building the module of my wireless card.</p>]]></content:encoded>
			<wfw:commentRss>http://www.kirya.net/weblog/2007/12/26/etch-to-lenny-upgrade/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Two years blogging</title>
		<link>http://www.kirya.net/weblog/2007/12/26/two-years-blogging/</link>
		<comments>http://www.kirya.net/weblog/2007/12/26/two-years-blogging/#comments</comments>
		<pubDate>Wed, 26 Dec 2007 09:21:33 +0000</pubDate>
		<dc:creator>Julien</dc:creator>
		
		<category><![CDATA[Weblog]]></category>

		<guid isPermaLink="false">http://www.kirya.net/weblog/2007/12/26/two-years-blogging/</guid>
		<description><![CDATA[It&#8217;s been two year since I started blogging on 12th December 2005. I have posted 118 entries, ie. an average of almost 5 posts per month. Not that bad!]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been two year since I started blogging on <a href="http://www.kirya.net/weblog/2005/12/12/first-blog-first-entry/">12th December 2005</a>. I have posted 118 entries, ie. an average of almost 5 posts per month. Not that bad!</p>]]></content:encoded>
			<wfw:commentRss>http://www.kirya.net/weblog/2007/12/26/two-years-blogging/feed/</wfw:commentRss>
		</item>
		<item>
		<title>#455196: DM application for Julien Valroff - closed</title>
		<link>http://www.kirya.net/weblog/2007/12/11/455196-dm-application-for-julien-valroff-closed/</link>
		<comments>http://www.kirya.net/weblog/2007/12/11/455196-dm-application-for-julien-valroff-closed/#comments</comments>
		<pubDate>Tue, 11 Dec 2007 17:12:37 +0000</pubDate>
		<dc:creator>Julien</dc:creator>
		
		<category><![CDATA[Weblog]]></category>

		<category><![CDATA[Planet Debian]]></category>

		<guid isPermaLink="false">http://www.kirya.net/weblog/2007/12/11/455196-dm-application-for-julien-valroff-closed/</guid>
		<description><![CDATA[It seems like my application to become Debian Maintainer has been accepted. This means that in the near future, I will be able to upload myself the updated packages I currently (co-)maintain.
All of them still need to be uploaded by my current sponsors with the DM-Upload-Allowed field.
Again, many thanks to Micah Anderson, Christoph Haas and [...]]]></description>
			<content:encoded><![CDATA[<p>It seems like my application to become <a href="http://www.debian.org/vote/2007/vote_003">Debian Maintainer</a> has been accepted. This means that in the near future, I will be able to upload myself the updated packages I currently (co-)maintain.<br />
All of them still need to be uploaded by my current sponsors with the <tt>DM-Upload-Allowed</tt> field.</p>
<p>Again, many thanks to Micah Anderson, Christoph Haas and Loïc Minier for their advocacies and, in a more general way, for the help they bring on a day-to-day basis.</p>]]></content:encoded>
			<wfw:commentRss>http://www.kirya.net/weblog/2007/12/11/455196-dm-application-for-julien-valroff-closed/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
