<?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>sleepless@localhost</title>
	<atom:link href="http://beuwolf.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://beuwolf.wordpress.com</link>
	<description>Blogging about Linux, networks and security</description>
	<lastBuildDate>Mon, 23 Jan 2012 19:32:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='beuwolf.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>sleepless@localhost</title>
		<link>http://beuwolf.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://beuwolf.wordpress.com/osd.xml" title="sleepless@localhost" />
	<atom:link rel='hub' href='http://beuwolf.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Unlocking a LUKS encrypted root partition via SSH has become very easy</title>
		<link>http://beuwolf.wordpress.com/2010/12/28/unlocking-a-luks-encrypted-root-partition-via-ssh-has-become-very-easy/</link>
		<comments>http://beuwolf.wordpress.com/2010/12/28/unlocking-a-luks-encrypted-root-partition-via-ssh-has-become-very-easy/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 21:57:55 +0000</pubDate>
		<dc:creator>Flo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[hands-on security]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://beuwolf.wordpress.com/?p=228</guid>
		<description><![CDATA[Debian now natively offers an easy to use method of unlocking encrypted root partitions via SSH. It's as easy as apt-get install can be. <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beuwolf.wordpress.com&amp;blog=8132258&amp;post=228&amp;subd=beuwolf&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently, I&#8217;ve set up a small home server again. As usual, I&#8217;ve gone with a fully encrypted hard drive. However, for a server it&#8217;s quite inconvenient to attach <del>a display and</del> a keyboard every time it should be booted.</p>
<p>Therfor, again as usual, I wanted to be able to unencrypt the device using SSH. As many times before I followed the instructions on <a title="Unlocking a LUKS encrypted root partition via ssh" href="http://www.debian-administration.org/articles/579">this page</a>. When I tried to recreate the initrd, all I got was an &#8220;error 72&#8243; along with a note, that this all was deprecated &#8212; and a hint where to find more, which I ignored&#8230;</p>
<p>As Google couldn&#8217;t help much, I decided to read the information: Debian now supports this feature natively and it&#8217;s damn easy to configure:</p>
<p><em>[edit 2010-12-29 17:00] A small word of warning: As I just found out, this isn&#8217;t that easily working with Ubuntu. According to </em><a title="Remote unlocking not possible if plymouth is active (Bug or Feature?)" href="https://bugs.launchpad.net/ubuntu/+source/cryptsetup/+bug/595648"><em>bug report 595648 on launchpad</em></a> <em>Plymouth is responsible for problems unencrypting the device. Comment #5 provides a workaround. However, I haven&#8217;t tested this. [/edit] </em></p>
<p>All you need to do is installing dropbear (a tiny SSH server) and BusyBox (a tiny shell, usually already installed) using apt-get. The initrd will be recreated automatically. Then reboot your computer. Don&#8217;t worry: If you can&#8217;t login via SSH you can still do by using the keyboard. It&#8217;s absolutley(?) fail-safe.</p>
<p>There&#8217;s also a public/private key pair being created automatically when dropbear is installed. For later public key authentication you can either use the private key provided in <em>/etc/initramfs-tools/root/.ssh/id_rsa</em> (copy to your own machine and use it when logging into the server specifying <em>&#8220;-i&#8221;</em>, see below) or just add your usual (public) key to <em>/etc/initramfs-tools/root/.ssh/authorized_keys</em>. (cat your_pubkey.pub &gt;&gt; &#8230;authorized_keys and recreate the initrd with update-initramfs)</p>
<p>The final command (for logging into your booting server only) looks then something like:</p>
<p><pre class="brush: bash;">
ssh -o &quot;UserKnownHostsFile=~/.ssh/known_hosts.initramfs&quot; \
-i &quot;your_public_key&quot;
</pre></p>
<p>&#8220;<em>-o</em>&#8221; specifies a different known_hosts. This is necessarry, because your server will (going this easy way) have two separate fingerprints: One during the boot process offered by dropbear and one afterwards offered by your usual SSH server. This would cause a lot of inconvnience and warnings as changed fingerprints can indicate something nasty going on &#8212; as the warning will tell you.<br />
&#8220;<em>-i</em>&#8221; specifies the private key to use and is only needed if you copied the one being created by dropbear. If you copied your regular one over this can be omitted.</p>
<p>As you probably don&#8217;t want to do too much on your server in this state, it&#8217;s comfortable to pass the command for decrypting the harddrive directly:</p>
<p><pre class="brush: bash;">
ssh -o &quot;UserKnownHostsFile=~/.ssh/known_hosts.initramfs&quot; \
 -i &quot;~/.ssh/id_rsa.initramfs&quot; root@10.0.0.103 \
 &quot;echo -ne \&quot;encryptionpassphrase\&quot; &gt;/lib/cryptsetup/passfifo&quot;
</pre></p>
<p>Yes, that&#8217;s right: The password to decrypt the device is in plain here&#8230;</p>
<p>As you can see, this is really easy: Install dropbear, copy dropbear&#8217;s private key and use it to login. Three short steps and almost fool proof.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beuwolf.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beuwolf.wordpress.com/228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/beuwolf.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/beuwolf.wordpress.com/228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/beuwolf.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/beuwolf.wordpress.com/228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/beuwolf.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/beuwolf.wordpress.com/228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/beuwolf.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/beuwolf.wordpress.com/228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/beuwolf.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/beuwolf.wordpress.com/228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/beuwolf.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/beuwolf.wordpress.com/228/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beuwolf.wordpress.com&amp;blog=8132258&amp;post=228&amp;subd=beuwolf&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beuwolf.wordpress.com/2010/12/28/unlocking-a-luks-encrypted-root-partition-via-ssh-has-become-very-easy/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f4edf7676a62d132bf3fdef5eec8748b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Flo</media:title>
		</media:content>
	</item>
		<item>
		<title>Hands-on security for beginners: Windows system encryption with TrueCrypt</title>
		<link>http://beuwolf.wordpress.com/2010/05/30/hands-on-security-for-beginners-windows-system-encryption-with-truecrypt/</link>
		<comments>http://beuwolf.wordpress.com/2010/05/30/hands-on-security-for-beginners-windows-system-encryption-with-truecrypt/#comments</comments>
		<pubDate>Sat, 29 May 2010 22:10:56 +0000</pubDate>
		<dc:creator>Flo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[hands-on security]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://beuwolf.wordpress.com/?p=164</guid>
		<description><![CDATA[Have you ever been afraid of loosing your laptop and -- even more important -- revealing the stored data to the finder, including private pictures, passwords etc. You can't avoid loosing the device, but you can prevent the revelation. And you can not imagine, how easy it is to fully encrypt your Windows system using TrueCrypt!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beuwolf.wordpress.com&amp;blog=8132258&amp;post=164&amp;subd=beuwolf&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using a fully encryped Linux system on my laptop for quite a while now. My (windows-driven) desktop, however, was still partly unencrypted. Of course, most of my private data was stored on a TrueCrypt encrypted partition. Windows itself, as well as some of my programs (mainly games), still resided unencrypted on several partitions. This was mainly due to my expectation of a somewhat huge perfomance loss, if all that data had been encrypted, too.</p>
<p>Quite a time ago when I read how easy Truecrypt would offer complete system encryption, I decided to do some benchmarks. As I was especially afraid of performance loss in Games I looked around for some benchmark demos. These results do NOT represent the games I play <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<table>
<tbody>
<tr>
<th></th>
<th>Devil May Cry 4 Benchmark Demo</th>
<th>Crysis Demo</th>
<th>Anno 1404</th>
</tr>
<tr>
<td>unencrypted</td>
<td>66.12 / 43.91 / 72.21 / 41.32</td>
<td>31.89 / 34.23 / 34.10 / 34.76</td>
<td>8</td>
</tr>
<tr>
<td>encrypted</td>
<td>65.69 / 43.75 / 69.15 / 43.75</td>
<td>30.99 / 35.50 / 35.58 / 34.59</td>
<td>8</td>
</tr>
</tbody>
</table>
<p><strong>Atto Disk Benchmark 2.46</strong></p>
<table>
<tbody>
<tr>
<td>
<p><div id="attachment_196" class="wp-caption alignnone" style="width: 246px"><a href="http://beuwolf.files.wordpress.com/2010/05/c_unenc.jpg"><img class="size-medium wp-image-196" title="c_unenc" src="http://beuwolf.files.wordpress.com/2010/05/c_unenc.jpg?w=236&#038;h=300" alt="" width="236" height="300" /></a><p class="wp-caption-text">Drive C unencrypted</p></div></td>
<td>
<p><div id="attachment_195" class="wp-caption alignnone" style="width: 246px"><a href="http://beuwolf.files.wordpress.com/2010/05/c_enc.jpg"><img class="size-medium wp-image-195" title="c_enc" src="http://beuwolf.files.wordpress.com/2010/05/c_enc.jpg?w=236&#038;h=300" alt="" width="236" height="300" /></a><p class="wp-caption-text">Drive C encrypted</p></div></td>
</tr>
</tbody>
</table>
<p>Based on the results of these benchmarks, you can see mainly two things:</p>
<ul>
<li>I&#8217;ve got pretty old and slow hardware.</li>
<li>There is no performance loss. Not even in games.</li>
</ul>
<p>After having done these benchmarks, there was only one single question remaining: What is the reason for my desktop to still be unencrypted, if a) there is no disadvantage and b) the encryption is that easy? Right, there was no reason, and so I encrypted my whole system drive.</p>
<p>This is what I want you to do now, too. But let me start explaining, why you should even think about encrypting your computer: You don&#8217;t have anything to hide? Really? Okay, go! Really. I don&#8217;t wan&#8217;t to explain everything to you. Maybe you really don&#8217;t have to encrypt your Desktop system (as long as you do not fear the police or your family). However, an unencrypted laptop is an absolute no go.</p>
<p>If you loose it, you do not only loose a device, but also valuable data. What data? For example your stored WiFi passwords, maybe even more passwords stored in your browser. What about your private documents? Do you want everybody to be able to read them? What about sensitive data from your company (that shouldn&#8217;t reside on your private laptop!)?</p>
<p>If you still don&#8217;t care, it&#8217;s okay. It&#8217;s not my problem. Otherwise, here&#8217;s what to do:</p>
<p>First of all: Make some <strong>backups</strong>. There shouldn&#8217;t be any problems and I didn&#8217;t experience any, but there *could* be some. And backups are always good (when did you make your last?)</p>
<p>In case you are still using Windows XP or 2003: TrueCrypt cannot handle logical partitions. So you can either only encrypt your System Partition or get rid of those partitions. In Windows Vista/7 there is no such limitation any more.</p>
<p>For almost every click you do, TrueCrypt provides detailed information on what you are about to do. Make sure you understand them, before proceeding. I do NOT take responsibility for any damage occurring from following this tutorial. Asking stupid questions beforehand is better than asking stupid questions afterwards <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  And there are no stupid questions anyway&#8230;</p>
<div id="attachment_199" class="wp-caption alignnone" style="width: 310px"><a href="http://beuwolf.files.wordpress.com/2010/05/tc1.jpg"><img class="size-medium wp-image-199" title="tc1" src="http://beuwolf.files.wordpress.com/2010/05/tc1.jpg?w=300&#038;h=254" alt="" width="300" height="254" /></a><p class="wp-caption-text">Open TrueCrypt and select System-&gt;Encrypt System Partition/Drive</p></div>
<div id="attachment_200" class="wp-caption alignnone" style="width: 310px"><a href="http://beuwolf.files.wordpress.com/2010/05/tc2.jpg"><img class="size-medium wp-image-200" title="tc2" src="http://beuwolf.files.wordpress.com/2010/05/tc2.jpg?w=300&#038;h=180" alt="" width="300" height="180" /></a><p class="wp-caption-text">You don&#039;t want a hidden OS for now <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p></div>
<div id="attachment_201" class="wp-caption alignnone" style="width: 310px"><a href="http://beuwolf.files.wordpress.com/2010/05/tc3.jpg"><img class="size-medium wp-image-201" title="tc3" src="http://beuwolf.files.wordpress.com/2010/05/tc3.jpg?w=300&#038;h=180" alt="" width="300" height="180" /></a><p class="wp-caption-text">No bit will remain unencrypted</p></div>
<div id="attachment_202" class="wp-caption alignnone" style="width: 310px"><a href="http://beuwolf.files.wordpress.com/2010/05/tc4.jpg"><img class="size-medium wp-image-202" title="tc4" src="http://beuwolf.files.wordpress.com/2010/05/tc4.jpg?w=300&#038;h=71" alt="" width="300" height="71" /></a><p class="wp-caption-text">A little warning for XP/2k3 users: TrueCrypt doesn&#039;t support logical paritions for those OS</p></div>
<div id="attachment_203" class="wp-caption alignnone" style="width: 310px"><a href="http://beuwolf.files.wordpress.com/2010/05/tc5.jpg"><img class="size-medium wp-image-203" title="tc5" src="http://beuwolf.files.wordpress.com/2010/05/tc5.jpg?w=300&#038;h=180" alt="" width="300" height="180" /></a><p class="wp-caption-text">Read the text. If you have such tools, you should probably select &quot;No&quot; here</p></div>
<div id="attachment_205" class="wp-caption alignnone" style="width: 310px"><a href="http://beuwolf.files.wordpress.com/2010/05/tc7.jpg"><img class="size-medium wp-image-205" title="tc7" src="http://beuwolf.files.wordpress.com/2010/05/tc7.jpg?w=300&#038;h=180" alt="" width="300" height="180" /></a><p class="wp-caption-text">Usually these defaults are a good choice. Select &quot;Benchmark&quot; to test the algorithms</p></div>
<div id="attachment_207" class="wp-caption alignnone" style="width: 310px"><a href="http://beuwolf.files.wordpress.com/2010/05/tc9.jpg"><img class="size-medium wp-image-207" title="tc9" src="http://beuwolf.files.wordpress.com/2010/05/tc9.jpg?w=300&#038;h=213" alt="" width="300" height="213" /></a><p class="wp-caption-text">You probably want to go for AES. Especially if you own a more recent Intel CPU offering hardware acceleration</p></div>
<div id="attachment_208" class="wp-caption alignnone" style="width: 310px"><a href="http://beuwolf.files.wordpress.com/2010/05/tc10.jpg"><img class="size-medium wp-image-208" title="tc10" src="http://beuwolf.files.wordpress.com/2010/05/tc10.jpg?w=300&#038;h=180" alt="" width="300" height="180" /></a><p class="wp-caption-text">Choose your password. It should be hard to guess. However, you shouldn&#039;t forget it!</p></div>
<div id="attachment_209" class="wp-caption alignnone" style="width: 310px"><a href="http://beuwolf.files.wordpress.com/2010/05/tc11.jpg"><img class="size-medium wp-image-209" title="tc11" src="http://beuwolf.files.wordpress.com/2010/05/tc11.jpg?w=300&#038;h=180" alt="" width="300" height="180" /></a><p class="wp-caption-text">Depending on your paranoia you can select here how to overwrite old data</p></div>
<div id="attachment_212" class="wp-caption alignnone" style="width: 310px"><a href="http://beuwolf.files.wordpress.com/2010/05/tc11b.jpg"><img class="size-medium wp-image-212" title="tc11b" src="http://beuwolf.files.wordpress.com/2010/05/tc11b.jpg?w=300&#038;h=180" alt="" width="300" height="180" /></a><p class="wp-caption-text">A rescue disk is created. You can either burn it or mount it with Daemon-Tools to let TrueCrypt verify it. The disk is needed in case you need to unencrypt the device without booting Windows. However, this is NOT a way to get into the system without password.</p></div>
<div id="attachment_210" class="wp-caption alignnone" style="width: 310px"><a href="http://beuwolf.files.wordpress.com/2010/05/tc12.jpg"><img class="size-medium wp-image-210" title="tc12" src="http://beuwolf.files.wordpress.com/2010/05/tc12.jpg?w=300&#038;h=180" alt="" width="300" height="180" /></a><p class="wp-caption-text">Before anything is encrypted, TrueCrypt performs a pretest where your system is rebooted.</p></div>
<div id="attachment_211" class="wp-caption alignnone" style="width: 310px"><a href="http://beuwolf.files.wordpress.com/2010/05/tc13.jpg"><img class="size-medium wp-image-211" title="tc13" src="http://beuwolf.files.wordpress.com/2010/05/tc13.jpg?w=300&#038;h=180" alt="" width="300" height="180" /></a><p class="wp-caption-text">After rebooting Windows and starting TrueCrypt, TrueCrypt asks to encrypt the device. My 250 gig drive took about 3 hours.</p></div>
<div id="attachment_198" class="wp-caption alignnone" style="width: 310px"><a href="http://beuwolf.files.wordpress.com/2010/05/tc14.jpg"><img class="size-medium wp-image-198" title="tc14" src="http://beuwolf.files.wordpress.com/2010/05/tc14.jpg?w=300&#038;h=53" alt="" width="300" height="53" /></a><p class="wp-caption-text">Finished! I hope you still remember your password?!</p></div>
<p>My system has been encrypted for a few months now and I had no problems yet. Just the shock, when I saw the password prompt after the first night when I had problems remembering the password <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Moreover, it&#8217;s even more convenient as I don&#8217;t forget to mount the data partition any more&#8230;</p>
<p>The only real limitation I experienced is a little more CPU load during large copy actions which however is obvious and not that bad. For most of the data I&#8217;ve had this before on my encrypted partition, anyway.</p>
<p>One last advise: DO IT!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beuwolf.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beuwolf.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/beuwolf.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/beuwolf.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/beuwolf.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/beuwolf.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/beuwolf.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/beuwolf.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/beuwolf.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/beuwolf.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/beuwolf.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/beuwolf.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/beuwolf.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/beuwolf.wordpress.com/164/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beuwolf.wordpress.com&amp;blog=8132258&amp;post=164&amp;subd=beuwolf&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beuwolf.wordpress.com/2010/05/30/hands-on-security-for-beginners-windows-system-encryption-with-truecrypt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f4edf7676a62d132bf3fdef5eec8748b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Flo</media:title>
		</media:content>

		<media:content url="http://beuwolf.files.wordpress.com/2010/05/c_unenc.jpg?w=236" medium="image">
			<media:title type="html">c_unenc</media:title>
		</media:content>

		<media:content url="http://beuwolf.files.wordpress.com/2010/05/c_enc.jpg?w=236" medium="image">
			<media:title type="html">c_enc</media:title>
		</media:content>

		<media:content url="http://beuwolf.files.wordpress.com/2010/05/tc1.jpg?w=300" medium="image">
			<media:title type="html">tc1</media:title>
		</media:content>

		<media:content url="http://beuwolf.files.wordpress.com/2010/05/tc2.jpg?w=300" medium="image">
			<media:title type="html">tc2</media:title>
		</media:content>

		<media:content url="http://beuwolf.files.wordpress.com/2010/05/tc3.jpg?w=300" medium="image">
			<media:title type="html">tc3</media:title>
		</media:content>

		<media:content url="http://beuwolf.files.wordpress.com/2010/05/tc4.jpg?w=300" medium="image">
			<media:title type="html">tc4</media:title>
		</media:content>

		<media:content url="http://beuwolf.files.wordpress.com/2010/05/tc5.jpg?w=300" medium="image">
			<media:title type="html">tc5</media:title>
		</media:content>

		<media:content url="http://beuwolf.files.wordpress.com/2010/05/tc7.jpg?w=300" medium="image">
			<media:title type="html">tc7</media:title>
		</media:content>

		<media:content url="http://beuwolf.files.wordpress.com/2010/05/tc9.jpg?w=300" medium="image">
			<media:title type="html">tc9</media:title>
		</media:content>

		<media:content url="http://beuwolf.files.wordpress.com/2010/05/tc10.jpg?w=300" medium="image">
			<media:title type="html">tc10</media:title>
		</media:content>

		<media:content url="http://beuwolf.files.wordpress.com/2010/05/tc11.jpg?w=300" medium="image">
			<media:title type="html">tc11</media:title>
		</media:content>

		<media:content url="http://beuwolf.files.wordpress.com/2010/05/tc11b.jpg?w=300" medium="image">
			<media:title type="html">tc11b</media:title>
		</media:content>

		<media:content url="http://beuwolf.files.wordpress.com/2010/05/tc12.jpg?w=300" medium="image">
			<media:title type="html">tc12</media:title>
		</media:content>

		<media:content url="http://beuwolf.files.wordpress.com/2010/05/tc13.jpg?w=300" medium="image">
			<media:title type="html">tc13</media:title>
		</media:content>

		<media:content url="http://beuwolf.files.wordpress.com/2010/05/tc14.jpg?w=300" medium="image">
			<media:title type="html">tc14</media:title>
		</media:content>
	</item>
		<item>
		<title>Hands-on security for beginners: SSL-encrypted Google search without revealing too much to Google</title>
		<link>http://beuwolf.wordpress.com/2010/05/29/hands-on-security-for-beginners-ssl-encrypted-google-search-without-revealing-too-much-to-google/</link>
		<comments>http://beuwolf.wordpress.com/2010/05/29/hands-on-security-for-beginners-ssl-encrypted-google-search-without-revealing-too-much-to-google/#comments</comments>
		<pubDate>Sat, 29 May 2010 20:47:53 +0000</pubDate>
		<dc:creator>Flo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[hands-on security]]></category>
		<category><![CDATA[privacy]]></category>

		<guid isPermaLink="false">http://beuwolf.wordpress.com/?p=188</guid>
		<description><![CDATA[A few days ago, Google announced a new service: Google SSL. Using the SSL encrypted version of Google&#8217;s search will make your queries no longer look like GET /search?hl=en&#38;source=hp&#38;q=Foobar&#38;aq=f&#38;aqi=g10&#38;aql=&#38;oq=&#38;gs_rfai= to everyone in between you and Google&#8217;s server (e.g. your admin, your ISP, the script-kiddie abusing your unencrypted WiFi), but rather something like: C955C288BA1F561B841074546CBFA3D9723B1F2097E07FB8... Of course, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beuwolf.wordpress.com&amp;blog=8132258&amp;post=188&amp;subd=beuwolf&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A few days ago, Google announced a new service: <a title="Google" href="https://www.google.com/">Google SSL</a>. Using the SSL encrypted version of Google&#8217;s search will make your queries no longer look like</p>
<p><code>GET /search?hl=en&amp;source=hp&amp;q=<strong>Foobar</strong>&amp;aq=f&amp;aqi=g10&amp;aql=&amp;oq=&amp;gs_rfai=</code></p>
<p>to everyone in between you and Google&#8217;s server (e.g. your admin, your ISP, the script-kiddie abusing your unencrypted WiFi), but rather something like:</p>
<p><code>C955C288BA1F561B841074546CBFA3D9723B1F2097E07FB8...</code></p>
<p>Of course, SSL can be defeated in several ways, but nonetheless, this is a very easy way to enhance your privacy&#8230;</p>
<p>Uh, wait? Did I just mention &#8220;privacy&#8221; while talking about Google? Well, yes. Despite all the encryption stuff, Google still knows, what you are looking for. Obvious? Yes. Inevitable? No. There is a way to use Google&#8217;s search algorithm (which is probably one of the best) without revealing your identity to Google.</p>
<p>This is done by using a proxy service like <a title="Scroogle" href="http://www.scroogle.org/">Scroogle</a>. Instead of sending your queries directly to Google, you ask <a title="Scroogle Scraper" href="http://www.scroogle.org/scraper.html">Scroogle to do that.</a> Scroogle then forwards your request to Google&#8217;s servers, but drops information about you (things like your browser, your location, &amp;c.). It then returns the results of the search to your computer, but does not save any other data like cookies to later identify you again. Google only sees a lot of requests from Scroogle, but doesn&#8217;t know, who is *really* searching anything &#8212; pretty cool, isn&#8217;t it?</p>
<p>Furthermore, Scroogle also offers an <a title="Scroogle Scraper" href="https://ssl.scroogle.org/">SSL encrypted service</a>. By using POST instead of GET for the search it also avoids website owners to see with which search terms you found their site: Instead of a log entry like</p>
<p><code>http://www.scroogle.org/cgi-bin/nbbw.cgi?Gw=Foobar</code></p>
<p>they only see that you came from Scroogle, not knowing your exact search terms:</p>
<p><code>http://www.scroogle.org/cgi-bin/nbbw.cgi</code></p>
<p>If you want to tell them, what you were looking for, or you simply want to bookmark a search, you can use the <a title="Scroogle Scraper" href="http://scroogle.org/scget.html">GET version of Scroogle</a> (at the bottom). For more detailed information about POST and GET have a look at <a title="Scroogle Scraper" href="http://scroogle.org/scget.html">Scroogle&#8217;s Explanation</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beuwolf.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beuwolf.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/beuwolf.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/beuwolf.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/beuwolf.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/beuwolf.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/beuwolf.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/beuwolf.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/beuwolf.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/beuwolf.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/beuwolf.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/beuwolf.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/beuwolf.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/beuwolf.wordpress.com/188/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beuwolf.wordpress.com&amp;blog=8132258&amp;post=188&amp;subd=beuwolf&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beuwolf.wordpress.com/2010/05/29/hands-on-security-for-beginners-ssl-encrypted-google-search-without-revealing-too-much-to-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f4edf7676a62d132bf3fdef5eec8748b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Flo</media:title>
		</media:content>
	</item>
		<item>
		<title>Upgrading Pidgin and libpurple in Ubuntu 9.04</title>
		<link>http://beuwolf.wordpress.com/2009/12/11/upgrading-pidgin-and-libpurple-in-ubuntu-9-04/</link>
		<comments>http://beuwolf.wordpress.com/2009/12/11/upgrading-pidgin-and-libpurple-in-ubuntu-9-04/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 13:10:22 +0000</pubDate>
		<dc:creator>Flo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Pidgin]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://beuwolf.wordpress.com/?p=148</guid>
		<description><![CDATA[I&#8217;ve been using Pidgin for quite a while now, but just a few days came across a problem: The current version of Pidgin and libpurple in the repository of Ubuntu 9.04 (2.6.3) can&#8217;t handle offline messages from ICQ users (I&#8217;m usually not a big fan of ICQ, so it took a time to get notice [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beuwolf.wordpress.com&amp;blog=8132258&amp;post=148&amp;subd=beuwolf&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using Pidgin for quite a while now, but just a few days came across a problem: The current version of Pidgin and libpurple in the repository of Ubuntu 9.04 (2.6.3) <a title="#10563: Offline messages are not shown" href="http://old.nabble.com/-10563:-Offline-messages-are-not-shown-td26000466.html">can&#8217;t handle offline messages from ICQ users</a> (I&#8217;m usually not a big fan of ICQ, so it took a time to get notice about it). Luckily, the messages, you haven&#8217;t received aren&#8217;t gone, but still stored on the ICQ servers (luckily?!), so you&#8217;ll get them, as soon as you log on with the newer version.</p>
<p>Unfortunately, I was about to get an important message&#8230; and was offline at that time. Therefore, I was searching for a (stupid^^) way to upgrade Pidgin &#8212; withouth adding the repositories of 9.10.</p>
<p>I finally decided, it would be the best to <a title="Download Pidgin Source" href="http://pidgin.im/download/source/">compile Pidgin myself</a>&#8230; and didn&#8217;t expect the problems I was going to have:</p>
<p><span style="text-decoration:line-through;">After installing Pidgin 2.6.4, the pidgin-plugin-pack, which I need for some reasons, wasn&#8217;t working. So I spent a whole evening, installing and removing packages from the repository and from source, until I finally managed to have Pidgin 2.6.4 with a working plugin-pack &#8212; unfortunately, I couldn&#8217;t remember the way and my system was in RAM&#8230; and everything gone afterwards <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </span></p>
<p><span style="text-decoration:line-through;"> </span></p>
<p><span style="text-decoration:line-through;">As I found no way to get there again, I decided to try changing the libpurple withouth installing a newer version of Pidging &#8212; not surprisingly: It didn&#8217;t work.</span></p>
<p><span style="text-decoration:line-through;"> </span></p>
<p><span style="text-decoration:line-through;">However, after installing Pidgin 2.6.4 from Sources (without uninstalling anything), everything was working: Receiving offline messages as well as the plugin-pack <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </span></p>
<p><span style="text-decoration:line-through;"> </span></p>
<p><span style="text-decoration:line-through;">This is probably the worst solution ever and maybe not even worth to be called &#8220;work-around&#8221;, but I hope, it will be enough until I upgrade the system over the Christmas holidays.</span></p>
<p>Just forget about it. It&#8217;s much easier to just copy the plugins (the ones I needed were in <em>/usr/lib/pidgin/</em>, uninstall the plugin-pack und copy the files back. This works just as fine and has the advantage that it doesn&#8217;t screw up your package management. Thank you to my brain, which started working again -.-</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beuwolf.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beuwolf.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/beuwolf.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/beuwolf.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/beuwolf.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/beuwolf.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/beuwolf.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/beuwolf.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/beuwolf.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/beuwolf.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/beuwolf.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/beuwolf.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/beuwolf.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/beuwolf.wordpress.com/148/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beuwolf.wordpress.com&amp;blog=8132258&amp;post=148&amp;subd=beuwolf&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beuwolf.wordpress.com/2009/12/11/upgrading-pidgin-and-libpurple-in-ubuntu-9-04/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f4edf7676a62d132bf3fdef5eec8748b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Flo</media:title>
		</media:content>
	</item>
		<item>
		<title>Opera meets HFU</title>
		<link>http://beuwolf.wordpress.com/2009/11/09/opera-meets-hfu/</link>
		<comments>http://beuwolf.wordpress.com/2009/11/09/opera-meets-hfu/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 20:00:30 +0000</pubDate>
		<dc:creator>Flo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[HFU]]></category>
		<category><![CDATA[Opera]]></category>

		<guid isPermaLink="false">http://beuwolf.wordpress.com/?p=134</guid>
		<description><![CDATA[Last thursday, the Opera University Tour reached Furtwangen, where I am studying at the Hochschule Furtwangen University. Luckily I heard about this by some student as there were *no* posters or whatever promoting this event at all &#8211; except for a really small note on the university&#8217;s page. The talk itself was held by Patrick [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beuwolf.wordpress.com&amp;blog=8132258&amp;post=134&amp;subd=beuwolf&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last thursday, the <a title="Trains, planes and automobiles - German Uni Tour - Furtwangen 5 November 2009" href="http://my.opera.com/universitytours/blog/2009/11/07/german-uni-tour-furtwangen-5-november-2009">Opera University Tour reached Furtwangen</a>, where I am studying at the <a title="Welcome to Furtwangen University" href="http://www.hs-furtwangen.de/english/index_en.html">Hochschule Furtwangen University</a>. Luckily I heard about this by some student as there were *no* posters or whatever promoting this event at all &#8211; except for a really small note on the university&#8217;s page.</p>
<p>The talk itself was held by <a title="Patrick H. Lauke @ Twitter" href="http://twitter.com/patrick_h_lauke">Patrick H. Lauke</a> and was absolutely brilliant. Humorous, easy to follow, interesting and peppered with examples of the &#8220;sexy features&#8221;, that are about to come. It really seemed to be a look into the future of the Web.</p>
<p>The presentation opened with a little movie about working at Opera Software &#8211; guess what: I got a new favorite place to do my internship&#8230; now I just need the right marks. I was a little afraid that it will be a presentation about how cool Opera is (what would have been useless, as we all know that), but was all the more surprised as Patrick&#8217;s main topic was to point out the importance of open web standards, which he did for about 90 minutes. Always telling, how these standards could help you and me as a user, but also the web designers. Only the last roughly 20 minutes he showed some of the &#8220;sexy features&#8221; (he liked that one^^) of Opera, namely their <a title="Opera Widgets" href="http://widgets.opera.com/">widgets</a> as well as &#8220;<a title="Opera Unite" href="http://unite.opera.com/">Opera Unite</a>&#8220;.</p>
<p>A very big thank you to Patrick and his team for coming to Furtwangen as well as to everyone else making this fantastic event happen &#8211; even though it was of limited value <span style="text-decoration:line-through;">to me</span> for my studies, since I&#8217;m not studying anything related to media.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beuwolf.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beuwolf.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/beuwolf.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/beuwolf.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/beuwolf.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/beuwolf.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/beuwolf.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/beuwolf.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/beuwolf.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/beuwolf.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/beuwolf.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/beuwolf.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/beuwolf.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/beuwolf.wordpress.com/134/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beuwolf.wordpress.com&amp;blog=8132258&amp;post=134&amp;subd=beuwolf&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beuwolf.wordpress.com/2009/11/09/opera-meets-hfu/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f4edf7676a62d132bf3fdef5eec8748b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Flo</media:title>
		</media:content>
	</item>
		<item>
		<title>Bringing Backspace to Xfce4-terminal with screen</title>
		<link>http://beuwolf.wordpress.com/2009/10/13/bringing-backspace-to-xfce4-terminal-with-screen/</link>
		<comments>http://beuwolf.wordpress.com/2009/10/13/bringing-backspace-to-xfce4-terminal-with-screen/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 14:24:05 +0000</pubDate>
		<dc:creator>Flo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[note]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://beuwolf.wordpress.com/?p=101</guid>
		<description><![CDATA[For quite a long time I&#8217;ve been annoyed by the fact, that backspace isn&#8217;t working in GNU Screen when run in a Xfce4-terminal (instead of a backspace it was sending &#8220;^@&#8221;). Today, by accident, I stumbled upon a working solution: Just add the line bindkey -d ^@ stuff ^? to your .screenrc and restart your [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beuwolf.wordpress.com&amp;blog=8132258&amp;post=101&amp;subd=beuwolf&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For quite a long time I&#8217;ve been annoyed by the fact, that backspace isn&#8217;t working in GNU Screen when run in a Xfce4-terminal (instead of a backspace it was sending &#8220;^@&#8221;). Today, by accident, <a title="https://bugs.launchpad.net/xfce4-terminal/+bug/29787" href="https://bugs.launchpad.net/xfce4-terminal/+bug/29787/comments/16">I stumbled upon a working solution</a>:</p>
<p>Just add the line <code> bindkey -d ^@ stuff ^?</code> to your .screenrc and restart your screen sessions. I cannot judge the quality of this nor do I know the consequences, but it&#8217;s working.</p>
<p>Finally, I don&#8217;t have to look for an alternative of my terminal <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beuwolf.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beuwolf.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/beuwolf.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/beuwolf.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/beuwolf.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/beuwolf.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/beuwolf.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/beuwolf.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/beuwolf.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/beuwolf.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/beuwolf.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/beuwolf.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/beuwolf.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/beuwolf.wordpress.com/101/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beuwolf.wordpress.com&amp;blog=8132258&amp;post=101&amp;subd=beuwolf&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beuwolf.wordpress.com/2009/10/13/bringing-backspace-to-xfce4-terminal-with-screen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f4edf7676a62d132bf3fdef5eec8748b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Flo</media:title>
		</media:content>
	</item>
		<item>
		<title>poor auto-mounting with udev</title>
		<link>http://beuwolf.wordpress.com/2009/07/07/poor-automounting-with-udev/</link>
		<comments>http://beuwolf.wordpress.com/2009/07/07/poor-automounting-with-udev/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 22:51:45 +0000</pubDate>
		<dc:creator>Flo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[udev]]></category>

		<guid isPermaLink="false">http://beuwolf.wordpress.com/?p=53</guid>
		<description><![CDATA[How to create some poor auto-mounting on the console by using udev<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beuwolf.wordpress.com&amp;blog=8132258&amp;post=53&amp;subd=beuwolf&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Although I should learn for my ongoing exams I found a few moments to try getting auto-mounting on the console. (Note: This is rather a post for me to remember than anything useful <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  )</p>
<p>As I didn&#8217;t find a properly working solution for my minimal installation (some troubles with thunar and I wanted also for the console), I decided to do a poor alternative on my own. I tried to make it almost as convenient as in GNOME (or KDE&#8230;) as I was sick of always typing &#8220;sudo mount /dev/sd?1 /mnt&#8221; which also led to some troubles when using more than one stick.</p>
<p>It&#8217;s no more than two small scripts combined with two rules of <a title="udev" href="http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html">udev</a> (save as /etc/udev/rules/01-YOURNAME.rules and modify the script path):<br />
<code>BUS=="usb", KERNEL=="sd??", ACTION=="add", RUN+="/home/flo/.scripts/udev/mount.sh %k"<br />
BUS=="usb", KERNEL=="sd??", ACTION=="remove", RUN+="/home/flo/.scripts/udev/umount.sh %k"</code><br />
These lines execute mount.sh when attaching an USB device and execute umount.sh when removing it. &#8220;%k&#8221; gives the device name (e.g. sdb1) as parameter for the script.</p>
<p>mount.sh:</p>
<pre><code>#!/bin/bash
label=$(ls -l /dev/disk/by-label/ | grep $1)
if [ $? -eq 0 ]; then	#found the device
    label=$(echo $label | sed -e 's/.*:...//g' | sed -e 's/.-&gt;.*//g')
else
    label=$(ls -l /dev/disk/by-uuid | grep $1 | sed -e 's/.*:...//g' | sed 's/.-&gt;.*//g')
fi
mkdir /media/$label
mount /dev/$1 /media/$label -o sync,gid=46,umask=007

</code></pre>
<p>This script tries to find the label of the partition. If not possible it uses the UUID as a name for the mount directory, which is /media/{UUID|LABEL}. It finally mounts the device into this newly created folder, setting the &#8220;sync&#8221; option, which makes it save to remove the device without umounting it. &#8220;gid=46,umask=007&#8243; means, that only root and members of the group &#8220;plugdev&#8221; are allowed to acces the device &#8211; this is needed for FAT formated sticks.</p>
<p>umount.sh:</p>
<pre><code>#!/bin/bash
label=$(mount | grep $1 | sed -e 's/.*\/media\///g' | sed -e 's/.type.*//g' )
umount -l /dev/$1
rmdir /media/$label

</code></pre>
<p>This script umounts the device and removes the folder, that was created.</p>
<p><strong>Important note:</strong> These scripts should *not* be editable by users as they are executed with root rights &#8211; and therefor might be used to &#8220;hack&#8221; the system when modified!</p>
<p>I have no idea, how well these lines work with hard drives containing several partitions (I don&#8217;t have one here at the moment) or with encrypted partitions. I&#8217;ll have a look at that after the exams (in roughly 2 weeks).</p>
<p>As always: Use with care, I&#8217;m not responsible for any harm <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beuwolf.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beuwolf.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/beuwolf.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/beuwolf.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/beuwolf.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/beuwolf.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/beuwolf.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/beuwolf.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/beuwolf.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/beuwolf.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/beuwolf.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/beuwolf.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/beuwolf.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/beuwolf.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beuwolf.wordpress.com&amp;blog=8132258&amp;post=53&amp;subd=beuwolf&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beuwolf.wordpress.com/2009/07/07/poor-automounting-with-udev/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f4edf7676a62d132bf3fdef5eec8748b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Flo</media:title>
		</media:content>
	</item>
		<item>
		<title>print PDFs as DIN A5 books</title>
		<link>http://beuwolf.wordpress.com/2009/06/30/print-as-din-a5-books/</link>
		<comments>http://beuwolf.wordpress.com/2009/06/30/print-as-din-a5-books/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 21:01:47 +0000</pubDate>
		<dc:creator>Flo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://beuwolf.wordpress.com/?p=34</guid>
		<description><![CDATA[Save money by printing four pages on one sheet of paper - by keeping a book-like format.
And: Automatically download and merge complete books from SpringerLink.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beuwolf.wordpress.com&amp;blog=8132258&amp;post=34&amp;subd=beuwolf&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>During the last days I completely rewrote a little script I&#8217;ve been using for a few weeks now. However, it was not very comfortable and also performed very poorly.</p>
<p>While rewrtiting, I &#8220;(re-)developed&#8221; the algorithm, changed the underlying programs and added a few options, so I belive it&#8217;s now ready for being used.</p>
<p>The whole idea behind the script is that I wanted to save money and print a usual full size (DIN A4) PDF in half size, i.e. in DIN A5, which is also more handy. In addition to that, page 2 (4, n) should be on the back of 1 (3, n-1) why it was not enough to just change the printer settings to print multiple pages. Of course, this requires duplex printing! Finally, it should be possible to cut the papers in the middle and just put one stack on the other to have the correct order.</p>
<p><code>type        | front(back) | front(back)<br />
printer  |    1 (4)    | 2 (3)<br />
still bad|    1 (2)    | 3 (4)    a lot of manual reordering necessary<br />
script   |    1 (2)    | n/2+1 (n/2 +2) </code></p>
<p>In this rewritten version I also added some support for downloading and merging chapters from <a title="SpringerLink Home" href="http://www.springerlink.com">SpringerLink</a> (note: SpringerLink has limited access. If you are not allowed to use the ressources, the script won&#8217;t help you!). You can now download all chapters automatically by giving only the URL of the book. If you want, you can then merge those chapters into a single PDF file by inserting blank pages (if necessary) to make the chapters start on even pages.</p>
<p>However, it is still not very comfortable, but works quite well and fast: Reordering a whole book now takes about 10 seconds and results in a final size of about 10MB compared to about 5 minutes and several hundred MB before. If you experience any problems, just drop me a message &#8211; or try to fix it yourself <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a title="create DIN A5 books" href="http://olf.bplaced.net/scripts/index.php?action=display&amp;file=scripts/din5NG.sh">Enjoy it</a> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beuwolf.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beuwolf.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/beuwolf.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/beuwolf.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/beuwolf.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/beuwolf.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/beuwolf.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/beuwolf.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/beuwolf.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/beuwolf.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/beuwolf.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/beuwolf.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/beuwolf.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/beuwolf.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beuwolf.wordpress.com&amp;blog=8132258&amp;post=34&amp;subd=beuwolf&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beuwolf.wordpress.com/2009/06/30/print-as-din-a5-books/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f4edf7676a62d132bf3fdef5eec8748b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Flo</media:title>
		</media:content>
	</item>
		<item>
		<title>Boot Ubuntu into RAM</title>
		<link>http://beuwolf.wordpress.com/2009/06/22/boot-ubuntu-into-ram/</link>
		<comments>http://beuwolf.wordpress.com/2009/06/22/boot-ubuntu-into-ram/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 20:20:59 +0000</pubDate>
		<dc:creator>Flo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://beuwolf.wordpress.com/2009/06/22/boot-ubuntu-into-ram/</guid>
		<description><![CDATA[Creating a compressed non-Live-CD Linux to be booted into RAM for speed and silence.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beuwolf.wordpress.com&amp;blog=8132258&amp;post=18&amp;subd=beuwolf&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After installing a clean and minimal Ubuntu 9.04, I was looking for a way to run in completely from RAM. There are three (maybe four) reasons for me to do this:</p>
<ul>
<li>The system is absolutely silent when the hard disk is shut down (Yep, I could have bought a SSD, but this would be too expensive)</li>
<li>The system consumes less power &#8211; my battery now lasts about 6 hours (having turned WLAN off, backlight down &amp;c. of course)</li>
<li>The system is fast, the programs start real fast &#8211; although they usually also do when starting them the second time</li>
<li>And, last but definitely not least: I haven&#8217;t found something like that by now (Just let me believe this^^)</li>
<li>Oh, and fifth: You can play around and try some things, without destroying your system as -of course!- everything has gone after rebooting.</li>
</ul>
<p>I found two different approaches on this, which both did not satisfy me: Modifying a Live-CD to suit your needs is the <a title="System von RAM booten" href="http://wiki.ubuntuusers.de/Baustelle/System_von_RAM_booten">most</a> <a title="Booting Ubuntu To RAM" href="https://wiki.ubuntu.com/BootToRAM">popular one</a>. However, this will always be a Live-CD in the end, resulting in a long boot time due to hardware detection. The other idea was more promising, copying a real (i.e. installed) <a title="HOW-TO: Boot Linux into RAM for silence and speed" href="http://www.silentpcreview.com/forums/viewtopic.php?t=48568&amp;start=0&amp;postdays=0&amp;postorder=asc&amp;highlight=ramdiskhttp://">system into RAM</a>, but I wanted to improve this. Although 3GiB seems quite a lot of RAM, it becomes very small if you try to put an uncompressed System into it. As the Live-CDs contain compressed systems, I also wanted it. It thought, this would be not a problem&#8230; It took longer than I expected.</p>
<p>Basic idea is to create a <a title="SQUASHFS - A squashed read-only filesystem for Linux" href="http://squashfs.sourceforge.net/">squashFS</a> compressed image (compression ratio is about 2-3:1) of the system (excluding as most as possible), which will be loaded into RAM by the initrd and looped as &#8220;/&#8221;. As Linux can&#8217;t deal with a whole read-only file system and squashFS is exactly that, <a title="http://aufs.sourceforge.net/" href="http://aufs.sourceforge.net/">Another UnionFS </a> (aufs) is needed to pretend write access.</p>
<p>So, here in short is, what need to be done (as far as I remember):<br />
You need to compile support for SquashFS and aufs into the kernel (This should be also work with UnionFS, but I didn&#8217;t find a patch for the kernel at the time, I did it). Keep in mind, that the SquashFS of the kernel (2.6.29.1 I used) is version 4, while the version of squashfs-tools (to create the image) is 3.x in Ubuntu 9.04, so you&#8217;ll need to manually install a newer version of the tools.</p>
<p>After having done that, you can prepare some files, which will be need to be modified for the usage in the RAM system:<br />
Remove the &#8220;/&#8221; line from <code>/etc/fstab</code> and replace it with <code>"none / tmpfs defaults 0 0"</code> (after creating the image, copy back the old version.)</p>
<p>Well, this was the easy part. The next thing is to modify the scripts being executed during the boot process. In my Ubuntu this was <code>/usr/share/initramfs-tools/scripts/local</code>. I have uploaded a<a title="modified /usr/share/initramfs-tools/scripts/local for copying squashFS image into RAM" href="http://olf.bplaced.net/scripts/index.php?action=display&amp;file=scripts/initramfs.squashfs"> modified version with a few comments for Ubuntu</a>. If you&#8217;re not using Ubuntu, figure out, where your hard disk is mounted and replace it by mounting, copying and unmounting like in my example (NB: I don&#8217;t know, how far this works for other distributions). Again: Just modify this file for creating the RAM system. Then you should copy the old file back again, as you won&#8217;t be able to boot your &#8220;normal&#8221; system otherwise.</p>
<p>I also experienced some problems when checking the file system, so I turned it off in <code>/etc/init.d/checkroot.sh</code> by inserting a <code>"fastboot=yes"</code> just before checking it.</p>
<p>Now, it&#8217;s time to create the initrd (you&#8217;d better not overwrite the original one!):<br />
<code># mkinitramfs -o /boot/initrd.img.squashfs</code></p>
<p>I have uploaded <a title="script to create the live system image" href="http://olf.bplaced.net/scripts/index.php?action=display&amp;file=scripts/createlivesys.sh">another script to create the live system image</a> (You can also see, how the squashFS is created). Unfortunately, due to its design, this script can only create images of systems, that are (uncompressed) not larger than your RAM size. I hope to fix this after my exams in a few weeks.<br />
As you might recognize, there is still an option to create the tar-archive. If you want to use this (why would you?^^), please refer to the <a title="HOW-TO: Boot Linux into RAM for silence and speed" href="http://www.silentpcreview.com/forums/viewtopic.php?t=48568&amp;start=0&amp;postdays=0&amp;postorder=asc&amp;highlight=ramdiskhttp://">tutorial mentioned above</a>.</p>
<p>Don&#8217;t forget to create a new entry in your boot loader pointing at the new kernel and initrd.</p>
<p>I hope, I didn&#8217;t miss a point. Nevertheless: I&#8217;m not responsible for any damage, think before you act (this is, why this isn&#8217;t a step-by-step tutorial) and have a Rescue-CD around <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Ah, I still forgot: Of course, all data -if not saved somewhere else- will be lost after turning the system off. Also, sometimes (I&#8217;d guess about 5-10%), the harddisk wakes up immediately after shuting it down via &#8220;hdparm -Y&#8221;. I don&#8217;t know why this happens or how to avoid it. I believe, I have read something about a bug in hdparm, but I cannot remember <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beuwolf.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beuwolf.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/beuwolf.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/beuwolf.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/beuwolf.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/beuwolf.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/beuwolf.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/beuwolf.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/beuwolf.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/beuwolf.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/beuwolf.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/beuwolf.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/beuwolf.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/beuwolf.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beuwolf.wordpress.com&amp;blog=8132258&amp;post=18&amp;subd=beuwolf&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beuwolf.wordpress.com/2009/06/22/boot-ubuntu-into-ram/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f4edf7676a62d132bf3fdef5eec8748b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Flo</media:title>
		</media:content>
	</item>
		<item>
		<title>A &#8220;presenter console&#8221; for LaTeX</title>
		<link>http://beuwolf.wordpress.com/2009/06/11/a-presenter-console-for-latex/</link>
		<comments>http://beuwolf.wordpress.com/2009/06/11/a-presenter-console-for-latex/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 17:17:36 +0000</pubDate>
		<dc:creator>Flo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[presenting]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://beuwolf.wordpress.com/?p=6</guid>
		<description><![CDATA[Use LaTeX for presentations and having a "presenter console" like overview of notes and slides on the laptop.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beuwolf.wordpress.com&amp;blog=8132258&amp;post=6&amp;subd=beuwolf&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:left;">I used to make my presentations with LaTeX (and the <a title="LaTeX Beamer Class Homepage" href="http://latex-beamer.sourceforge.net/">LaTeX Beamer Class</a>) for quite a long time, until I tried the &#8220;presenter console&#8221; of OpenOffice&#8217;s Impress. It offers you the ability to see the current slide as well as your notes, a preview of the next slide and the duration of your presentation on your screen, while on the beamer only the presentation is displayed as usual. I believe MS Office has something equivalent, but I never tried it, though.</p>
<p style="text-align:left;">Anyway, while I really fell in love with this feature, I couldn&#8217;t get used to creating my presentations with OOo. I just wanted my LaTeX back and therefor searched for a possibility to have similar features when presenting a pdf file.</p>
<p style="text-align:left;">I found two ways to achieve this:</p>
<p style="text-align:left;">First: Create an extra wide presentation to display one part on the beamer, which contains the information for the audience, while the other half (or quarter&#8230;) contains your notes and is only being displayed on your screen.</p>
<p style="text-align:left;">The second one (found on <a title="mikas blog &gt;&gt; Blog Archive &gt;&gt; GLT08: Sysadmin Talk" href="http://michael-prokop.at/blog/2008/05/02/glt08-sysadmin-talk/">mikas blog</a>) is a bit more complex: Use <a title="Impress!ve Homepage" href="http://impressive.sourceforge.net/index.php">Impress!ve</a> (formerly known as keyjnote) to display your presentation with xpdf to display your notes (and previews). Impressive gives you the ability to execute a python script when entering a new slide. Combined with xpdf&#8217;s &#8220;-remote&#8221; option you can use this to display your notes. The only thing to keep in mind is, that each slide will need a associated page in your notes. Whenever you switch to another slide in Impressive, it will also go to the correct page in your notes.<br />
Impressive also gives you the ability to turn the beamer black/white, show an overview of all slides and even some nice effects when changing slides &#8211; impressive&#8230;</p>
<p style="text-align:left;">I decided to use the last idea as it seemed more flexible to me concerning different screen sizes and also allows me to create my notes using OpenOffice. Furthermore, I did not only want to have the notes on my screen, but also &#8211; just as in the &#8220;original&#8221; &#8211; the current slide, a preview and the time, so the notes mustn&#8217;t take all space.</p>
<p style="text-align:left;">I chose to use three xpdf windows (one large one for notes, a smaller one for the current slide, an even smaller one for the next slide and one with a simple stopwatch): (screenshot coming soon)</p>
<p style="text-align:left;">Unfortunately, there was (and somehow still is) a minor problem: You do not see the effects of Impressive on your screen, as there is only a static pdf displayed. As a result, if you want to use the overview, you would have to turn around to see, what you are doing. You also do not see, if you turn the presentation black and just talk on&#8230;</p>
<p style="text-align:left;">My idea was to not display the current slide as pdf anymore, but to watch the second screen (beamer) with VNC. This worked as proof of concept, but is sometimes quite laggy &#8211; even with enabled compression&#8230;<br />
So I&#8217;m not completely happy and would be really glad, if some of you had an idea solving this problem.</p>
<p style="text-align:left;">You&#8217;ll need:</p>
<ul>
<li>A pdf file containing your presentation</li>
<li>A pdf file containing your notes (each slide &lt;-&gt; one page of notes)</li>
<li>The info file for Impressive (I uploaded a <a title="info file for Impressive" href="http://olf.bplaced.net/scripts/index.php?action=display&amp;file=scripts/pres.pdf.info">sample</a>)</li>
<li>Impressive and xpdf</li>
<li>For your (and my^^) convenience I wrote a <a title="script to start presentation" href="http://olf.bplaced.net/scripts/index.php?action=display&amp;file=scripts/presentation.sh">little script</a> to start all this and position it correctly on the screen (a 1280&#215;800 laptop screen and a 1024&#215;768 beamer)</li>
<li>If you like: <a title="stop watch" href="http://olf.bplaced.net/scripts/index.php?action=display&amp;file=scripts/stoppwatch.sh">A small stop watch</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beuwolf.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beuwolf.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/beuwolf.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/beuwolf.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/beuwolf.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/beuwolf.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/beuwolf.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/beuwolf.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/beuwolf.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/beuwolf.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/beuwolf.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/beuwolf.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/beuwolf.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/beuwolf.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beuwolf.wordpress.com&amp;blog=8132258&amp;post=6&amp;subd=beuwolf&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beuwolf.wordpress.com/2009/06/11/a-presenter-console-for-latex/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f4edf7676a62d132bf3fdef5eec8748b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Flo</media:title>
		</media:content>
	</item>
	</channel>
</rss>
