<?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>Martin Henze</title>
	<atom:link href="http://www.martinhenze.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.martinhenze.de</link>
	<description></description>
	<lastBuildDate>Sun, 26 Feb 2012 17:08:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Useful .htaccess hacks</title>
		<link>http://www.martinhenze.de/2012/02/26/useful-htaccess-hacks/</link>
		<comments>http://www.martinhenze.de/2012/02/26/useful-htaccess-hacks/#comments</comments>
		<pubDate>Sun, 26 Feb 2012 17:08:42 +0000</pubDate>
		<dc:creator>Martin Henze</dc:creator>
				<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://www.martinhenze.de/?p=80</guid>
		<description><![CDATA[Once in a while I have to perform some htaccess hacks. This list is kind of a public notepad for htaccess rules I sometimes use. If multiple domains (or subdomains) point to the same content, this content might be considered &#8230; <a href="http://www.martinhenze.de/2012/02/26/useful-htaccess-hacks/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Once in a while I have to perform some htaccess hacks. This list is kind of a public notepad for htaccess rules I sometimes use.<span id="more-80"></span></p>
<p>If multiple domains (or subdomains) point to the same content, this content might be considered as duplicate content by search engine providers (e.g., Google, Bing, Yahoo!). To prevent this, you should choose one (sub)domain and redirect all other (sub)domains to the chosen one. Imagine you have example.com, www.example.com, example.org and www.example.org. Now you decide to redirect all requests to www.example.org:</p>
<pre>RewriteEngine On
RewriteCond %{http_host} !^www\.example\.org [NC]
RewriteRule ^(.*)$ http://www.example.org/$1 [L,R=301]</pre>
<p>The nice thing about this rule is, that you don&#8217;t need to specify all available domains. Thus, it also works with wildcard subdomains.</p>
<p>If a folder should not be accessed by anyone (e.g., because its content is only read by server-side scripts), it is highly recommended that you block all access attempts:</p>
<pre>Order deny,allow
Deny from all</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.martinhenze.de/2012/02/26/useful-htaccess-hacks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brother printers and Ubuntu Linux 8.04</title>
		<link>http://www.martinhenze.de/2008/08/11/brother-printers-and-ubuntu-linux-804/</link>
		<comments>http://www.martinhenze.de/2008/08/11/brother-printers-and-ubuntu-linux-804/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 22:06:13 +0000</pubDate>
		<dc:creator>Martin Henze</dc:creator>
				<category><![CDATA[Ubuntu Linux]]></category>

		<guid isPermaLink="false">http://www.martinhenze.de/?p=39</guid>
		<description><![CDATA[Starting with Ubuntu Linux 8.04 (Hardy Heron) it&#8217;s even easier to get the decent printers from Brother running. The drivers for a lot of their printers (lpr drivers and cups-wrappers) are now available in the multiverse repositories. Just install the &#8230; <a href="http://www.martinhenze.de/2008/08/11/brother-printers-and-ubuntu-linux-804/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Starting with Ubuntu Linux 8.04 (Hardy Heron) it&#8217;s even easier to get the decent printers from Brother running.</p>
<p>The drivers for a lot of their printers (lpr drivers and cups-wrappers) are now available in the multiverse repositories. <span id="more-40"></span></p>
<p>Just install the corresponding <a href="http://packages.ubuntu.com/search?keywords=brother-"><strong>brother-lpr-drivers-*</strong> and <strong>brother-cups-wrapper-*</strong></a> packages and you can use your favorite CUPS frontend to setup your printer.</p>
<p>Below you find a list of the packages and the drivers they include.</p>
<p><strong>brother-lpr-drivers-ac / brother-cups-wrapper-ac:</strong><br />
HL-4040CN, HL-4050CDN, HL-4070CDW, MFC-9440CN, MFC-9840CDW, DCP-9040CN and DCP-9045CDN</p>
<p><strong>brother-lpr-drivers-bh7 / brother-cups-wrapper-bh7:</strong><br />
DCP-130C, DCP-330C, DCP-540CN, DCP-750CW, FAX-1860C, FAX-1960C, FAX-2480C, FAX-2580C, MFC-240C, MFC-3360C, MFC-440CN, MFC-5460CN, MFC-5860CN, MFC-660CN, MFC-665CW and MFC-845CW</p>
<p><strong>brother-lpr-drivers-extra / brother-cups-wrapper-extra:</strong><br />
FAX-1815C, FAX-1820C, FAX-1835C, FAX-1840C, FAX-1920CN, FAX-1940CN, FAX-2440C, MFC-210C, MFC-3220C, MFC-3240C, MFC-3320CN, MFC-3340CN, MFC-3420C, MFC-3820CN, MFC-410CN, MFC-420CN, MFC-5440CN, MFC-5840CN, MFC-620CN, DCP-110C, DCP-310CN, DCP-560CN, DCP-770CW, DCP-350C, DCP-353C, MFC-465CN, MFC-680CN, MFC-685CW, MFC-885CW, MFC-230C, MFC-235C, MFC-260C, DCP-135C, DCP-150C and DCP-153C</p>
<p><strong>brother-lpr-drivers-laser / brother-cups-wrapper-laser:</strong><br />
DCP-7020, DCP-7025, DCP-8060, DCP-8065DN, FAX-2820, FAX-2920, <span style="color:green;">HL-2030</span>, HL-2040, <span style="color:green;">HL-2070N</span>, HL-5240, HL-5250DN, HL-5270DN, HL-5280DW, MFC-7220, MFC-7225N, MFC-7420, MFC-7820N, MFC-8460N, MFC-8660DN, MFC-8860DN and MFC-8870DW</p>
<p><strong>brother-lpr-drivers-laser1 / brother-cups-wrapper-laser1:</strong><br />
DCP-1000, DCP-1400, DCP-8020, DCP-8025D, DCP-8040, DCP-8045D, FAX-2850, FAX-2900, FAX-3800, FAX-4100, FAX-4750e, FAX-5750e, HL-1030, HL-1230, HL-1240, HL-1250, HL-1270N, HL-1430, HL-1440, HL-1450, HL-1470N, HL-1650, HL-1670N, HL-1850, HL-1870N, HL-5030, HL-5040, HL-5050, HL-5070N, HL-5130, HL-5140, HL-5150D, HL-5170DN, HL-6050, HL-6050D, MFC-4800, MFC-6800, MFC-8420, MFC-8440, MFC-8500, MFC-8820D, MFC-8840D, MFC-9030, MFC-9070, MFC-9160, MFC-9180, MFC-9660, MFC-9700, MFC-9760, MFC-9800, MFC-9860 and MFC-9880</p>
<p><strong>brother-lpr-drivers-mfc9420cn / brother-cups-wrapper-mfc9420cn:</strong><br />
MFC-9420CN</p>
<p>For the models marked with <span style="color:green;">green</span>  I can confirm, that the drivers work like a charm.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.martinhenze.de/2008/08/11/brother-printers-and-ubuntu-linux-804/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Ubuntu Linux on DELL Vostro 1510</title>
		<link>http://www.martinhenze.de/2008/05/24/ubuntu-linux-on-dell-vostro-1510/</link>
		<comments>http://www.martinhenze.de/2008/05/24/ubuntu-linux-on-dell-vostro-1510/#comments</comments>
		<pubDate>Sat, 24 May 2008 12:26:32 +0000</pubDate>
		<dc:creator>Martin Henze</dc:creator>
				<category><![CDATA[Ubuntu Linux]]></category>

		<guid isPermaLink="false">http://www.martinhenze.de/?p=38</guid>
		<description><![CDATA[Recentley I recieved my brand-new DELL Vostro 1510 with the following hardware built-in: Intel Core 2 Duo T5870 (2.0 GHz, 800 MHz, 2 MB) 15.4&#8243; Widescreen Display WXGA+ 3 GB 667 MHz DDR2 Dual Channel RAM 256 MB NVIDIA GeForce &#8230; <a href="http://www.martinhenze.de/2008/05/24/ubuntu-linux-on-dell-vostro-1510/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Recentley I recieved my brand-new DELL Vostro 1510 with the following hardware built-in:</p>
<ul>
<li>Intel Core 2 Duo T5870 (2.0 GHz, 800 MHz, 2 MB)</li>
<li>15.4&#8243; Widescreen Display WXGA+</li>
<li>3 GB 667 MHz DDR2 Dual Channel RAM</li>
<li>256 MB NVIDIA GeForce 8400M GS</li>
<li>Intel Next-Gen Wireless-N Mini-PCI-Card</li>
<li>1.3 MP built-in Webcam</li>
</ul>
<p>Installing Ubuntu Linux 8.04 LTS (codenamed Hardy Heron) wasn&#8217;t really that though, but some issues arised. <span id="more-39"></span></p>
<p>First of all, the outputs of <em>lspci</em>:<br />
<code>00:00.0 Host bridge: Intel Corporation Mobile PM965/GM965/GL960 Memory Controller Hub (rev 0c)<br />
00:01.0 PCI bridge: Intel Corporation Mobile PM965/GM965/GL960 PCI Express Root Port (rev 0c)<br />
00:1a.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #4 (rev 03)<br />
00:1a.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #5 (rev 03)<br />
00:1a.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #2 (rev 03)<br />
00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 03)<br />
00:1c.0 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 1 (rev 03)<br />
00:1c.1 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 2 (rev 03)<br />
00:1c.3 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 4 (rev 03)<br />
00:1c.4 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 5 (rev 03)<br />
00:1d.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #1 (rev 03)<br />
00:1d.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #2 (rev 03)<br />
00:1d.2 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #3 (rev 03)<br />
00:1d.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #1 (rev 03)<br />
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev f3)<br />
00:1f.0 ISA bridge: Intel Corporation 82801HEM (ICH8M) LPC Interface Controller (rev 03)<br />
00:1f.1 IDE interface: Intel Corporation 82801HBM/HEM (ICH8M/ICH8M-E) IDE Controller (rev 03)<br />
00:1f.2 SATA controller: Intel Corporation 82801HBM/HEM (ICH8M/ICH8M-E) SATA AHCI Controller (rev 03)<br />
00:1f.3 SMBus: Intel Corporation 82801H (ICH8 Family) SMBus Controller (rev 03)<br />
01:00.0 VGA compatible controller: nVidia Corporation GeForce 8400M GS (rev a1)<br />
06:00.0 Network controller: Intel Corporation PRO/Wireless 4965 AG or AGN Network Connection (rev 61)<br />
07:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 02)<br />
08:05.0 FireWire (IEEE 1394): O2 Micro, Inc. Firewire (IEEE 1394) (rev 02)<br />
08:05.2 SD Host controller: O2 Micro, Inc. Integrated MMC/SD Controller (rev 02)<br />
08:05.3 Mass storage controller: O2 Micro, Inc. Integrated MS/xD Controller (rev 01)</code></p>
<p>and <em>lsusb</em>:<br />
<code>Bus 007 Device 001: ID 0000:0000<br />
Bus 006 Device 002: ID 0c45:63e0 Microdia<br />
Bus 006 Device 001: ID 0000:0000<br />
Bus 005 Device 001: ID 0000:0000<br />
Bus 004 Device 001: ID 0000:0000<br />
Bus 003 Device 001: ID 0000:0000<br />
Bus 002 Device 001: ID 0000:0000<br />
Bus 001 Device 001: ID 0000:0000 </code></p>
<p>What I already tested and works: Graphics (after installing the propietary NVIDIA driver using those fancy restricted drivers manager), Webcam, Card reader, WLAN (haven&#8217;t tested 802.11n yet, but will do this in the future), Sound, Multimedia buttons.</p>
<p>What didn&#8217;t worked: Ethernet card.</p>
<p>Everthing not mentioned hasn&#8217;t been tested yet or isn&#8217;t worth mentioning.</p>
<h3>Fixing the built-in Realtek network card</h3>
<p>As the built-in network card currently doesn&#8217;t work with the <em>r8169</em> driver in 2.6.24 kernel, you&#8217;ll have to built the <em>r8168</em> driver provided by Realtek. After some research using ubuntuforums.org (<a href="http://ubuntuforums.org/showthread.php?t=723569">[1]</a> and <a href="http://ubuntuforums.org/showthread.php?t=723569">[2]</a>) and <a href="http://www.linuxquestions.org/questions/linux-networking-3/no-network-detected-realtek-81118168-issue-615047/">linuxquestions.org</a>, I managed to fix some arising issues. Currently, you have to patch the driver provided by Realtek, because it isn&#8217;t working with 2.6.24&#8242;s network API. If you haven&#8217;t already done so, you have to install the <em>build-essential</em> package. Here&#8217;s how it works:</p>
<ol>
<li>Download the latest driver for Linux kernel 2.6.x from the <a href="http://www.realtek.com.tw/downloads/downloadsView.aspx?Langid=1&#038;PNid=13&#038;PFid=5&#038;Level=5&#038;Conn=4&#038;DownTypeID=3&#038;GetDown=false#2">Realtek</a> homepage.</li>
<li>Unpack it: <code>tar xvf r8168-8.006.00.tar.bz2</code></li>
<li>Move it to <em>/usr/src</em>: <code>sudo mv r8168-8.006.00 /usr/src/</code></li>
<li>Download the <a href="http://www.martinhenze.de/extern/r8168-8.006.00.hardy.diff">patch file</a> which <a href="http://ubuntuforums.org/member.php?u=536849">energymomentum</a> posted at ubuntuforums.org</li>
<li>Move it to <em>/usr/src/r8168-8.006.00/src</em>: <code>sudo mv r8168-8.006.00.hardy.diff /usr/r8168-8.006.00/src/</code></li>
<li><code>cd /usr/src/r8168-8.006.00/src</code></li>
<li>Apply the patch file: <code>patch < r8168-8.006.00.hardy.diff</code></li>
<li><code>cd ..</code></li>
<li>Build the module: <code>sudo make clean modules</code></li>
<li>Install the module: <code>sudo make install</code></li>
<li>Generate module dependencies: <code>sudo depmod -a</code></li>
<li>Load the module: <code>sudo insmod ./src/r8168.ko</code></li>
<li>Blacklist the old driver: <code>sudo sh -c 'echo "blacklist r8169" >> /etc/modprobe.d/blacklist-network'</code></li>
<li>Make changes permanent: <code>sudo update-initramfs -u</code></li>
<li>Basically that's it, after a reboot you're ethernet card should be working</li>
</ol>
<p>That's it for now, if new issues arise, I will update this post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.martinhenze.de/2008/05/24/ubuntu-linux-on-dell-vostro-1510/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Homepage at university</title>
		<link>http://www.martinhenze.de/2008/04/13/homepage-at-university/</link>
		<comments>http://www.martinhenze.de/2008/04/13/homepage-at-university/#comments</comments>
		<pubDate>Sun, 13 Apr 2008 11:22:16 +0000</pubDate>
		<dc:creator>Martin Henze</dc:creator>
				<category><![CDATA[Study]]></category>

		<guid isPermaLink="false">http://www.martinhenze.de/?p=37</guid>
		<description><![CDATA[Recently I set up a small homepage on the webspace my university offers me for free. You&#8217;ll find information on the committees I&#8217;m working in and a list of my publications. This includes a paper on JUnit I wrote together &#8230; <a href="http://www.martinhenze.de/2008/04/13/homepage-at-university/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Recently I set up a small homepage on the webspace my university offers me for free. You&#8217;ll find information on the committees I&#8217;m working in and a list of my publications. This includes a paper on JUnit I wrote together with <a href="http://www.lukasniessen.de/">Lukas Nießen</a>.</p>
<p>You&#8217;ll find that homepage here: <a href="http://www-users.rwth-aachen.de/martin.henze/" title="Martin Henze at RWTH Aachen University">Martin Henze at RWTH Aachen University</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.martinhenze.de/2008/04/13/homepage-at-university/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Here we go again!</title>
		<link>http://www.martinhenze.de/2008/04/04/here-we-go-again/</link>
		<comments>http://www.martinhenze.de/2008/04/04/here-we-go-again/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 11:53:40 +0000</pubDate>
		<dc:creator>Martin Henze</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.martinhenze.de/?p=36</guid>
		<description><![CDATA[I updated the software to WordPress 2.5 and created (with the help of the most beautiful woman in the world) a new template, which is mainly a crossover of the default theme and BlixKrieg. You can view some pictures of &#8230; <a href="http://www.martinhenze.de/2008/04/04/here-we-go-again/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I updated the software to WordPress 2.5 and created (with the help of the most <a href="http://www.martinhenze.de/wp-content/gallery/disneyland/IMGP2033.JPG" title="" class="thickbox" rel="here-we-go-again">beautiful woman</a> in the world) a new template, which is mainly a crossover of the default theme and BlixKrieg.</p>
<p>You can view some pictures of my trip to the USA in my <a href="http://www.martinhenze.de/gallery/america-2008/">gallery</a>, where you&#8217;ll also find a bunch of pictures of other places.</p>
<p>Hopefully I&#8217;ll update this page a bit more often in the future, but who knows&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.martinhenze.de/2008/04/04/here-we-go-again/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Elektronische Grundlagen (electronic basics) formula sheets</title>
		<link>http://www.martinhenze.de/2007/09/12/elektronische-grundlagen-electronic-basics-formula-sheets/</link>
		<comments>http://www.martinhenze.de/2007/09/12/elektronische-grundlagen-electronic-basics-formula-sheets/#comments</comments>
		<pubDate>Wed, 12 Sep 2007 13:01:05 +0000</pubDate>
		<dc:creator>Martin Henze</dc:creator>
				<category><![CDATA[Study]]></category>

		<guid isPermaLink="false">http://www.martinhenze.de/2007/09/12/elektronische-grundlagen-electronic-basics-formula-sheets/</guid>
		<description><![CDATA[For those who have to write the Elektronische Grundlagen für Informatiker (electronic basics for computer scientists) exam again, here are two documents I created, which might be useful during the exam: My formula sheet A collection of old exams (incl. &#8230; <a href="http://www.martinhenze.de/2007/09/12/elektronische-grundlagen-electronic-basics-formula-sheets/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For those who have to write the Elektronische Grundlagen für Informatiker (electronic basics for computer scientists) exam again, here are two documents I created, which might be useful during the exam:</p>
<ul>
<li>My <a href="http://www.martinhenze.de/uni/egfi%20formelzettel.pdf">formula sheet</a></li>
<li>A <a href="http://www.martinhenze.de/uni/egfi%20-%20one%20sheet%20to%20rule%20them%20all.ps">collection of old exams</a> (incl. sample solutions) on one DIN-A4 sheet</li>
</ul>
<p>As usual, you can find all downloads at <a href="http://s-inf.de">s-inf</a>, too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.martinhenze.de/2007/09/12/elektronische-grundlagen-electronic-basics-formula-sheets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some Updates</title>
		<link>http://www.martinhenze.de/2007/09/11/some-updates/</link>
		<comments>http://www.martinhenze.de/2007/09/11/some-updates/#comments</comments>
		<pubDate>Tue, 11 Sep 2007 20:10:26 +0000</pubDate>
		<dc:creator>Martin Henze</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.martinhenze.de/2007/09/11/some-updates/</guid>
		<description><![CDATA[My pages now run with WordPress 2.2 and BlixKrieg Theme.]]></description>
			<content:encoded><![CDATA[<p>My pages now run with <a href="http://wordpress.org">WordPress 2.2</a> and <a href="http://www.utheguru.com/">BlixKrieg Theme</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.martinhenze.de/2007/09/11/some-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hide unmounted volumes in Nautilus</title>
		<link>http://www.martinhenze.de/2007/05/27/hide-unmounted-volumes-in-nautilus/</link>
		<comments>http://www.martinhenze.de/2007/05/27/hide-unmounted-volumes-in-nautilus/#comments</comments>
		<pubDate>Sun, 27 May 2007 13:33:08 +0000</pubDate>
		<dc:creator>Martin Henze</dc:creator>
				<category><![CDATA[Ubuntu Linux]]></category>

		<guid isPermaLink="false">http://www.martinhenze.de/2007/05/27/hide-unmouted-volumes-in-nautilus/</guid>
		<description><![CDATA[I&#8217;ve just updated my DELL Inspiron 6000 to Ubuntu Linux 7.04 (Feisty Fawn), before that I used 6.06 LTS (Dapper Drake). Having missed nearly one year of development, I noticed that Nautilus shows all partitions (no matter if mounted or &#8230; <a href="http://www.martinhenze.de/2007/05/27/hide-unmounted-volumes-in-nautilus/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just updated my DELL Inspiron 6000 to Ubuntu Linux 7.04 (Feisty Fawn), before that I used 6.06 LTS (Dapper Drake). Having missed nearly one year of development, I noticed that Nautilus shows all partitions (no matter if mounted or not) in the places area. I&#8217;ll never need to mount DELL&#8217;s rescue and restore partitions and therefor don&#8217;t want them to be listed there. Here you go: <span id="more-28"></span><br />
Open a terminal, become root:</p>
<blockquote><p>sudo -s</p></blockquote>
<p>Create a new folder and a new file with gedit:</p>
<blockquote><p>mkdir /usr/share/hal/fdi/preprobe/95userpolicy<br />
gedit /usr/share/hal/fdi/preprobe/95userpolicy/10ignore-disks.fdi</p></blockquote>
<p>Copy the following to the file, create a new <em>&lt;match&gt;</em>- block for each partition you want to block:</p>
<blockquote><p>
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;<br />
&lt;deviceinfo version=&quot;0.2&quot;&gt;<br />
&nbsp;&nbsp;&lt;device&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;match key=&quot;block.device&quot; string=&quot;/dev/sda1&quot;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;merge key=&quot;info.ignore&quot; type=&quot;bool&quot;&gt;true&lt;/merge&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/match&gt;<br />
&nbsp;&nbsp;&lt;/device&gt;<br />
&lt;/deviceinfo&gt;
</p></blockquote>
<p>It&#8217;s also possible to block a whole hard disk, e.g. <em>/dev/sdb</em>. Now save the file and restart HAL and DBUS:</p>
<blockquote><p>/etc/init.d/dbus restart</p></blockquote>
<p>That&#8217;s it, credits go to <a href="http://forum.ubuntuusers.de/viewtopic.php?p=741548#741548">clausi at ubuntuusers.de</a> and <a href="http://ubuntuforums.org/showpost.php?p=2605508&#038;postcount=34">vtel57 at ubuntuforums.org</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.martinhenze.de/2007/05/27/hide-unmounted-volumes-in-nautilus/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Diskrete Strukturen (Discrete Structures) formula sheet</title>
		<link>http://www.martinhenze.de/2006/08/31/diskrete-strukturen-discrete-structures-formula-sheet/</link>
		<comments>http://www.martinhenze.de/2006/08/31/diskrete-strukturen-discrete-structures-formula-sheet/#comments</comments>
		<pubDate>Thu, 31 Aug 2006 20:13:55 +0000</pubDate>
		<dc:creator>Martin Henze</dc:creator>
				<category><![CDATA[Study]]></category>

		<guid isPermaLink="false">http://www.martinhenze.de/2006/08/31/diskrete-strukturen-discrete-structures-formula-sheet/</guid>
		<description><![CDATA[Here you can download my formula sheet for tomorrow&#8217;s Diskrete Strukturen (Discrete Structures) exam. The download is also listed at s-inf.de.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.martinhenze.de/uni/diskrete_formelzettel.pdf">Here</a> you can download my formula sheet for tomorrow&#8217;s Diskrete Strukturen (Discrete Structures) exam. The download is also listed at <a href="http://s-inf.de">s-inf.de</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.martinhenze.de/2006/08/31/diskrete-strukturen-discrete-structures-formula-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brother HL-2070N and Ubuntu Linux</title>
		<link>http://www.martinhenze.de/2006/06/10/brother-hl-2070n-and-ubuntu-linux/</link>
		<comments>http://www.martinhenze.de/2006/06/10/brother-hl-2070n-and-ubuntu-linux/#comments</comments>
		<pubDate>Sat, 10 Jun 2006 12:38:09 +0000</pubDate>
		<dc:creator>Martin Henze</dc:creator>
				<category><![CDATA[Ubuntu Linux]]></category>

		<guid isPermaLink="false">http://www.martinhenze.de/2006/06/10/brother-hl-2070n-and-ubuntu-linux/</guid>
		<description><![CDATA[Getting the Brother HL-2070N monochrome laser printer running with Ubuntu Linux is quite simple. You just have to download two files and configure the driver properly. Note: This instructions only apply if you are using Ubuntu Linux 7.10 or older. &#8230; <a href="http://www.martinhenze.de/2006/06/10/brother-hl-2070n-and-ubuntu-linux/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Getting the Brother HL-2070N monochrome laser printer running with Ubuntu Linux is quite simple. You just have to download two files and configure the driver properly.<span id="more-26"></span></p>
<p><strong>Note:</strong> This instructions only apply if you are using Ubuntu Linux 7.10 or older. If you are using Ubuntu Linux 8.04 (Hardy Heron) or newer, please use the <a href="http://www.martinhenze.de/2008/08/11/brother-printers-and-ubuntu-linux-804/">new instructions</a>, which are much easier.</p>
<p>First, we need to download the following files:</p>
<ul>
<li><a href="http://solutions.brother.com/linux/sol/printer/linux/cups_drivers.html#de">Brother CUPS wrapper driver for HL-2070N (Debian)</a></li>
<li><a href="http://solutions.brother.com/linux/sol/printer/linux/lpr_drivers.html#de">Brother LPR driver for HL-2070N (Debian)</a></li>
</ul>
<p>Simply install both packages in the above order using gdebi (simply double-click on them) or <em>dpkg -i packagename.deb</em>.</p>
<p>Now you should already have your HL-2070N listed in the printer list. Go to <em>printer properties</em>, and choose <em>UNIX-printer (LPD)</em> as network-printer (filed under <em>connection</em>). Now you just have to enter your printer&#8217;s IP (it&#8217;s handy to configure the printer with a static IP) and your printer should print the test page just fine.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.martinhenze.de/2006/06/10/brother-hl-2070n-and-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

