<?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>magnus-pedersen.dk &#187; IT</title>
	<atom:link href="http://magnus-pedersen.dk/category/it/feed/" rel="self" type="application/rss+xml" />
	<link>http://magnus-pedersen.dk</link>
	<description>Fortytwo</description>
	<lastBuildDate>Sun, 04 Dec 2011 16:29:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Uptime, uptime, uptime!</title>
		<link>http://magnus-pedersen.dk/2010/07/uptime-uptime-uptime/</link>
		<comments>http://magnus-pedersen.dk/2010/07/uptime-uptime-uptime/#comments</comments>
		<pubDate>Sat, 31 Jul 2010 14:28:03 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[xkcd]]></category>

		<guid isPermaLink="false">http://magnus-pedersen.dk/?p=714</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="XKCD" src="http://imgs.xkcd.com/comics/devotion_to_duty.png" alt="Uptime" width="638" height="247" /></p>
]]></content:encoded>
			<wfw:commentRss>http://magnus-pedersen.dk/2010/07/uptime-uptime-uptime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WTF?</title>
		<link>http://magnus-pedersen.dk/2010/03/wtf/</link>
		<comments>http://magnus-pedersen.dk/2010/03/wtf/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 21:26:00 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Germans]]></category>

		<guid isPermaLink="false">http://magnus-pedersen.dk/?p=634</guid>
		<description><![CDATA[I need links on this! Please do not hesitate to comment&#8230;]]></description>
			<content:encoded><![CDATA[<p>I need links on this!</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/hgsixMZ1hqw&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/hgsixMZ1hqw&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Please do not hesitate to comment&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://magnus-pedersen.dk/2010/03/wtf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rsync and backup</title>
		<link>http://magnus-pedersen.dk/2010/01/rsync-and-backup/</link>
		<comments>http://magnus-pedersen.dk/2010/01/rsync-and-backup/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 15:35:32 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[DeltaCopy]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[rsync]]></category>

		<guid isPermaLink="false">http://magnus-pedersen.dk/?p=605</guid>
		<description><![CDATA[The setup is: Clients -&#62; Server -&#62; NAS. ssh from Client to server, cifs from server to NAS. First bit, make ssh keypairs for the clients, if the backup-process is supposed to be unsupervised, then make keypairs without passwords. Then I needed to fiddle with the backup-share, permissions screwed with rsync, generating a lot of [...]]]></description>
			<content:encoded><![CDATA[<p>The setup is: Clients -&gt; Server -&gt; NAS. ssh from Client to server, cifs from server to NAS.</p>
<p>First bit, <a title="ssh" href="http://sial.org/howto/openssh/publickey-auth/" target="_blank">make ssh keypairs</a> for the clients, if the backup-process is supposed to be unsupervised, then make keypairs without passwords. Then I needed to fiddle with the backup-share, permissions screwed with rsync, generating a lot of noise in the log. Stuff got backed up though. Heres what my backupscript ended up looking like:</p>
<blockquote>
<div id="_mcePaste">#!/bin/sh</div>
<div id="_mcePaste"># for copy from CLIENTBACKUPDIR to /mnt/Backup/$BACKUPUSER directory on server</div>
<div id="_mcePaste">CLIENTBACKUPDIR=XXX</div>
<div id="_mcePaste">BACKUPUSER=XXX</div>
<div id="_mcePaste">SERVERHOST=URL</div>
<div id="_mcePaste">SSHUSER=XXX</div>
<div id="_mcePaste">cd $HOME || exit 1</div>
<div id="_mcePaste">rsync &#8211;delete &#8211;exclude-from=$HOME/.rsync/exclude-backup \</div>
<div id="_mcePaste">&#8211;timeout=999 -azu \</div>
<div id="_mcePaste">-e &#8220;ssh -l $SSHUSER -i .ssh/backup -ax -o ClearAllForwardings=yes&#8221; \</div>
<div id="_mcePaste">$HOME/ $SERVERHOST:/mnt/Backup/$BACKUPUSER</div>
</blockquote>
<div>The $HOME/.rsync/exclude-backup file looks something like this:</div>
<blockquote>
<div>
<div>#Backup-excludefile</div>
<div>- /Media/*</div>
<div>- /Music/*</div>
<div>- /.*</div>
</div>
</blockquote>
<div>The path is relative to $HOME</div>
<div>The <a title="cifs" href="http://linux.die.net/man/8/mount.cifs" target="_blank">noperm option</a> made a lot of difference in the /etc/fstab on the server. Otherwise rsync threw up a lot of permission-errors. cifs perhaps isn&#8217;t ideal, but it gives me more options.</div>
<div>This even works with <a title="DC" href="http://www.aboutmyip.com/AboutMyXApp/DeltaCopy.jsp" target="_blank">DeltaCopy</a> on my wifes Win7 netbook. And it was a nobrainer from all of my Debian-machines and my moms Ubuntu netbook.</div>
]]></content:encoded>
			<wfw:commentRss>http://magnus-pedersen.dk/2010/01/rsync-and-backup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My first tricorder</title>
		<link>http://magnus-pedersen.dk/2009/11/my-first-tricorder/</link>
		<comments>http://magnus-pedersen.dk/2009/11/my-first-tricorder/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 13:49:24 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Physics]]></category>
		<category><![CDATA[Series]]></category>

		<guid isPermaLink="false">http://magnus-pedersen.dk/?p=587</guid>
		<description><![CDATA[I just stumbled on this, my very own tricorder! Android rules!]]></description>
			<content:encoded><![CDATA[<p>I just stumbled on <a title="tricorder" href="http://code.google.com/p/moonblink/wiki/Tricorder" target="_blank">this</a>, my very own tricorder! <a title="Android" href="http://www.android.com/" target="_blank">Android</a> rules!</p>
]]></content:encoded>
			<wfw:commentRss>http://magnus-pedersen.dk/2009/11/my-first-tricorder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTC HERO KERNEL SOURCE PART 3</title>
		<link>http://magnus-pedersen.dk/2009/10/htc-hero-kernel-source-part-3/</link>
		<comments>http://magnus-pedersen.dk/2009/10/htc-hero-kernel-source-part-3/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 17:52:51 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://magnus-pedersen.dk/?p=569</guid>
		<description><![CDATA[Well, it seems that getting gpl-violations.org on the case helped]]></description>
			<content:encoded><![CDATA[<p>Well, it seems that getting <a title="gpl" href="http://gpl-violations.org" target="_blank">gpl-violations.org</a> on the case <a title="htc" href="http://developer.htc.com" target="_blank">helped</a> <img src='http://magnus-pedersen.dk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://magnus-pedersen.dk/2009/10/htc-hero-kernel-source-part-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTC HERO KERNEL SOURCE part 2</title>
		<link>http://magnus-pedersen.dk/2009/10/htc-hero-kernel-source-part-2/</link>
		<comments>http://magnus-pedersen.dk/2009/10/htc-hero-kernel-source-part-2/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 09:56:35 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://magnus-pedersen.dk/?p=567</guid>
		<description><![CDATA[Yesterday I wrote gpl-violations.org about my problems. They responded today that they are on the case and stuff is happening. Might not be to long now]]></description>
			<content:encoded><![CDATA[<p>Yesterday I wrote gpl-violations.org about my problems. They responded today that they are on the case and stuff is happening. Might not be to long now <img src='http://magnus-pedersen.dk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://magnus-pedersen.dk/2009/10/htc-hero-kernel-source-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTC Hero kernel source</title>
		<link>http://magnus-pedersen.dk/2009/10/htc-hero-kernel-source/</link>
		<comments>http://magnus-pedersen.dk/2009/10/htc-hero-kernel-source/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 19:44:20 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://magnus-pedersen.dk/?p=564</guid>
		<description><![CDATA[I have written HTC several times to get hold of the kernel-source for the hero, but they haven&#8217;t been very forthcoming. It seems I&#8217;m not the only one: Slashdot]]></description>
			<content:encoded><![CDATA[<p>I have written HTC several times to get hold of the kernel-source for the hero, but they haven&#8217;t been very forthcoming. It seems I&#8217;m not the only one: <a title="slashdot" href="http://tech.slashdot.org/story/09/10/16/1720224/HTC-Dragging-Feet-on-GPL-Source-Release-For-Hero-Phone" target="_blank">Slashdot</a></p>
]]></content:encoded>
			<wfw:commentRss>http://magnus-pedersen.dk/2009/10/htc-hero-kernel-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kindle for the rest of us!</title>
		<link>http://magnus-pedersen.dk/2009/10/kindle-for-the-rest-of-us/</link>
		<comments>http://magnus-pedersen.dk/2009/10/kindle-for-the-rest-of-us/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 14:25:17 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://magnus-pedersen.dk/?p=559</guid>
		<description><![CDATA[Amazons kindle has been released with global 3G radio-bits. In other words, whispernet and instant access to 350.000 books, daily newspapers and magazines in more than 100 countries! Can&#8217;t wait to get mine]]></description>
			<content:encoded><![CDATA[<p><a title="Kindle" href="http://www.amazon.com/Wireless-Reading-Display-International-Generation/dp/B0015T963C/ref=amb_link_85647731_3?pf_rd_m=ATVPDKIKX0DER&amp;pf_rd_s=gateway-center-column&amp;pf_rd_r=129EYAWQ3PF4DH9G9NZF&amp;pf_rd_t=101&amp;pf_rd_p=493724391&amp;pf_rd_i=507846" target="_blank">Amazons kindle has been released</a> with global 3G radio-bits. In other words, whispernet and instant access to 350.000 books, daily newspapers and magazines in more than 100 countries!</p>
<p><a title="wishlist" href="http://magnus-pedersen.dk/wishlist/" target="_self">Can&#8217;t wait to get mine</a> <img src='http://magnus-pedersen.dk/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://magnus-pedersen.dk/2009/10/kindle-for-the-rest-of-us/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Paid apps in Android Market in Denmark</title>
		<link>http://magnus-pedersen.dk/2009/09/paid-apps-in-android-market-in-denmark/</link>
		<comments>http://magnus-pedersen.dk/2009/09/paid-apps-in-android-market-in-denmark/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 11:01:25 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://magnus-pedersen.dk/?p=544</guid>
		<description><![CDATA[At last, rumor has it that HTC and Google finally has gotten their act together and are offering access to paid apps in Android Market. When the HTC Tattoo hits danish stores Market will be open for paid apps.]]></description>
			<content:encoded><![CDATA[<p>At last, rumor has it that HTC and Google finally has gotten their act together and are offering access to paid apps in Android Market.</p>
<p>When the HTC Tattoo hits danish stores Market will be open for paid apps.</p>
]]></content:encoded>
			<wfw:commentRss>http://magnus-pedersen.dk/2009/09/paid-apps-in-android-market-in-denmark/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New ROM for my Android</title>
		<link>http://magnus-pedersen.dk/2009/09/new-rom-for-my-android/</link>
		<comments>http://magnus-pedersen.dk/2009/09/new-rom-for-my-android/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 07:07:15 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://magnus-pedersen.dk/?p=537</guid>
		<description><![CDATA[I&#8217;ve flashed my HTC Hero Android phone with a new ROM and a firmware with new and improved bits for the radiostuff. The new ROM is based on the upcomming update from HTC (should be almost here now) and it is FAST! I&#8217;m just now trying to figure out how to remove apps I don&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve flashed my HTC Hero Android phone with a new ROM and a firmware with new and improved bits for the radiostuff.</p>
<p>The new ROM is based on the upcomming update from HTC (should be almost here now) and it is FAST!</p>
<p>I&#8217;m just now trying to figure out how to remove apps I don&#8217;t use&#8230;</p>
<p>(adb shell is a fun way to make a mess <img src='http://magnus-pedersen.dk/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> )</p>
<p>This is how:</p>
<p>Needed, <a title="sdk" href="http://developer.android.com/sdk/1.5_r3/index.html" target="_blank">Android sdk</a> and <a title="fastboot" href="http://www.htc.com/www/support/android/adp.html" target="_blank">fastboot</a> and <a title="cm" href="http://rapidshare.com/files/262621147/cm-hero-recovery.img.zip" target="_blank">cm-recovery.img</a>. If you are on a windowsmachine you might need to update your usbdrivers, I have no idea how to do that (it works out of the box on all my linuxboxes) but I imagine you need to doubleclick on lots of buttons&#8230;</p>
<p>Get the new ROM and maybe even the updated firmware for the radio.</p>
<p><a title="ROM" href="http://android.modaco.com/content/htc-hero-hero-modaco-com/292018/02-09-1-5-modaco-custom-hero-rom-is-here/" target="_blank">ROM</a></p>
<p><a title="Radio" href="http://android.modaco.com/content/htc-hero-hero-modaco-com/291942/26-08-hero-roms-radios-in-update-zip-format/" target="_blank">Radio</a></p>
<p>Put both of the zip-files on your sd-card.</p>
<p>Plug in your phone and run</p>
<p><span style="background-color: #ffffff;">fastboot boot /path/to/cm-recovery.img</span></p>
<p><span style="background-color: #ffffff;">wipe your phone (perhaps with a backup first).</span></p>
<p><span style="background-color: #ffffff;">Use the menu to install the zipfiles (first the radio, then the ROM) and you are done.</span></p>
<p><span style="background-color: #ffffff;">After that I began rm&#8217;ing stuf with adb shell to get rid of stuff I never use. YMMV!</span></p>
]]></content:encoded>
			<wfw:commentRss>http://magnus-pedersen.dk/2009/09/new-rom-for-my-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

