<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>henkstubbe</title>
	<atom:link href="http://henkstubbe.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://henkstubbe.wordpress.com</link>
	<description>op de hoekzijdsestraatweg</description>
	<lastBuildDate>Wed, 07 Jan 2009 21:14:25 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='henkstubbe.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/da90ceeed96dda40d85df1454c3f80a2?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>henkstubbe</title>
		<link>http://henkstubbe.wordpress.com</link>
	</image>
			<item>
		<title>Rsync and rsyncrypto on Ubuntu 8.10</title>
		<link>http://henkstubbe.wordpress.com/2009/01/07/rsync-and-rsyncrypto-on-ubuntu-810/</link>
		<comments>http://henkstubbe.wordpress.com/2009/01/07/rsync-and-rsyncrypto-on-ubuntu-810/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 21:12:59 +0000</pubDate>
		<dc:creator>henkstubbe</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://henkstubbe.wordpress.com/?p=12</guid>
		<description><![CDATA[Since a couple of months I use rsync to mirror the data on my server on a remote location. This works perfectly fine, the only issue is that the data is not really hidden for the other people who have access to the server or mirror. I finally found a solution: rsyncrypto. With this tool [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henkstubbe.wordpress.com&blog=730788&post=12&subd=henkstubbe&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Since a couple of months I use rsync to mirror the data on my server on a remote location. This works perfectly fine, the only issue is that the data is not really hidden for the other people who have access to the server or mirror. I finally found a solution: rsyncrypto. With this tool I can encrypt my files and then use rsync to transfer it using as less bandwidth as possible.</p>
<p>Because I couldn&#8217;t find a nice tutorial that I can use as a reference, I wrote one based on <a href="http://pwet.fr/man/linux/commandes/rsyncrypto">http://pwet.fr/man/linux/commandes/rsyncrypto</a>, <a href="http://www.linux.com/feature/125322">http://www.linux.com/feature/125322</a>, <a href="http://blog.wuxinan.net/archives/86">http://blog.wuxinan.net/archives/86</a></p>
<p>To install rsyncrypto:<br />
<code>sudo apt-get install rsyncrypto</code></p>
<p>Using OpenSSL, create a certificate and private key:<br />
<code>openssl req -nodes -newkey rsa:1536 -x509 -keyout rckey.key -out rckey.crt<br />
</code></p>
<p>To encrypt files:<br />
<code>rsyncrypto -r --name-encrypt=filemap /tmp/srcdir /tmp/dstdir foodir.keys rckey.crt</code></p>
<p>This will result in a directory tree containing encrypted files. If you want to hide the file names as well, use the <code>--name-encrypt=filemap</code> with rsync as in the code example. This will garble the file names and directory structure. The file <code>filemap</code> will contain the mapping between the original file names and the garbled names.</p>
<p>To decrypt files<br />
<code>rsyncrypto -dr --name-encrypt=filemap /tmp/encrypted /tmp/decrypted foodir.keys rckey.key<br />
</code></p>
<p>Now I was wondering: I need the keys to decrypt the files, but what if I loose them? Or do I need to backup them as well?</p>
<p>There are two decryption options: cold decryption and warm decryption.</p>
<p><strong>Cold decryption</strong>:<code> rsyncrypto -d /tmp/encrypted/filemap /tmp/decrypted/filemap /tmp/decrypted/filemap-keys rckey.key</code></p>
<p>In this example, the encrypted filemap that is generated automatically is used to restore the original filemap. Secondly, the keys are retrieved.</p>
<p>Now proceed with<strong> warm decryption</strong>:<br />
<code>rsyncrypto -dr --name-encrypt /tmp/decrypted/filemap /tmp/encrypted /tmp/decrypted /tmp/decrypted/filemap-keys rckey.key</code></p>
<p>Et voila, we got our very secret stuff back.</p>
<p>So, to answer the question on what files are important to have: it is really important to keep a safe copy of <code>rckey.key</code> because it enable cold decryption in case you lose the file keys.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/henkstubbe.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/henkstubbe.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/henkstubbe.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/henkstubbe.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/henkstubbe.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/henkstubbe.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/henkstubbe.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/henkstubbe.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/henkstubbe.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/henkstubbe.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henkstubbe.wordpress.com&blog=730788&post=12&subd=henkstubbe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://henkstubbe.wordpress.com/2009/01/07/rsync-and-rsyncrypto-on-ubuntu-810/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f19c1e79b6115a99601ae109c9fea56?s=96&#38;d=identicon" medium="image">
			<media:title type="html">henkstubbe</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu Feisty shutdown problem solved on Asus M2A-VM HDMI</title>
		<link>http://henkstubbe.wordpress.com/2007/07/11/ubuntu-feisty-shutdown-problem-solved-on-asus-m2a-vm-hdmi/</link>
		<comments>http://henkstubbe.wordpress.com/2007/07/11/ubuntu-feisty-shutdown-problem-solved-on-asus-m2a-vm-hdmi/#comments</comments>
		<pubDate>Wed, 11 Jul 2007 21:40:19 +0000</pubDate>
		<dc:creator>henkstubbe</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://henkstubbe.wordpress.com/2007/07/11/ubuntu-feisty-shutdown-problem-solved-on-asus-m2a-vm-hdmi/</guid>
		<description><![CDATA[With this http://ubuntuforums.org/showpost.php?p=2260791&#38;postcount=10 I solved the shutdown issue. The computer halted during shutdown and did not power off.
Summary:
Step 1: Add 
Code:
apm power_off=1
to your /etc/modules
Mine already had an entry so I just added the code directly below it and then hit enter to add 1 blank space at the end of the file. Basically it should [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henkstubbe.wordpress.com&blog=730788&post=11&subd=henkstubbe&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>With this http://ubuntuforums.org/showpost.php?p=2260791&amp;postcount=10 I solved the shutdown issue. The computer halted during shutdown and did not power off.</p>
<p>Summary:</p>
<p>Step 1: Add </p>
<p>Code:<br />
<code>apm power_off=1</code><br />
to your /etc/modules</p>
<p>Mine already had an entry so I just added the code directly below it and then hit enter to add 1 blank space at the end of the file. Basically it should look like this:</p>
<p>Code:<br />
<code># /etc/modules: kernel modules to load at boot time.<br />
#<br />
# This file contains the names of kernel modules that should be loaded<br />
# at boot time, one per line. Lines beginning with "#" are ignored.</p>
<p>lp<br />
apm power_off=1</code></p>
<p>You may have other modules like fuse or p4_clockmod or whatnot. That&#8217;s ok. So long as you put in &#8220;apm power_off=1&#8243; and keep a blank entry at the end of the file you should be ok. The blank entry might not be needed, but it was there when I started so I kept it.</p>
<p>Step 2: Add</p>
<p>Code:<br />
<code>acpi=off apm=power_off</code></p>
<p>to your /boot/menu.lst so it looks like this:</p>
<p>Code:<br />
<code>## ## End Default Options ##</p>
<p>title Debian GNU/Linux, kernel 2.6.18-3-k7<br />
root (hd0,1)<br />
kernel /boot/vmlinuz-2.6.18-3-k7 root=/dev/hda2 ro acpi=off apm=power_off<br />
initrd /boot/initrd.img-2.6.18-3-k7</code></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/henkstubbe.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/henkstubbe.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/henkstubbe.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/henkstubbe.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/henkstubbe.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/henkstubbe.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/henkstubbe.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/henkstubbe.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/henkstubbe.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/henkstubbe.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/henkstubbe.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/henkstubbe.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henkstubbe.wordpress.com&blog=730788&post=11&subd=henkstubbe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://henkstubbe.wordpress.com/2007/07/11/ubuntu-feisty-shutdown-problem-solved-on-asus-m2a-vm-hdmi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f19c1e79b6115a99601ae109c9fea56?s=96&#38;d=identicon" medium="image">
			<media:title type="html">henkstubbe</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu 7.04 on Asus M2A-VM HDMI</title>
		<link>http://henkstubbe.wordpress.com/2007/06/28/ubuntu-704-on-asus-m2a-vm-hdmi/</link>
		<comments>http://henkstubbe.wordpress.com/2007/06/28/ubuntu-704-on-asus-m2a-vm-hdmi/#comments</comments>
		<pubDate>Thu, 28 Jun 2007 21:12:33 +0000</pubDate>
		<dc:creator>henkstubbe</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://henkstubbe.wordpress.com/2007/06/28/ubuntu-704-on-asus-m2a-vm-hdmi/</guid>
		<description><![CDATA[Just running the Dapper install CD did not work out, it just crashed. Got Dapper up and running with the suggestion taken from http://ubuntuforums.org/showthread.php?p=2761200
Example grub menu entry:
## ## End Default Options ##
title		Ubuntu, kernel 2.6.20-15-generic
root		(hd0,0)
kernel		/boot/vmlinuz-2.6.20-15-generic root=UUID=82efad91-9c28-4d6d-9f7a-ae83a90eeaa1 ro quiet splash pci=nomsi irqpoll noapic acpi=off
initrd		/boot/initrd.img-2.6.20-15-generic
quiet
Problem left: when I shutdown, the computer does not shut off but halts.
savedefault
  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henkstubbe.wordpress.com&blog=730788&post=10&subd=henkstubbe&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Just running the Dapper install CD did not work out, it just crashed. Got Dapper up and running with the suggestion taken from http://ubuntuforums.org/showthread.php?p=2761200</p>
<p>Example grub menu entry:</p>
<p>## ## End Default Options ##</p>
<p>title		Ubuntu, kernel 2.6.20-15-generic<br />
root		(hd0,0)<br />
kernel		/boot/vmlinuz-2.6.20-15-generic root=UUID=82efad91-9c28-4d6d-9f7a-ae83a90eeaa1 ro quiet splash pci=nomsi irqpoll noapic acpi=off<br />
initrd		/boot/initrd.img-2.6.20-15-generic<br />
quiet</p>
<p>Problem left: when I shutdown, the computer does not shut off but halts.<br />
savedefault</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/henkstubbe.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/henkstubbe.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/henkstubbe.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/henkstubbe.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/henkstubbe.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/henkstubbe.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/henkstubbe.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/henkstubbe.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/henkstubbe.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/henkstubbe.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/henkstubbe.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/henkstubbe.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henkstubbe.wordpress.com&blog=730788&post=10&subd=henkstubbe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://henkstubbe.wordpress.com/2007/06/28/ubuntu-704-on-asus-m2a-vm-hdmi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f19c1e79b6115a99601ae109c9fea56?s=96&#38;d=identicon" medium="image">
			<media:title type="html">henkstubbe</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://henkstubbe.wordpress.com/2007/02/14/9/</link>
		<comments>http://henkstubbe.wordpress.com/2007/02/14/9/#comments</comments>
		<pubDate>Wed, 14 Feb 2007 20:44:32 +0000</pubDate>
		<dc:creator>henkstubbe</dc:creator>
				<category><![CDATA[d600]]></category>

		<guid isPermaLink="false">http://henkstubbe.wordpress.com/2007/02/14/9/</guid>
		<description><![CDATA[Managed to get dual screen working on a Dell Latitude D600 laptop with a Radeon Mobility 9000 M9 in combination with a 2001FP 20inch TFT screen.
My requirements:
1) At the office, I want to use dual screen with the menu bar on the external screen.
2) Outside the office, I only want (can) use the laptop screen, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henkstubbe.wordpress.com&blog=730788&post=9&subd=henkstubbe&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Managed to get dual screen working on a Dell Latitude D600 laptop with a Radeon Mobility 9000 M9 in combination with a 2001FP 20inch TFT screen.</p>
<p>My requirements:<br />
1) At the office, I want to use dual screen with the menu bar on the external screen.<br />
2) Outside the office, I only want (can) use the laptop screen, of course with the menu bar visible.<br />
3) When booting, I want to be able to log on using a visible logon textfield<br />
4) When I plug out my laptop, I want to switch from dual to single screen very easily</p>
<p>What I did:<br />
This is the xorg.conf file I use:<br />
<code><br />
# /etc/X11/xorg.conf (xorg X Window System server configuration file)<br />
#<br />
# This file was generated by dexconf, the Debian X Configuration tool, using<br />
# values from the debconf database.<br />
#<br />
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.<br />
# (Type "man /etc/X11/xorg.conf" at the shell prompt.)<br />
#<br />
# This file is automatically updated on xserver-xorg package upgrades *only*<br />
# if it has not been modified since the last upgrade of the xserver-xorg<br />
# package.<br />
#<br />
# If you have edited this file but would like it to be automatically updated<br />
# again, run the following command:<br />
#   sudo dpkg-reconfigure -phigh xserver-xorg</p>
<p>Section "Files"<br />
	FontPath	"/usr/share/X11/fonts/misc"<br />
	FontPath	"/usr/share/X11/fonts/cyrillic"<br />
	FontPath	"/usr/share/X11/fonts/100dpi/:unscaled"<br />
	FontPath	"/usr/share/X11/fonts/75dpi/:unscaled"<br />
	FontPath	"/usr/share/X11/fonts/Type1"<br />
	FontPath	"/usr/share/X11/fonts/100dpi"<br />
	FontPath	"/usr/share/X11/fonts/75dpi"<br />
	FontPath	"/usr/share/fonts/X11/misc"<br />
	# path to defoma fonts<br />
	FontPath	"/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"<br />
EndSection</p>
<p>Section "Module"<br />
	Load	"bitmap"<br />
	Load	"dbe"<br />
	Load	"ddc"<br />
	Load	"dri"<br />
	Load	"extmod"<br />
	Load	"freetype"<br />
	Load	"glx"<br />
	Load	"int10"<br />
	Load	"type1"<br />
	Load	"vbe"<br />
EndSection</p>
<p>Section "InputDevice"<br />
	Identifier	"Generic Keyboard"<br />
	Driver		"kbd"<br />
	Option		"CoreKeyboard"<br />
	Option		"XkbRules"	"xorg"<br />
	Option		"XkbModel"	"pc104"<br />
	Option		"XkbLayout"	"us"<br />
	Option		"XkbOptions"	"lv3:ralt_switch"<br />
EndSection</p>
<p>Section "InputDevice"<br />
	Identifier	"Configured Mouse"<br />
	Driver		"mouse"<br />
	Option		"CorePointer"<br />
	Option		"Device"		"/dev/input/mice"<br />
	Option		"Protocol"		"ExplorerPS/2"<br />
	Option		"ZAxisMapping"		"4 5"<br />
	Option		"Emulate3Buttons"	"true"<br />
EndSection</p>
<p>Section "InputDevice"<br />
	Identifier	"Synaptics Touchpad"<br />
	Driver		"synaptics"<br />
	Option		"SendCoreEvents"	"true"<br />
	Option		"Device"		"/dev/psaux"<br />
	Option		"Protocol"		"auto-dev"<br />
	Option		"HorizScrollDelta"	"0"<br />
EndSection</p>
<p>Section "InputDevice"<br />
  Driver        "wacom"<br />
  Identifier    "stylus"<br />
  Option        "Device"        "/dev/wacom"          # Change to<br />
                                                      # /dev/input/event<br />
                                                      # for USB<br />
  Option        "Type"          "stylus"<br />
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY<br />
EndSection</p>
<p>Section "InputDevice"<br />
  Driver        "wacom"<br />
  Identifier    "eraser"<br />
  Option        "Device"        "/dev/wacom"          # Change to<br />
                                                      # /dev/input/event<br />
                                                      # for USB<br />
  Option        "Type"          "eraser"<br />
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY<br />
EndSection</p>
<p>Section "InputDevice"<br />
  Driver        "wacom"<br />
  Identifier    "cursor"<br />
  Option        "Device"        "/dev/wacom"          # Change to<br />
                                                      # /dev/input/event<br />
                                                      # for USB<br />
  Option        "Type"          "cursor"<br />
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY<br />
EndSection</p>
<p>Section "Device"<br />
	Identifier	"ATI Technologies, Inc. Radeon R250 Lf [Radeon Mobility 9000 M9]"<br />
	Driver		"radeon"<br />
	BusID		"PCI:1:0:0"<br />
	Option	  "backingstore" "true"<br />
	Option	  "EnablePageFlip" "true"<br />
	Option	  "SubPixelOrder" "none"<br />
	Option	  "AccelMethod" "XAA"<br />
	Option	  "RenderAccel" "true"<br />
	Option	  "AGPMode" "4"<br />
	Option	  "ColorTiling"   "on"<br />
	Option	  "DynamicClocks" "on"<br />
	Option	  "mtrr" "on"<br />
	Option	  "VideoOverlay" "on"<br />
	Option	  "OpenGLOverlay" "off"<br />
Option "MergedFB" "true" #Enable MergedFB function<br />
 Option "MonitorLayout" "LCD, CRT" # Use LCD and CRT even if you have 2 LCD's or CRT's<br />
 Option "CRT2Hsync" "56-76" #Horizontal Sync of the Monitor (check your monitor's manual for correct values)<br />
 Option "CRT2VRefresh" "31-80" #Vertical Refresh rate of the Monitor (check your monitor's manual for correct values)<br />
 Option "OverlayOnCRTC2" "true"<br />
 Option "CRT2Position" "RightOf" #Physical location of your secondary monitor in relationship to your primary monitor.<br />
 Option "MetaModes" "1400x1050 1400x1050-1280x1024 1400x1050-1600x1200 1024x768" #Monitor Resolutions for Primary-Secondary monitors<br />
Option "MergedXineramaCRT2IsScreen0" "true" #determines which screen is going to be the primary screen; value can be "true" or "false"<br />
EndSection</p>
<p>Section "Monitor"<br />
	Identifier	"Generic Monitor"<br />
	Option		"DPMS"<br />
	HorizSync	28-33<br />
	VertRefresh	43-72<br />
EndSection</p>
<p>Section "Screen"<br />
	Identifier	"Default Screen"<br />
	Device		"ATI Technologies, Inc. Radeon R250 Lf [Radeon Mobility 9000 M9]"<br />
	Monitor		"Generic Monitor"<br />
	DefaultDepth	24<br />
	SubSection "Display"<br />
		Depth		24<br />
		Virtual        3000 1200<br />
		# You can put your modes below, for your own resolutions, these are mine:<br />
		Modes		"1600x1200" "1400x1050" "1280x1024" "1280x800" "1024x768" "800x600" "640x480"<br />
	EndSubSection<br />
	SubSection "Display"<br />
		Depth		1<br />
		Modes		"1400x1050" "1280x1024" "1280x800" "1024x768" "800x600" "640x480"<br />
	EndSubSection<br />
	SubSection "Display"<br />
		Depth		4<br />
		Modes		"1400x1050" "1280x1024" "1280x800" "1024x768" "800x600" "640x480"<br />
	EndSubSection<br />
	SubSection "Display"<br />
		Depth		8<br />
		Modes		"1400x1050" "1280x1024" "1280x800" "1024x768" "800x600" "640x480"<br />
	EndSubSection<br />
	SubSection "Display"<br />
		Depth		15<br />
		Modes		"1400x1050" "1280x1024" "1280x800" "1024x768" "800x600" "640x480"<br />
	EndSubSection<br />
	SubSection "Display"<br />
		Depth		16<br />
		Modes		"1600x1200" "1400x1050" "1280x1024" "1280x800" "1024x768" "800x600" "640x480"<br />
	EndSubSection</p>
<p>EndSection</p>
<p>Section "ServerLayout"<br />
	Identifier	"Default Layout"<br />
	Screen		"Default Screen"<br />
	InputDevice	"Generic Keyboard"<br />
	InputDevice	"Configured Mouse"<br />
	InputDevice     "stylus" "SendCoreEvents"<br />
	InputDevice     "cursor" "SendCoreEvents"<br />
	InputDevice     "eraser" "SendCoreEvents"<br />
	InputDevice	"Synaptics Touchpad"<br />
EndSection</p>
<p>Section "DRI"<br />
	Mode	0666<br />
EndSection</p>
<p>Section "Extensions"<br />
	Option "Composite" "Enable"<br />
EndSection<br />
</code><br />
This setup makes my laptop boot very weird, I can see half of the screen. However, I can logon. Then I see a screen without the menu bar, so I have a problem. I solved this with creating a launcher file (right click on the desktop, create launcher) with this command </p>
<p>xrandr -s 0</p>
<p>This command changes my screen settings to the first meta mode with a single screen. When I run </p>
<p>xrandr -s2</p>
<p>I get a nice dual screen set up. When booting with the external screen connected, everything is fine. It&#8217;s even possible to use System/Preferences/Screen Resolution and do it the GUI way.</p>
<p>Does this make me happy?</p>
<p>Well, it&#8217;s not perfect yet, but it works for me. Actually this is one of the issues I had to solve before switching from Windows to Ubuntu on the business desktop &#8211; my boss did not invest in a huge screen without expecting me to use it.</p>
<p>Maybe someone can tell me how I can make my laptop autodetect if there is one or two screens?<br />
    an tell me how I can make my laptop autodetect if there is one or two screens?</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/henkstubbe.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/henkstubbe.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/henkstubbe.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/henkstubbe.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/henkstubbe.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/henkstubbe.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/henkstubbe.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/henkstubbe.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/henkstubbe.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/henkstubbe.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/henkstubbe.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/henkstubbe.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henkstubbe.wordpress.com&blog=730788&post=9&subd=henkstubbe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://henkstubbe.wordpress.com/2007/02/14/9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f19c1e79b6115a99601ae109c9fea56?s=96&#38;d=identicon" medium="image">
			<media:title type="html">henkstubbe</media:title>
		</media:content>
	</item>
		<item>
		<title>Wireless on Dell D600 Latitude laptop &amp; Ubuntu Edgy</title>
		<link>http://henkstubbe.wordpress.com/2007/02/14/wireless-on-dell-d600-latitude-laptop-ubuntu-edgy/</link>
		<comments>http://henkstubbe.wordpress.com/2007/02/14/wireless-on-dell-d600-latitude-laptop-ubuntu-edgy/#comments</comments>
		<pubDate>Wed, 14 Feb 2007 20:38:37 +0000</pubDate>
		<dc:creator>henkstubbe</dc:creator>
				<category><![CDATA[d600]]></category>

		<guid isPermaLink="false">http://henkstubbe.wordpress.com/2007/02/14/wireless-on-dell-d600-latitude-laptop-ubuntu-edgy/</guid>
		<description><![CDATA[Follow this. Worked for me.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henkstubbe.wordpress.com&blog=730788&post=8&subd=henkstubbe&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Follow <a href="http://ubuntuforums.org/showthread.php?t=185174">this</a>. Worked for me.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/henkstubbe.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/henkstubbe.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/henkstubbe.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/henkstubbe.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/henkstubbe.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/henkstubbe.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/henkstubbe.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/henkstubbe.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/henkstubbe.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/henkstubbe.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/henkstubbe.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/henkstubbe.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henkstubbe.wordpress.com&blog=730788&post=8&subd=henkstubbe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://henkstubbe.wordpress.com/2007/02/14/wireless-on-dell-d600-latitude-laptop-ubuntu-edgy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f19c1e79b6115a99601ae109c9fea56?s=96&#38;d=identicon" medium="image">
			<media:title type="html">henkstubbe</media:title>
		</media:content>
	</item>
		<item>
		<title>Evolution hangs while replying to an email</title>
		<link>http://henkstubbe.wordpress.com/2007/02/01/evolution-hangs-while-replying-to-an-email/</link>
		<comments>http://henkstubbe.wordpress.com/2007/02/01/evolution-hangs-while-replying-to-an-email/#comments</comments>
		<pubDate>Thu, 01 Feb 2007 19:37:42 +0000</pubDate>
		<dc:creator>henkstubbe</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://henkstubbe.wordpress.com/2007/02/01/evolution-hangs-while-replying-to-an-email/</guid>
		<description><![CDATA[Address autocompletion in Evolution did not work fine for me and I changed some settings. That was a bad idea, as I was not able to reply to email anymore. It happened that I set the automatic contact feature to Global Address List, which in my case is LDAP and unwritable to me. This caused [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henkstubbe.wordpress.com&blog=730788&post=7&subd=henkstubbe&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Address autocompletion in Evolution did not work fine for me and I changed some settings. That was a bad idea, as I was not able to reply to email anymore. It happened that I set the automatic contact feature to Global Address List, which in my case is LDAP and unwritable to me. This caused a time out &#8211; Evolution wanted to add the email address to the address book which was unwritable &#8211; and Evolution hanged. Changed the automatic contact source to something else and now it works like a charm again.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/henkstubbe.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/henkstubbe.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/henkstubbe.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/henkstubbe.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/henkstubbe.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/henkstubbe.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/henkstubbe.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/henkstubbe.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/henkstubbe.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/henkstubbe.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/henkstubbe.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/henkstubbe.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henkstubbe.wordpress.com&blog=730788&post=7&subd=henkstubbe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://henkstubbe.wordpress.com/2007/02/01/evolution-hangs-while-replying-to-an-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f19c1e79b6115a99601ae109c9fea56?s=96&#38;d=identicon" medium="image">
			<media:title type="html">henkstubbe</media:title>
		</media:content>
	</item>
		<item>
		<title>VMWare Server on Ubuntu Edgy</title>
		<link>http://henkstubbe.wordpress.com/2007/01/29/vmware-server-on-ubuntu-edgy/</link>
		<comments>http://henkstubbe.wordpress.com/2007/01/29/vmware-server-on-ubuntu-edgy/#comments</comments>
		<pubDate>Mon, 29 Jan 2007 22:45:55 +0000</pubDate>
		<dc:creator>henkstubbe</dc:creator>
				<category><![CDATA[d600]]></category>

		<guid isPermaLink="false">http://henkstubbe.wordpress.com/2007/01/29/vmware-server-on-ubuntu-edgy/</guid>
		<description><![CDATA[To get VMWare Server installed on Ubuntu Edgy, I did this. 
Installation is not everything, I want to get the stuff up &#38; running, quick and easy.
To start that bunch of software I did 
$ LD_PRELOAD=/usr/lib/libdbus-1.so.3 vmware &#38;
Source: http://ubuntuforums.org/showthread.php?t=278651&#38;page=2
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henkstubbe.wordpress.com&blog=730788&post=6&subd=henkstubbe&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>To get <a href="http://www.vmware.com/products/free_virtualization.html">VMWare Server</a> installed on Ubuntu Edgy, I did <a href="http://ubuntuguide.org/wiki/Ubuntu_Edgy#How_to_install_Virtual_Machine_Manager_.28VMware_Server.29">this.</a> </p>
<p>Installation is not everything, I want to get the stuff up &amp; running, quick and easy.</p>
<p>To start that bunch of software I did </p>
<p><code>$ LD_PRELOAD=/usr/lib/libdbus-1.so.3 vmware &amp;</code></p>
<p>Source: <a href="http://ubuntuforums.org/showthread.php?t=278651&amp;page=2">http://ubuntuforums.org/showthread.php?t=278651&amp;page=2</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/henkstubbe.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/henkstubbe.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/henkstubbe.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/henkstubbe.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/henkstubbe.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/henkstubbe.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/henkstubbe.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/henkstubbe.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/henkstubbe.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/henkstubbe.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/henkstubbe.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/henkstubbe.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henkstubbe.wordpress.com&blog=730788&post=6&subd=henkstubbe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://henkstubbe.wordpress.com/2007/01/29/vmware-server-on-ubuntu-edgy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f19c1e79b6115a99601ae109c9fea56?s=96&#38;d=identicon" medium="image">
			<media:title type="html">henkstubbe</media:title>
		</media:content>
	</item>
		<item>
		<title>Dell Latitude D600 touchpad speed up on Ubuntu Edgy</title>
		<link>http://henkstubbe.wordpress.com/2007/01/29/dell-latitude-d600-touchpad-speed-up-on-ubuntu-edgy/</link>
		<comments>http://henkstubbe.wordpress.com/2007/01/29/dell-latitude-d600-touchpad-speed-up-on-ubuntu-edgy/#comments</comments>
		<pubDate>Mon, 29 Jan 2007 22:35:51 +0000</pubDate>
		<dc:creator>henkstubbe</dc:creator>
				<category><![CDATA[d600]]></category>

		<guid isPermaLink="false">http://henkstubbe.wordpress.com/2007/01/29/dell-latitude-d600-touchpad-speed-up-on-ubuntu-edgy/</guid>
		<description><![CDATA[The touchpad on the Dell Latitude D600 did not work for me, the cursor moved way too slow. As if I like to touch the pad &#8211; not.  So I played around with some settings in
 /etc/X11/xorg.conf
Play with this:
Section "InputDevice"
        Identifier      "Synaptics [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henkstubbe.wordpress.com&blog=730788&post=5&subd=henkstubbe&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The touchpad on the Dell Latitude D600 did not work for me, the cursor moved way too slow. As if I like to touch the pad &#8211; not.  So I played around with some settings in</p>
<p><code> /etc/X11/xorg.conf</code></p>
<p>Play with this:</p>
<p><code>Section "InputDevice"<br />
        Identifier      "Synaptics Touchpad"<br />
        Driver          "synaptics"<br />
        Option          "SendCoreEvents"        "true"<br />
        Option          "Device"                "/dev/input/mice"<br />
        Option          "Protocol"              "auto-dev"<br />
        Option          "ZAxisMapping"          "4 5"<br />
        Option          "Emulate3Buttons"       "on"<br />
        Option          "SHMConfig"             "on"<br />
        Option          "LeftEdge"      "85"<br />
        Option          "RightEdge"     "1010"<br />
        Option          "TopEdge"       "85"<br />
        Option          "BottomEdge"    "730"<br />
        Option          "FingerLow"     "25"<br />
        Option          "FingerHigh"    "30"<br />
        Option          "MaxTapTime"    "180"<br />
        Option          "MaxTapMove"    "220"<br />
        Option          "VertScrollDelta"       "100"<br />
        Option          "MinSpeed"      "0.10"<br />
        Option          "MaxSpeed"      "0.60"<br />
        Option          "AccelFactor"   "0.2"<br />
        Option          "HorizScrollDelta"      "0"<br />
EndSection</code></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/henkstubbe.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/henkstubbe.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/henkstubbe.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/henkstubbe.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/henkstubbe.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/henkstubbe.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/henkstubbe.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/henkstubbe.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/henkstubbe.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/henkstubbe.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/henkstubbe.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/henkstubbe.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henkstubbe.wordpress.com&blog=730788&post=5&subd=henkstubbe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://henkstubbe.wordpress.com/2007/01/29/dell-latitude-d600-touchpad-speed-up-on-ubuntu-edgy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f19c1e79b6115a99601ae109c9fea56?s=96&#38;d=identicon" medium="image">
			<media:title type="html">henkstubbe</media:title>
		</media:content>
	</item>
		<item>
		<title>No sound on Dell D600 Latitude laptop running Ubuntu Edgy</title>
		<link>http://henkstubbe.wordpress.com/2007/01/29/no-sound-on-dell-d600-latitude-laptop-running-ubuntu-edgy/</link>
		<comments>http://henkstubbe.wordpress.com/2007/01/29/no-sound-on-dell-d600-latitude-laptop-running-ubuntu-edgy/#comments</comments>
		<pubDate>Mon, 29 Jan 2007 22:29:20 +0000</pubDate>
		<dc:creator>henkstubbe</dc:creator>
				<category><![CDATA[d600]]></category>

		<guid isPermaLink="false">http://henkstubbe.wordpress.com/2007/01/29/no-sound-on-dell-d600-latitude-laptop-running-ubuntu-edgy/</guid>
		<description><![CDATA[Mmm, no sound. Fixed it with this way:
Type this into a shell 
$ alsamixer 
You will now see what appears to be a graphical equalizer. It is more like ten different volume controls in the sample place. 
To navigate around: 

Left and Right Arrow Keys &#8211; Move left and right (if you move long enough [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henkstubbe.wordpress.com&blog=730788&post=4&subd=henkstubbe&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Mmm, no sound. Fixed it with this way:</p>
<p>Type this into a shell </p>
<p><code>$ alsamixer </code></p>
<p>You will now see what appears to be a graphical equalizer. It is more like ten different volume controls in the sample place. </p>
<p>To navigate around: </p>
<ul>
<li>Left and Right Arrow Keys &#8211; Move left and right (if you move long enough in one direction you will get back to where you started &#8211; you will not fall off the screen ) </li>
<li>Up and Down Arrow Keys &#8211; Increase and decrease volume respectively. </li>
<li>Letter M Key &#8211; Mutes/unmutes. If a channel is unmuted, then there is a green box underneath the volume slider. If the channel is muted, the box is grey.</li>
</ul>
<p>Saving Sound Settings</p>
<p>Do this step to ensure that your alsamixer settings are reloaded with each boot. First make sure you have your settings just the way you like them in alsamixer. Then do sudo alsactl store 0 or if this is your nth sound card (where n is the number of soundcards in your computer) replace 0 with n-1. Many thanks to xpix for trying this out.</p>
<p>source: <a href="https://help.ubuntu.com/community/SoundTroubleshooting">https://help.ubuntu.com/community/SoundTroubleshooting</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/henkstubbe.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/henkstubbe.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/henkstubbe.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/henkstubbe.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/henkstubbe.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/henkstubbe.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/henkstubbe.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/henkstubbe.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/henkstubbe.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/henkstubbe.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/henkstubbe.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/henkstubbe.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henkstubbe.wordpress.com&blog=730788&post=4&subd=henkstubbe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://henkstubbe.wordpress.com/2007/01/29/no-sound-on-dell-d600-latitude-laptop-running-ubuntu-edgy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f19c1e79b6115a99601ae109c9fea56?s=96&#38;d=identicon" medium="image">
			<media:title type="html">henkstubbe</media:title>
		</media:content>
	</item>
	</channel>
</rss>