<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Bits and Chaos</title>
	<atom:link href="http://bitsandchaos.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bitsandchaos.wordpress.com</link>
	<description>Between bits and chaos, a sysadmin stands.</description>
	<lastBuildDate>Sat, 24 Dec 2011 18:24:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='bitsandchaos.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Bits and Chaos</title>
		<link>http://bitsandchaos.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://bitsandchaos.wordpress.com/osd.xml" title="Bits and Chaos" />
	<atom:link rel='hub' href='http://bitsandchaos.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Import PST and DBX file into Thunderbird (or any other mail client)</title>
		<link>http://bitsandchaos.wordpress.com/2010/07/25/import-pst-and-dbx-file-into-thunderbird-or-any-other-mail-client/</link>
		<comments>http://bitsandchaos.wordpress.com/2010/07/25/import-pst-and-dbx-file-into-thunderbird-or-any-other-mail-client/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 19:41:33 +0000</pubDate>
		<dc:creator>Paolo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dbx format]]></category>
		<category><![CDATA[import mail]]></category>
		<category><![CDATA[mbox format]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[outlook express]]></category>
		<category><![CDATA[pst format]]></category>
		<category><![CDATA[thunderbird]]></category>

		<guid isPermaLink="false">http://bitsandchaos.wordpress.com/?p=94</guid>
		<description><![CDATA[Scenario: you have some .MBX or .PST files, and you want to import them into Thunderbird. The easy way to accomplish requires the installation of Outlook/Outlook Express, then importing the files into this application, then firing up Thunderbird and using the Import menu (there&#8217;s also an extension, I&#8217;ve tested and doesn&#8217;t work). I don&#8217;t like [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitsandchaos.wordpress.com&amp;blog=2148685&amp;post=94&amp;subd=bitsandchaos&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><em>Scenario: you have some .MBX or .PST files, and you want to import them into Thunderbird.</em></p>
<p>The easy way to accomplish requires the installation of Outlook/Outlook Express, then importing the files into this application, then firing up Thunderbird and using the Import menu (there&#8217;s also an extension, I&#8217;ve tested and doesn&#8217;t work). I don&#8217;t like this very much, as it requires the installation of another application; it would be better if Thunderbird could directly load an .MBX/.PST file, but this options is still lacking as of Thunderbird 3.1.1.</p>
<p>So I have devised another approach:</p>
<ol>
<li>Convert the .MBX/.PST file into mbox format: <a href="http://www.five-ten-sg.com/libpst/">readpst</a> (available for Linux, in Fedora 12 is in the <strong>libpst</strong> package) could handle the PST format, while <a href="http://www.softpedia.com/get/Internet/E-mail/Mail-Utilities/DbxConv.shtml">DBXConv</a> (available for Windows, AFAIK) could handle the MBX format; both of them will produce a standard MBOX file;</li>
<li>Create a dedicated user for a Linux system, and copy the MBOX file produced in step 1 into <strong>/var/spool/mail/&lt;username&gt;</strong>;</li>
<li>Install and configure dovecot to act as a POP3 server; from the standard configuration in Fedora 12, you have to change just a couple of paramaters in <strong>/etc/dovecot.conf</strong>: the first one is <strong>protocols</strong>, that you&#8217;ll set at <strong>pop3</strong>, the second is <strong>mail_location</strong>, that must be set at <strong>/var/spool/mail/%u</strong> (%u will be expanded to username, see the configuration file itself for more information);</li>
<li>Start dovecot, check that firewall doesn&#8217;t block connections, etc&#8230;;</li>
<li>Now on Thunderbird you could create a new account, that connect to the POP3 server, to download the content of the MBOX file; then you&#8217;ll select all the mails and copy then into a local folder.</li>
</ol>
<p>This could be repeated for every file, when needed; also, the MBOX format is so good that you could concatenate multiple MBOX files into <strong>/var/spool/mail/&lt;username&gt;</strong> and then performing a single bigger import, maybe with some filters to dispatch incoming mails.</p>
<p>I&#8217;ve done this today for a friend of mine, and I&#8217;ve been able to import about 30,000 mails, from 1999 to today, coming from at least three different computers and multiple versions of Outlook and Outlook Express.</p>
<p>Of course, starting from now, he is kindly requested to use a mail client that natively support an open format.</p>
<br /> Tagged: <a href='http://bitsandchaos.wordpress.com/tag/dbx-format/'>dbx format</a>, <a href='http://bitsandchaos.wordpress.com/tag/import-mail/'>import mail</a>, <a href='http://bitsandchaos.wordpress.com/tag/mbox-format/'>mbox format</a>, <a href='http://bitsandchaos.wordpress.com/tag/outlook/'>outlook</a>, <a href='http://bitsandchaos.wordpress.com/tag/outlook-express/'>outlook express</a>, <a href='http://bitsandchaos.wordpress.com/tag/pst-format/'>pst format</a>, <a href='http://bitsandchaos.wordpress.com/tag/thunderbird/'>thunderbird</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitsandchaos.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitsandchaos.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitsandchaos.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitsandchaos.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bitsandchaos.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bitsandchaos.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bitsandchaos.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bitsandchaos.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitsandchaos.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitsandchaos.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitsandchaos.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitsandchaos.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitsandchaos.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitsandchaos.wordpress.com/94/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitsandchaos.wordpress.com&amp;blog=2148685&amp;post=94&amp;subd=bitsandchaos&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bitsandchaos.wordpress.com/2010/07/25/import-pst-and-dbx-file-into-thunderbird-or-any-other-mail-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Paolo</media:title>
		</media:content>
	</item>
		<item>
		<title>Certificate Patrol can really save your pocket</title>
		<link>http://bitsandchaos.wordpress.com/2010/03/29/certificate-patrol-can-really-save-your-pocket/</link>
		<comments>http://bitsandchaos.wordpress.com/2010/03/29/certificate-patrol-can-really-save-your-pocket/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 10:32:20 +0000</pubDate>
		<dc:creator>Paolo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[man in the middle]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://bitsandchaos.wordpress.com/?p=84</guid>
		<description><![CDATA[Certificate Patrol is a nice add-on for Firefox: it basically monitors all SSL connections and checks, during activation, if the exchanged certificate has changed. This is extremely useful for determining if you are under a man-in-the-middle attack. To give you an idea, I tell you that my university has a webmail service, which I use [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitsandchaos.wordpress.com&amp;blog=2148685&amp;post=84&amp;subd=bitsandchaos&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="https://addons.mozilla.org/en-US/firefox/addon/6415">Certificate Patrol</a> is a nice add-on for Firefox: it basically monitors all SSL connections and checks, during activation, if the exchanged certificate has changed. This is extremely useful for determining if you are under a man-in-the-middle attack.</p>
<p>To give you an idea, I tell you that my university has a webmail service, which I use a lot. A couple of days ago, I access this service from work, and Certificate Patrol shows up this message screen:</p>
<p><a href="http://bitsandchaos.files.wordpress.com/2010/03/mitm2.png"><img class="alignnone size-full wp-image-89" title="mitm" src="http://bitsandchaos.files.wordpress.com/2010/03/mitm2.png?w=406&#038;h=253" alt="" width="406" height="253" /></a></p>
<p>The message is a bit cryptic, but the sense is clear if you know how to read it: the Certification Authority that guarantees the authenticity of the site I&#8217;m using is changed, and is no longer Cybertrust. So I ran into the operations office and told them that we are under attack, just to discover that they are doing a test, using some (I cannot tell you the name) web proxy to inspect all the SSL connections. Of course, it was just a test, but Certificate Patrol really does its job, alerting me that something strange it&#8217;s happening in the network.</p>
<p>It&#8217;s interesting to observe that, prior to the message, I was temporarily unable to access the webmail: I thought it was because they were experiencing problems, while it was due operations reconfiguring the web proxy. When I was finally able to access the webmail, Firefox told me (using the standard message) that the connection to the website was with an unsecure certificate, and my first idea was that they had rebooted the webmail in the university and they have somehow changed the certificate, so I click, click and click again to tell Firefox that I was willing to accept the risks.</p>
<p>In fact, I did a stupid thing, because I should not accept, at least no easily, that a website is changing its certificate with something not issued by a CA: without Certificate Patrol I would be unaware of what was really happening.</p>
<p>And, if you think that you would never experience anything like this, because you always refuse accepting certificates from an unknown CA, you&#8217;d better read this <em><a href="http://www.wired.com/threatlevel/2010/03/packet-forensics/">Law Enforcement Appliance Subverts SSL</a></em> and <em><a href="http://files.cloudprivacy.net/ssl-mitm.pdf">Certified Lies: Detecting and Defeating Government Interception Attacks Against SSL</a></em>, an article where another plugin for Firefox to address this kind of vulnerability is exposed.</p>
<br /> Tagged: <a href='http://bitsandchaos.wordpress.com/tag/firefox/'>firefox</a>, <a href='http://bitsandchaos.wordpress.com/tag/man-in-the-middle/'>man in the middle</a>, <a href='http://bitsandchaos.wordpress.com/tag/plugin/'>plugin</a>, <a href='http://bitsandchaos.wordpress.com/tag/security/'>security</a>, <a href='http://bitsandchaos.wordpress.com/tag/ssl/'>ssl</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitsandchaos.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitsandchaos.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitsandchaos.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitsandchaos.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bitsandchaos.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bitsandchaos.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bitsandchaos.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bitsandchaos.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitsandchaos.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitsandchaos.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitsandchaos.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitsandchaos.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitsandchaos.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitsandchaos.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitsandchaos.wordpress.com&amp;blog=2148685&amp;post=84&amp;subd=bitsandchaos&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bitsandchaos.wordpress.com/2010/03/29/certificate-patrol-can-really-save-your-pocket/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Paolo</media:title>
		</media:content>

		<media:content url="http://bitsandchaos.files.wordpress.com/2010/03/mitm2.png" medium="image">
			<media:title type="html">mitm</media:title>
		</media:content>
	</item>
		<item>
		<title>Internet Traffic Consolidation</title>
		<link>http://bitsandchaos.wordpress.com/2010/03/19/internet-traffic-consolidation/</link>
		<comments>http://bitsandchaos.wordpress.com/2010/03/19/internet-traffic-consolidation/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 10:33:12 +0000</pubDate>
		<dc:creator>Paolo</dc:creator>
				<category><![CDATA[network]]></category>
		<category><![CDATA[asn]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[nanog]]></category>
		<category><![CDATA[peering]]></category>

		<guid isPermaLink="false">http://bitsandchaos.wordpress.com/?p=82</guid>
		<description><![CDATA[We had learnt and taught Internet as an hierarchy of ASN, starting from local ISP to regional to Tier 1, with traffic graciously moving between the levels. This is no longer true, according to this presentation from NANOG47: 150 ASN accounts for 50% of all Internet traffic; Revenues from Internet Transit are declining, whilst revenues [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitsandchaos.wordpress.com&amp;blog=2148685&amp;post=82&amp;subd=bitsandchaos&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We had learnt and taught Internet as an hierarchy of ASN, starting from local ISP to regional to Tier 1, with traffic graciously moving between the levels.</p>
<p>This is no longer true, according to <a href="http://www.nanog.org/meetings/nanog47/presentations/Monday/Labovitz_ObserveReport_N47_Mon.pdf">this </a> presentation from NANOG47:</p>
<ul>
<li>150 ASN accounts for 50% of all Internet traffic;</li>
<li>Revenues from Internet Transit are declining, whilst revenues from Internet Advertisement compensates;</li>
<li>The new rule is 30/30: the 30 top destinations (Google, Yahoo, Facebook, &#8230;) accounts for 30% of all traffic, so if you are a provider you&#8217;d better make a deal with them: your customer would get a better Internet experience which is a commercial advantage: as a result, <a href="http://www.wired.com/epicenter/2009/10/youtube-bandwidth/">Youtube bandwidth bill</a> is a lot less than you could imagine.</li>
</ul>
<p>It&#8217;s time to rewrite some courses material.</p>
<br /> Tagged: <a href='http://bitsandchaos.wordpress.com/tag/asn/'>asn</a>, <a href='http://bitsandchaos.wordpress.com/tag/internet/'>internet</a>, <a href='http://bitsandchaos.wordpress.com/tag/nanog/'>nanog</a>, <a href='http://bitsandchaos.wordpress.com/tag/peering/'>peering</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitsandchaos.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitsandchaos.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitsandchaos.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitsandchaos.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bitsandchaos.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bitsandchaos.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bitsandchaos.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bitsandchaos.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitsandchaos.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitsandchaos.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitsandchaos.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitsandchaos.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitsandchaos.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitsandchaos.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitsandchaos.wordpress.com&amp;blog=2148685&amp;post=82&amp;subd=bitsandchaos&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bitsandchaos.wordpress.com/2010/03/19/internet-traffic-consolidation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Paolo</media:title>
		</media:content>
	</item>
		<item>
		<title>LinkedIn and MTU settings for Linux systems</title>
		<link>http://bitsandchaos.wordpress.com/2010/01/07/linkedin-and-mtu-settings-for-linux-systems/</link>
		<comments>http://bitsandchaos.wordpress.com/2010/01/07/linkedin-and-mtu-settings-for-linux-systems/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 14:32:45 +0000</pubDate>
		<dc:creator>Paolo</dc:creator>
				<category><![CDATA[network]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mtu]]></category>

		<guid isPermaLink="false">http://bitsandchaos.wordpress.com/?p=72</guid>
		<description><![CDATA[For reasons quite above my understanding, some (including mine) Linux systems are unable to access LinkedIn. Symptoms include hanging forever in the login page, i.e. you could access the authentication page, reading some and yours profile, but cannot do anymore. This could fixed by issuing, as root: ifconfig eth0 mtu 1360 (assuming that you reach [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitsandchaos.wordpress.com&amp;blog=2148685&amp;post=72&amp;subd=bitsandchaos&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For reasons quite above my understanding, some (including mine) Linux systems are unable to access LinkedIn. Symptoms include hanging forever in the login page, i.e. you could access the authentication page, reading some and yours profile, but cannot do anymore.</p>
<p>This could fixed by issuing, as root:</p>
<p><strong>ifconfig eth0 mtu 1360</strong></p>
<p>(assuming that you reach the Internet via eth0).</p>
<p>It&#8217;s quite a strange setup, indeed. The only other time I had to do something like that was when I was trying to reach a Moodle server, that we had put on a LAN connected to the Internet via an ADSL consumer connection; the server was reachable from each customer of the same ISP but stuck for everyone else, everytime the poor guy requests a page whose size is more than or reaching the TCP/IP maximum payload (I guess this is for some kind of NAT magic/MPLS black magic/Peering sorcery that happens only for customers outside the AS).</p>
<p>I&#8217;m pretty sure that LinkedIn is not using a customer ADSL to connect itself to the Internet, and that they are seeing a constant loss of Linux customers due to this issue, which is very difficult to spot.</p>
<br /> Tagged: fedora, linkedin, linux, mtu <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitsandchaos.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitsandchaos.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitsandchaos.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitsandchaos.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bitsandchaos.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bitsandchaos.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bitsandchaos.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bitsandchaos.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitsandchaos.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitsandchaos.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitsandchaos.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitsandchaos.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitsandchaos.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitsandchaos.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitsandchaos.wordpress.com&amp;blog=2148685&amp;post=72&amp;subd=bitsandchaos&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bitsandchaos.wordpress.com/2010/01/07/linkedin-and-mtu-settings-for-linux-systems/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Paolo</media:title>
		</media:content>
	</item>
		<item>
		<title>Still waiting for a good e-book reader</title>
		<link>http://bitsandchaos.wordpress.com/2010/01/07/still-waiting-for-a-good-e-book-reader/</link>
		<comments>http://bitsandchaos.wordpress.com/2010/01/07/still-waiting-for-a-good-e-book-reader/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 13:32:36 +0000</pubDate>
		<dc:creator>Paolo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[e-book reader]]></category>

		<guid isPermaLink="false">http://bitsandchaos.wordpress.com/?p=70</guid>
		<description><![CDATA[Almost every year, several years now on, starts with the declaration that it will be the year of the Linux desktop. Although we are making some progresses in developing a competing platform for desktop PC (including releasing of some malware via a screensaver application) we are not seeing such widespread adoption, and probably we won&#8217;t [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitsandchaos.wordpress.com&amp;blog=2148685&amp;post=70&amp;subd=bitsandchaos&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Almost every year, several years now on, starts with the declaration that it will be the year of the Linux desktop. Although we are making some progresses in developing a competing platform for desktop PC (including releasing of some malware via a screensaver application) we are not seeing such widespread adoption, and probably we won&#8217;t see as the hot spot today is in cloud computing, virtual desktop, web-oriented operating systems and whatever.<br />
But another prediction could be done, that this year could be the year of the e-book reader. At least for me, as I have pondered a lot whether I should buy one of these during these holiday season. But I regret to avoid this expensive self-gift, as I am not seeing a device that does all and only all it should do. The portable music audio market took off when Apple released the iPod, as it does only one thing but very well, not from the technological point of view (it&#8217;s always an MP3, so a relative good sound quality) but for the interface itself, that let people do what we want to do: choose and building our music library, arrange and playing it the way we want. This extremely good design seems not happening until now for the e-book reader market.<br />
What should I expect to find in a e-book reader? I&#8217;ve thought this sort of list:</p>
<ul>
<li>a 9-10 inches display: a 6 inches display is too small to comfortably read a page, i.e. it will contain few words and, as a result, it will force to turn pages more frequently; also, a 9-10 inches allows to zoom the text, so it makes the device adapting to myself and not the contrary;</li>
<li>a touchscreen interface, as I am already read books using also my hands, and I do not want to use a stylus, that could easily get lost and it will make things unnecessarily clumsy;</li>
<li>the ability to make notes, which would be expecially useful for tech books and documentation;</li>
<li>the design principle, deeply rooted in the device, that I am the owner of my books, and I could do with them whatever I want to, including reading, taking notes, making summaries, lending and borrowing;</li>
<li>some kind of wireless connectivity so I could move books to and from the device without setting a physical connection (that, nevertheless, should be available);</li>
<li>ability to read technical documentation, i.e. something available in a PDF format but designed and developed with an A4 paper format in mind;</li>
<li>an integrated dictionary, and something on the big and complex side (not an &#8220;First English Dictionary&#8221; but more the Webster) letting me to pinpoint a word and obtain its definition with a simple gesture;</li>
<li>a price not over 300 euros (400 $), as otherwise the time it takes to repay the investment would be several years.</li>
</ul>
<p>Even not including the price limit, there are no devices in the market with all these features: most e-book readers have a 6 inches display, the Kindle is deeply integrated with the Amazon DRM (which could let to disaster like <a href="http://mashable.com/2009/07/17/amazon-kindle-1984/">this</a>), or some features are missing (the dictionary) or bad-implemented (stylus instead of the touchscreen).</p>
<p>It seems to me like designers are so satisfied with the e-Ink technology that they simply refuse to work more on the interface, empathizing thinks like the battery lasting (&#8220;you could read 10,000 pages before recharging&#8221;) and not the most fundamental interaction with the device (&#8220;you can make notes, export them, share them with your friends&#8221;). It&#8217;s so bad, because as the result of these I&#8217;ll be forced to continue buying books and printing documentation, which pollutes a lot and requires a lot more trees to be sacrificed on the altar of knowledge.</p>
<br /> Tagged: e-book reader <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitsandchaos.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitsandchaos.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitsandchaos.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitsandchaos.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bitsandchaos.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bitsandchaos.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bitsandchaos.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bitsandchaos.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitsandchaos.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitsandchaos.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitsandchaos.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitsandchaos.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitsandchaos.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitsandchaos.wordpress.com/70/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitsandchaos.wordpress.com&amp;blog=2148685&amp;post=70&amp;subd=bitsandchaos&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bitsandchaos.wordpress.com/2010/01/07/still-waiting-for-a-good-e-book-reader/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Paolo</media:title>
		</media:content>
	</item>
		<item>
		<title>Google&#8217;s namebench and your name server</title>
		<link>http://bitsandchaos.wordpress.com/2009/12/08/googles-namebench-and-your-name-server/</link>
		<comments>http://bitsandchaos.wordpress.com/2009/12/08/googles-namebench-and-your-name-server/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 12:30:29 +0000</pubDate>
		<dc:creator>Paolo</dc:creator>
				<category><![CDATA[network]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[namebench]]></category>
		<category><![CDATA[opendns]]></category>
		<category><![CDATA[performances]]></category>
		<category><![CDATA[ultradns]]></category>

		<guid isPermaLink="false">http://bitsandchaos.wordpress.com/?p=63</guid>
		<description><![CDATA[Google has recently announced its own public DNS server, responding at IP address 8.8.8.8 and 8.8.4.4 (how nice). Also, they released Namebench, a Python tool to compare DNS performances. Namebench basically determines your current DNS setup, some DNS you could use according to your ISP and geographic region, and tests them against also, of course, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitsandchaos.wordpress.com&amp;blog=2148685&amp;post=63&amp;subd=bitsandchaos&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Google has recently <a href="http://googleblog.blogspot.com/2009/12/introducing-google-public-dns.html">announced</a> its own <a href="http://code.google.com/speed/public-dns/docs/using.html">public DNS server</a>, responding at IP address 8.8.8.8 and 8.8.4.4 (how nice). Also, they released <a href="http://code.google.com/p/namebench/">Namebench</a>, a Python tool to compare DNS performances.</p>
<p>Namebench basically determines your current DNS setup, some DNS you could use according to your ISP and geographic region, and tests them against also, of course, Google Public DNS.</p>
<p>Each DNS server is tested on the resolution of the most popular 10,000 site names, according to Alexa web survey. Each DNS test is done in parallel with the others, so network latency spikes are more evenly distributed.</p>
<p>I gave it a try, to meausure how fast Google DNS server is, how well my ISP performs and how good is the local DNS I&#8217;m using.</p>
<p>Namebench produces a lot of data, in the sake of clearness I show here only the graph of the response time, trimmed to the first 200ms of response time: each resolution taking more than 200ms is out of the graph.</p>
<p>In all the graphs, you see that almost every DNS does a lot of caching: cache plays a role in reducing to almost zero the response time, and after a cache miss the response time increases almost linearly, as the DNS server must perform a recursive query to give the answer to the client.</p>
<p>I made three run of Namebench, to see how much the cache plays a role for my local DNS server, which is the standard BIND shipped with Fedora 11, configured as a caching nameserver, without chrooting.</p>
<p>On the <a href="http://chart.apis.google.com/chart?cht=lxy&amp;chs=720x410&amp;chxt=x,y&amp;chg=10,20&amp;chxr=0,0,200|1,0,100&amp;chd=t:0,19,19,20,20,20,22,26,27,31,38,68,73,88,116|0,1,14,33,45,50,54,57,61,65,68,72,75,79,82|0,24,24,25,25,26,26,26,27,28,36,46,98,145|0,1,9,27,43,54,60,64,67,71,75,79,82,86|0,1,32,33,33,33,34,34,38,69,104|0,1,11,39,57,66,71,76,80,84,87|0,0,1,21,30,42,56,64,72,78,86,101|0,1,14,18,22,25,28,32,35,39,42,46|0,20,20,21,21,22,22,23,27,37,56,74,90,116|0,1,11,32,46,52,55,59,62,66,69,73,77,80|0,1,19,20,20,21,25,32,44,72,90,104|0,1,20,40,48,54,59,62,66,70,74,77|0,1,21,21,21,22,22,30,33,39,60,74,101|0,1,12,40,47,50,56,59,63,67,70,74,77|0,19,19,20,20,21,25,26,37,66,76,101|0,1,14,37,50,56,60,63,67,70,74,77|0,1,33,33,34,34,35,37,39,44,71,91,109|0,1,20,44,53,57,61,65,68,72,75,79,82|0,1,16,16,16,17,18,25,31,32,34,40,47,62,70,78,91,107|0,3,14,19,24,29,32,36,40,43,47,50,54,57,60,64,67,71&amp;chco=ff9900,1a00ff,80ff00,ff00e6,00e6ff,fae30a,9900ff,9f5734,000000,7b9f34&amp;chxt=x,y,x,y&amp;chxl=2:||Duration+in+ms||3:||%25|&amp;chdl=COLT+IT-0|Google+Public+DNS|OpenDNS|SYS-127.0.0.1|Telecom+Italia+86+IT|TelecomItalia+Business+82+IT|TelecomItalia+Business+97+IT|TelecomItalia+Business+98+IT|UltraDNS|WIND-2+IT">first</a> graph, you could see that my local DNS resolves about 10% of the requests extremely fast: these requests get an answer from the local cache or require little interaction with external (root) DNS nameservers. All others requests require some network interaction, and the response time increase linearly. Take into account that all the graphs are for responses requiring up to 200ms, so there are not the unlucky interactions where my local DNS take 1800ms to give an answer: the local DNS has the worst performances in these (rare) cases.</p>
<p>The <a href="http://chart.apis.google.com/chart?cht=lxy&amp;chs=720x410&amp;chxt=x,y&amp;chg=10,20&amp;chxr=0,0,200|1,0,100&amp;chd=t:0,19,19,20,20,20,21,21,23,28,32,33,37,49,71,104|0,1,9,31,39,44,51,55,59,63,67,70,74,77,81,84|0,24,24,25,25,26,26,27,28,32,43,83,128|0,1,11,33,47,60,66,71,75,79,82,86,89|0,1,32,33,33,33,34,34,42,97,138|0,1,18,41,57,70,75,80,84,87,91|0,0,1,1,25,30,33,37,40,62,68,74,86,95,110|0,1,21,26,30,33,37,40,44,47,52,55,58,61,65|0,1,19,20,20,21,21,22,29,32,38,48,98,108|0,1,18,40,50,55,60,64,68,71,75,78,82,85|0,20,21,21,21,22,22,22,23,28,33,33,37,48,71,86,111|0,1,6,25,35,40,45,50,53,56,60,63,67,70,74,77,81|0,20,21,21,21,22,22,24,30,33,36,40,76,99,109|0,1,17,35,45,52,56,61,64,68,71,75,78,82,85|0,32,33,33,33,34,34,35,38,46,71,83,136|0,1,17,40,51,62,69,73,77,80,84,87,91|0,1,19,19,19,21,33,36,38,41,43,46,52,57,68,74,82,100|0,1,7,11,14,18,21,25,28,32,36,39,43,46,50,53,56,60|0,1,16,16,16,17,17,19,25,31,36,38,39,45,51,64,75,88,113|0,2,12,21,27,31,34,38,41,45,49,53,56,60,64,67,71,74,78&amp;chco=ff9900,1a00ff,80ff00,ff00e6,00e6ff,fae30a,9900ff,9f5734,000000,7b9f34&amp;chxt=x,y,x,y&amp;chxl=2:||Duration+in+ms||3:||%25|&amp;chdl=COLT+IT-0|Google+Public+DNS|OpenDNS|SYS-127.0.0.1|Telecom+Italia+69+IT|Telecom+Italia+91+IT|TelecomItalia+Business+97+IT|UltraDNS|Uniba+IT|WIND-2+IT">second</a> graph is for a run made immediately after the first, to see the effect of local DNS cache filling: about 25% of the requests are now satisfied by the cache. In this run Namebench has replaced UltraDNS with the DNS of the University of Basilicata, Italy.</p>
<p>On the <a href="http://chart.apis.google.com/chart?cht=lxy&amp;chs=720x410&amp;chxt=x,y&amp;chg=10,20&amp;chxr=0,0,200|1,0,100&amp;chd=t:0,19,19,20,20,20,21,21,26,30,33,41,46,69,84,102|0,1,11,34,42,47,51,56,60,64,67,71,74,78,81,85|0,24,24,25,25,26,26,27,28,35,54,87,134|0,1,12,32,47,63,72,77,80,84,87,91,94|0,2,21,22,22,28,32,34,37,42,45,49,58,69,73,76,80,91,101|0,4,13,20,24,28,31,35,39,42,46,49,53,56,59,63,66,70,73|0,32,32,32,33,33,33,34,34,40,77,117|0,1,12,37,59,67,74,78,82,86,89,93|0,0,1,1,25,30,32,37,58,66,75,86,95,104|0,1,19,25,28,33,36,40,43,47,51,54,57,61|0,19,19,20,20,20,21,25,31,33,45,70,106|0,1,12,36,50,56,62,66,69,73,76,80,84|0,20,20,21,21,22,22,23,30,35,40,55,75,98,143|0,1,9,32,47,54,57,62,65,69,72,76,79,83,86|0,20,21,21,22,22,27,33,35,44,51,73,83,115|0,1,20,39,49,54,59,62,66,69,73,77,80,84|0,2,19,20,20,20,21,25,31,33,38,46,69,73,87,104|0,1,15,32,42,46,51,55,59,63,66,70,73,77,80,84|0,32,33,33,33,34,35,36,42,69,88,108|0,1,14,44,60,67,74,78,81,85,88,92&amp;chco=ff9900,1a00ff,80ff00,ff00e6,00e6ff,fae30a,9900ff,9f5734,000000,7b9f34&amp;chxt=x,y,x,y&amp;chxl=2:||Duration+in+ms||3:||%25|&amp;chdl=COLT+IT-0|Google+Public+DNS|MDSNet-3+IT|OpenDNS|SYS-127.0.0.1|Telecom+Italia+69+IT|Telecom+Italia+86+IT|Telecom+Italia+91+IT|TelecomItalia+Business+82+IT|UltraDNS">third</a> graph, the cache for the local DNS plays the same as the second run, so there is a cache saturation effect. The local DNS is not suffering from memory saturation, so there is not point in increasing the local cache size by the max-cache-size directive.</p>
<p>There is something more in the graphs. Response curves have the shape of a constant (near zero) time for some of the queries, which means that the caches are massive, then the responses time grow linearly as the data in the cache are expired and the queried name server must contact the authoritative name servers doing a recursive query. Also:</p>
<ol>
<li>Google Public DNS has a cache hit for almost 50% of the requests, and for a cache miss the response time is dominated by the network time (from the DNS server point of view, i.e. the time it takes to do a recursive query) but this time is almost constant;</li>
<li>OpenDNS response curvers are initially linear, which could means that the network path for reaching OpenDNS servers is not as optimized as Google&#8217;s path, but after that the cache is here to do its job;</li>
<li>My ISP DNS (labeled as Wind2-IT) has usually good performances, probably more because the network path is its friend, it&#8217;s entirely possible that the cache is not so big;</li>
<li>Local DNS suffers when, to fulfill a request, has to made some recursive queries, as these are usually carried over UDP and the local router is not higly optimized for UDP NATting (educated guess).</li>
</ol>
<p>It is important to stress that the tests are made over the list of the 10,000 most popular websites: it&#8217;s probably the only way to have a benchmark of the general use, but if you visit just some a bunch of sites (as it&#8217;s usually the case) you must consider how much these results could apply to your environment. Also, these websites are all treated equal, while clearly popularity plays a role every time you deal with a cache.</p>
<p>These benchmarks have shown that my current setup (a local DNS) is the best, but when a cache miss occurs, and there are a lot of recursive queries to be made, the local router (and it&#8217;s UDP NATting function) is the bottleneck. Nothing to worry about, but an interesting sight to get.</p>
<p>Generally speaking, it&#8217;s fair to say that Google Public DNS is quite a good infrastructure, a fierce competitor both to an ISP DNS provided (which has the big benefit of the network latency) or OpenDNS (which is now several years in place).</p>
<br /> Tagged: dns, google, namebench, opendns, performances, ultradns <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitsandchaos.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitsandchaos.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitsandchaos.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitsandchaos.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bitsandchaos.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bitsandchaos.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bitsandchaos.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bitsandchaos.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitsandchaos.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitsandchaos.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitsandchaos.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitsandchaos.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitsandchaos.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitsandchaos.wordpress.com/63/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitsandchaos.wordpress.com&amp;blog=2148685&amp;post=63&amp;subd=bitsandchaos&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bitsandchaos.wordpress.com/2009/12/08/googles-namebench-and-your-name-server/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Paolo</media:title>
		</media:content>
	</item>
		<item>
		<title>Convert a .NRG file into an .ISO file</title>
		<link>http://bitsandchaos.wordpress.com/2009/09/15/convert-a-nrg-file-into-an-iso-file/</link>
		<comments>http://bitsandchaos.wordpress.com/2009/09/15/convert-a-nrg-file-into-an-iso-file/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 13:23:58 +0000</pubDate>
		<dc:creator>Paolo</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[iso]]></category>
		<category><![CDATA[nrg]]></category>

		<guid isPermaLink="false">http://bitsandchaos.wordpress.com/?p=59</guid>
		<description><![CDATA[An .nrg file can be easily converted in a ISO 9660 file by skipping it&#8217;s initial 150 2048-blocks: dd if=image.nrg of=image.iso bs=2048 skip=150 Tagged: convert, iso, nrg<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitsandchaos.wordpress.com&amp;blog=2148685&amp;post=59&amp;subd=bitsandchaos&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>An .nrg file can be easily converted in a ISO 9660 file by skipping it&#8217;s initial 150 2048-blocks:</p>
<p><strong>dd if=image.nrg of=image.iso bs=2048 skip=150</strong></p>
<br /> Tagged: convert, iso, nrg <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitsandchaos.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitsandchaos.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitsandchaos.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitsandchaos.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bitsandchaos.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bitsandchaos.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bitsandchaos.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bitsandchaos.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitsandchaos.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitsandchaos.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitsandchaos.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitsandchaos.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitsandchaos.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitsandchaos.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitsandchaos.wordpress.com&amp;blog=2148685&amp;post=59&amp;subd=bitsandchaos&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bitsandchaos.wordpress.com/2009/09/15/convert-a-nrg-file-into-an-iso-file/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Paolo</media:title>
		</media:content>
	</item>
		<item>
		<title>MSI WIND Webcam for Fedora 9</title>
		<link>http://bitsandchaos.wordpress.com/2008/10/19/msi-wind-webcam-for-fedora-9/</link>
		<comments>http://bitsandchaos.wordpress.com/2008/10/19/msi-wind-webcam-for-fedora-9/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 09:44:33 +0000</pubDate>
		<dc:creator>Paolo</dc:creator>
				<category><![CDATA[fedora]]></category>
		<category><![CDATA[msi wind]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://bitsandchaos.wordpress.com/?p=52</guid>
		<description><![CDATA[MSI WIND has an integrated webcam, to configure it on Fedora 9 you&#8217;d better  have the latest firmware installed, available from MSI website. I&#8217;m not sure that this is actually required, but this is my configuration. Check now that you have an uvcvideo kernel module installed: lsmod &#124; grep uvc you should get something like [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitsandchaos.wordpress.com&amp;blog=2148685&amp;post=52&amp;subd=bitsandchaos&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>MSI WIND has an integrated webcam, to configure it on Fedora 9 you&#8217;d better  have the latest firmware installed, available from MSI website. I&#8217;m not sure that this is actually required, but this is my configuration.</p>
<p>Check now that you have an uvcvideo kernel module installed:</p>
<p><strong>lsmod | grep uvc</strong></p>
<p>you should get something like this:</p>
<p>uvcvideo              49928   0<br />
compat_ioctl32      5120    1   uvcvideo<br />
videodev              29824   1   uvcvideo<br />
v4l1_compat        15876   2   uvcvideo,videodev</p>
<p>If such, your webcam is probed but not correctly configured. To do so, type:</p>
<p><strong>rmmod uvcvideo</strong></p>
<p><strong>modprobe uvcvideo quirks=2</strong></p>
<p>You can test that everything works by using mplayer to display the webcam output:</p>
<p><strong>mplayer -fps 15 tv://</strong></p>
<p>Now, you can make changes permanent by editing /etc/modprobe.conf to add this line (the file does not exist if you have just installed the system, so create it):</p>
<p><strong>options uvcvideo quirks=2</strong></p>
<p>and test that works at the next reboot.</p>
<p>Links:</p>
<p><a href="http://developer.berlios.de/forum/forum.php?forum_id=17148">Linux UVC Forums</a></p>
<br /> Tagged: fedora, msi wind, webcam <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitsandchaos.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitsandchaos.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitsandchaos.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitsandchaos.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bitsandchaos.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bitsandchaos.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bitsandchaos.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bitsandchaos.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitsandchaos.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitsandchaos.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitsandchaos.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitsandchaos.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitsandchaos.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitsandchaos.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitsandchaos.wordpress.com&amp;blog=2148685&amp;post=52&amp;subd=bitsandchaos&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bitsandchaos.wordpress.com/2008/10/19/msi-wind-webcam-for-fedora-9/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Paolo</media:title>
		</media:content>
	</item>
		<item>
		<title>Install Fedora 9 on a MSI WIND</title>
		<link>http://bitsandchaos.wordpress.com/2008/10/19/install-fedora-9-on-a-msi-wind/</link>
		<comments>http://bitsandchaos.wordpress.com/2008/10/19/install-fedora-9-on-a-msi-wind/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 09:31:21 +0000</pubDate>
		<dc:creator>Paolo</dc:creator>
				<category><![CDATA[fedora]]></category>
		<category><![CDATA[msi wind]]></category>

		<guid isPermaLink="false">http://bitsandchaos.wordpress.com/?p=50</guid>
		<description><![CDATA[I&#8217;ve recently bought an MSI WIND U100, it came with a pre-installed Windows XP and I started to install Fedora 9 on it, I will keep Windows as it could be useful in some environments, but my interest is in having Fedora running. First step is in installing Fedora over it, the 80 GiB disk [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitsandchaos.wordpress.com&amp;blog=2148685&amp;post=50&amp;subd=bitsandchaos&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">I&#8217;ve recently bought an <a href="http://global.msi.com.tw/index.php?func=proddesc&amp;prod_no=1474&amp;maincat_no=135">MSI WIND U100</a>, it came with a pre-installed Windows XP and I started to install Fedora 9 on it, I will keep Windows as it could be useful in some environments, but my interest is in having Fedora running.</p>
<p style="text-align:justify;">First step is in installing Fedora over it, the 80 GiB disk conveniently ha three partions, the first is for recovery, the second has Windows XP, so I splitted the third for a tiny boot partition (which is requested by Anaconda, altough BIOS is capable of booting from anywhere) and a large LVM volume, where I carved out a root partition and an encrypted home partition, a security wise solution as it&#8217;s a notebook which means that has the tendency to be shipped away from its legitimate owner. The LUKS passphrase used for the home directory was strong, so I can use a weak and distinct password for the system user.</p>
<p style="text-align:justify;">Installation requires a Fedora respin that you can find <a href="http://spins.fedoraunity.org/unity/torrent-files-fedora-9-20081004-re-spin">here</a>. I picked up a USB pen drive, then I use the livecd-iso-to-disk (<strong>yum install livecd-tools</strong>) to make it bootable. The process does not destroy any data on it, and at the installation prompt I gave <strong>linux askmethod</strong>, to choose the installation source (I opted for a HTTP based installation).</p>
<p style="text-align:justify;">The installation went smooth, later I customized the system to have compiz installed (I can made very impressive presentation with it!) and updates are flowing. The only problem I&#8217;ve noticed is that sometimes on boot the system hangs at the ACPI discovery phase, don&#8217;t know why.</p>
<br /> Tagged: fedora, msi wind <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitsandchaos.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitsandchaos.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitsandchaos.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitsandchaos.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bitsandchaos.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bitsandchaos.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bitsandchaos.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bitsandchaos.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitsandchaos.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitsandchaos.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitsandchaos.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitsandchaos.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitsandchaos.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitsandchaos.wordpress.com/50/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitsandchaos.wordpress.com&amp;blog=2148685&amp;post=50&amp;subd=bitsandchaos&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bitsandchaos.wordpress.com/2008/10/19/install-fedora-9-on-a-msi-wind/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Paolo</media:title>
		</media:content>
	</item>
		<item>
		<title>Disabling Firefox &#8220;Download Completed&#8221; notifier</title>
		<link>http://bitsandchaos.wordpress.com/2008/10/04/disabling-firefox-download-completed-notifier/</link>
		<comments>http://bitsandchaos.wordpress.com/2008/10/04/disabling-firefox-download-completed-notifier/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 08:49:06 +0000</pubDate>
		<dc:creator>Paolo</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[download manager]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[irritating pop up windows]]></category>

		<guid isPermaLink="false">http://bitsandchaos.wordpress.com/?p=46</guid>
		<description><![CDATA[It&#8217;s the clumsy, irritating window-ish and useless pop-up that appears on the right bottom corner after a download is completed. It&#8217;s useless, because I can monitor downloads by opening a file manager window in another workspace. It&#8217;s irritating because when it appears, it prevents my to click on the workspace switcher (usually I have Firefox [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitsandchaos.wordpress.com&amp;blog=2148685&amp;post=46&amp;subd=bitsandchaos&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">It&#8217;s the clumsy, irritating window-ish and useless pop-up that appears on the right bottom corner after a download is completed.</p>
<p style="text-align:justify;">It&#8217;s useless, because I can monitor downloads by opening a file manager window in another workspace. It&#8217;s irritating because when it appears, it prevents my to click on the workspace switcher (usually I have Firefox open on a workspace, and move to others when needed).</p>
<p style="text-align:justify;">Thankfully, it could be disabled, by entering <strong>about:config</strong> on the address bar, then searching for <strong>browser.download.manager.ShowAlertOnComplete</strong> and setting it to false.</p>
<br /> Tagged: download manager, firefox, irritating pop up windows <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitsandchaos.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitsandchaos.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitsandchaos.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitsandchaos.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bitsandchaos.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bitsandchaos.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bitsandchaos.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bitsandchaos.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitsandchaos.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitsandchaos.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitsandchaos.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitsandchaos.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitsandchaos.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitsandchaos.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitsandchaos.wordpress.com&amp;blog=2148685&amp;post=46&amp;subd=bitsandchaos&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bitsandchaos.wordpress.com/2008/10/04/disabling-firefox-download-completed-notifier/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Paolo</media:title>
		</media:content>
	</item>
	</channel>
</rss>
