<?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"
	>

<channel>
	<title>ganto's Blog</title>
	<atom:link href="http://ganto.no-ip.org/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://ganto.no-ip.org</link>
	<description>Interesting stuff about Computers, Linux and Life</description>
	<pubDate>Sun, 01 Nov 2009 04:25:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>Webtip - 1. November 2009</title>
		<link>http://ganto.no-ip.org/?p=88</link>
		<comments>http://ganto.no-ip.org/?p=88#comments</comments>
		<pubDate>Sun, 01 Nov 2009 04:25:00 +0000</pubDate>
		<dc:creator>ganto82</dc:creator>
		
		<category><![CDATA[Webtipps]]></category>

		<category><![CDATA[beaver python perl C++]]></category>

		<guid isPermaLink="false">http://ganto.no-ip.org/?p=88</guid>
		<description><![CDATA[Ever heard about the &#8220;Busy Beaver Problem&#8221;? Interesting introduction and visualization with lots of source code (Python, C++, Perl) 
catonmat.net: The Busy Beaver Problem
]]></description>
			<content:encoded><![CDATA[<p>Ever heard about the &#8220;Busy Beaver Problem&#8221;? Interesting introduction and visualization with lots of source code (Python, C++, Perl) </p>
<p>catonmat.net: <a href="http://www.catonmat.net/blog/busy-beaver/">The Busy Beaver Problem</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ganto.no-ip.org/?feed=rss2&amp;p=88</wfw:commentRss>
		</item>
		<item>
		<title>Migrate trac-0.11.x from Debian Etch to Lenny</title>
		<link>http://ganto.no-ip.org/?p=86</link>
		<comments>http://ganto.no-ip.org/?p=86#comments</comments>
		<pubDate>Sun, 18 Oct 2009 22:59:35 +0000</pubDate>
		<dc:creator>ganto82</dc:creator>
		
		<category><![CDATA[Admin hints]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[debian trac sqlite]]></category>

		<guid isPermaLink="false">http://ganto.no-ip.org/?p=86</guid>
		<description><![CDATA[Since I was using the nice FineGradePermissions feature of the trac 0.11 release, and Debian was only providing trac-0.10.3 in Etch, I had a custom trac installation running on my Etch server. For migrating to Lenny you would normally think that it&#8217;s enough to just copy your project directory to the new installation. Unfortunately this [...]]]></description>
			<content:encoded><![CDATA[<p>Since I was using the nice <a href="http://trac.edgewall.org/wiki/TracFineGrainedPermissions">FineGradePermissions</a> feature of the <a href="http://trac.edgewall.org/">trac</a> 0.11 release, and Debian was only providing trac-0.10.3 in Etch, I had a custom trac installation running on my Etch server. For migrating to Lenny you would normally think that it&#8217;s enough to just copy your project directory to the new installation. Unfortunately this results in a nasty error message:</p>
<p><code>DatabaseError: file is encrypted or is not a database</code></p>
<p>Hmn, so let&#8217;s check the trac <a href="http://trac.edgewall.org/wiki/TracMigrate">migration guide</a> which advises you to first export the sqlite database with sqlite3 in a plain SQL file. Not much luck here either, the result is an empty database:<br />
<code><br />
# sqlite3 trac.db .dump<br />
BEGIN TRANSACTION;<br />
COMMIT;<br />
</code></p>
<p>The reason is the trac installation in Etch was using the python-sqlite-1.0.1 back-end which uses the SQLite 2 format while in Lenny there is python-pysqlite2-2.4.1 which only knows about SQLite 3.</p>
<p>The conversion from SQLite 2 to 3 can be done by first exporting the database with the sqlite tool and then re-importing it with sqlite3:<br />
<code><br />
# sqlite trac.db .dump | sqlite3 trac3.db<br />
</code></p>
<p>More infos about this can be found at the trac upgrade notes <a href="http://trac.edgewall.org/wiki/0.10/TracUpgrade#From0.8.xto0.9">from 0.8.x to 0.9</a>.</p>
<p>Finally your trac installation should work again as usual. </p>
]]></content:encoded>
			<wfw:commentRss>http://ganto.no-ip.org/?feed=rss2&amp;p=86</wfw:commentRss>
		</item>
		<item>
		<title>Using vanilla kernel to run as &#8216;paravirt_ops&#8217; Xen domU</title>
		<link>http://ganto.no-ip.org/?p=77</link>
		<comments>http://ganto.no-ip.org/?p=77#comments</comments>
		<pubDate>Thu, 16 Oct 2008 13:51:41 +0000</pubDate>
		<dc:creator>ganto82</dc:creator>
		
		<category><![CDATA[Admin hints]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Xen]]></category>

		<category><![CDATA[console]]></category>

		<category><![CDATA[kernel]]></category>

		<category><![CDATA[paravirtualization]]></category>

		<category><![CDATA[paravirt_ops]]></category>

		<guid isPermaLink="false">http://ganto.no-ip.org/?p=77</guid>
		<description><![CDATA[Xen is nowadays a widespread approach to run virtual hosts. Thanks to its flexible configuration it&#8217;s not only possible to run virtual Linux hosts but nearly any operating system that is compatible to the Xen hypervisor machine architecture will possibly run as guest host. The Xen paravirtualization feature, which provides a tighter association between the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://xen.org/">Xen</a> is nowadays a widespread approach to run virtual hosts. Thanks to its flexible configuration it&#8217;s not only possible to run virtual Linux hosts but nearly any operating system that is compatible to the Xen <a href="http://en.wikipedia.org/wiki/Hypervisor">hypervisor</a> machine architecture will possibly run as guest host. The Xen <a href="http://en.wikipedia.org/wiki/Paravirtualization">paravirtualization</a> <span id="more-77"></span>feature, which provides a tighter association between the hypervisor and the guest kernel makes it especially interesting for running performance critical Linux guests.</p>
<p>For using Xen virtualization a separate patchset always had to be applied to the hypervisor and also the paravirtualized Linux kernel. Because of this it wasn&#8217;t always easy to migrate physical servers into virtual one&#8217;s, especially when requiring a special kernel version or another profound Linux patchset. </p>
<p><strong>What is paravirt_ops?</strong><br />
Paravirt_ops is a generic kernel structure that represents an interface to a virtualization hypervisor. It allows the kernel to run natively on the hardware but also virtual on a hypervisor. Since kernel 2.6.23 paravirt_ops support for Xen is integrated into the vanilla kernel and since then also support for <a href="http://lwn.net/Articles/175706/">VMI</a> (<a href="http://www.vmware.com/">VMware</a>) and <a href="http://kvm.qumranet.com/kvmwiki">KVM</a> was added. It is a first step to integrate full Xen compatibility into the mainline kernel tree. Today, with kernel 2.6.27, Xen paravirt_ops support exists at least for the x86 and x86_64 architecture.</p>
<p><strong>How can I use the vanilla kernel as Xen domU?</strong><br />
If you build the kernel by yourself, like every real man does, you have to activate the following features. Build the support directly into the kernel that you don&#8217;t have to fiddle around with an <a href="http://en.wikipedia.org/wiki/Initrd">initramfs</a>. </p>
<p><code><br />
Processor type and features  ---><br />
          [*] Paravirtualized guest support  &#8212;><br />
                    &#8212; Paravirtualized guest support<br />
                    [*]   Xen guest support<br />
               &#8230;<br />
          [*] PAE (Physical Address Extension) Support<br />
</code><code><br />
Device Drivers  ---><br />
          [*] Block devices  &#8212;><br />
                    <*>   Xen virtual block device support<br />
               &#8230;<br />
          [*] Network device support  &#8212;><br />
                    <*>   Xen network device frontend driver<br />
               &#8230;<br />
               Character devices  &#8212;><br />
                    [*] Xen Hypervisor Console support<br />
</code><br />
Now we&#8217;re nearly done with it. After compiling the kernel we need to do some small changes concerning the console redirection in the baselayout of the Linux guest. In the future the distributions will likely prepare this for us.</p>
<p>Add hvc0 device node:<br />
<code><br />
cd /dev<br />
mknod hvc0 c 229 0<br />
chown root:tty hvc0<br />
chmod 600 hvc0<br />
</code><br />
To change default console to hvc0 you have to edit the <em>/etc/inittab</em>. If not done already, disable all the other virtual consoles:<br />
<code><br />
co:12345:respawn:/sbin/agetty 38400 hvc0 vt100-nav<br />
#2:23:respawn:/sbin/agetty 38400 tty2<br />
#3:23:respawn:/sbin/agetty 38400 tty3<br />
...<br />
</code><br />
Finally permit login on the hvc0 console by adding it to <em>/etc/securetty</em>.</p>
<p>Now we should be able to boot our paravirt_ops system on real hardware the same as on a Xen hypervisor. However compared with a Xen-patched paravirtualized kernel, the paravirt_ops kernel doesn&#8217;t support special features like framebuffer support or live migration. </p>
<p>Links:</p>
<li><a href="http://lwn.net/Articles/194543/">lwn.net - Connecting Linux to hypervisors</a></li>
<li><a href="https://ganto.no-ip.org/trac/wiki/Xen/VanillaKernel">ganto.no-ip.org/trac - Building paravirt_ops domU kernel from vanilla sources</a></li>
]]></content:encoded>
			<wfw:commentRss>http://ganto.no-ip.org/?feed=rss2&amp;p=77</wfw:commentRss>
		</item>
		<item>
		<title>Virtualized Animal Testing</title>
		<link>http://ganto.no-ip.org/?p=76</link>
		<comments>http://ganto.no-ip.org/?p=76#comments</comments>
		<pubDate>Wed, 23 Apr 2008 19:38:57 +0000</pubDate>
		<dc:creator>ganto82</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://ganto.no-ip.org/?p=76</guid>
		<description><![CDATA[Virtualization is not only a major topic in computer industries, but lately also in medicine. A Taiwanese laboratory introduced a &#8220;3D-virtual guinea pig&#8221; system for drug testing. And they even say &#8220;such a process would be able to replace some live animal experiments&#8221;.
You don&#8217;t believe me&#8230; read yourself:
www.chinapost.com.tw: &#8216;3D virtual guinea pig&#8217; to be used [...]]]></description>
			<content:encoded><![CDATA[<p>Virtualization is not only a major topic in computer industries, but lately also in medicine. A Taiwanese laboratory introduced a &#8220;3D-virtual guinea pig&#8221; system for drug testing. And they even say <em>&#8220;such a process would be able to replace some live animal experiments&#8221;</em>.</p>
<p>You don&#8217;t believe me&#8230; read yourself:<br />
<a href="http://www.chinapost.com.tw/taiwan/national/national%20news/2008/04/20/152832/3D-virtual.htm">www.chinapost.com.tw: &#8216;3D virtual guinea pig&#8217; to be used for drug development</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ganto.no-ip.org/?feed=rss2&amp;p=76</wfw:commentRss>
		</item>
		<item>
		<title>Manufactured Landscapes</title>
		<link>http://ganto.no-ip.org/?p=75</link>
		<comments>http://ganto.no-ip.org/?p=75#comments</comments>
		<pubDate>Mon, 03 Dec 2007 15:01:30 +0000</pubDate>
		<dc:creator>ganto82</dc:creator>
		
		<category><![CDATA[China]]></category>

		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://ganto.no-ip.org/?p=75</guid>
		<description><![CDATA[Last week I went to cinema once again. In the tiny Kellerkino they showed the documentary &#8220;Manufactured Landscapes&#8221;. It is definitely a movie that should be seen by everybody. 
The Canadian photographer and cameraman Edward Burtynsky attracted a lot of attention by his longterm work about how mankind changes the natural landscapes. The movie &#8220;Manufactured [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I went to cinema once again. In the tiny <a href="http://kellerkino.ch/">Kellerkino</a> they showed the documentary <a href="http://www.mongrelmedia.com/films/ManufacturedLandscapes.html">&#8220;Manufactured Landscapes&#8221;</a>. It is definitely a movie that should be seen by everybody. </p>
<p>The Canadian photographer and cameraman Edward Burtynsky attracted a lot of attention by his longterm work about how mankind changes the natural landscapes. The movie &#8220;Manufactured Landscapes&#8221; is showing us how industrialization in China looks like. He did choose China because it more and more becomes the factory of the world with all its negative consequences. </p>
<p>But compared to the movie <a href="http://www.climatecrisis.net/">&#8220;An Inconvenient Truth&#8221;</a>  by Al Gore about the global warming this movie does not rate the human acting. &#8220;Manufactured Landscapes&#8221; does not explain or discuss the destruction of nature it only shows it. Exactly this neutrality of the film-makers does lead to a speechlessness. You cannot totally accuse what you see because we depend on it and we provoke it with our economy. But on the other site it irreversibly destroys what has been on earth a long time before mankind. </p>
<p>The mixture of pictures and videos is underlaid with cold music and industrial noise. Sometimes there are short interviews, for example with a Chinese girl who assembles about 400 fuses a day, since six years. Or with an official of a coal mine trying to prevent the artist from filming their facility. You see the construction site of the <a href="http://en.wikipedia.org/wiki/Three_Gorges_Dam">Three Gorges Dam</a> and the people destroying their own houses because their city will be flooded by this project. You see girls destructing our Computer waste for regaining the materials. But they cannot drink their ground water anymore because it is full of heavy metal residues. The movie shows the city of Shanghai which has to assimilate an increase in population of more than a million people per year. These are definitely other dimensions than we can even imagine here&#8230;</p>
<p>If I made you curious now you can watch the trailer of &#8220;Manufactured Landscapes&#8221; <a href="http://www.mongrelmedia.com/Trailer_Man_Landscp.html">online</a>.</p>
<p>What finally made me writing this article are some recent news about the Three Gorges Dam. First there was a video from <a href="http://www.nationalgeographic.com">National Geographic</a> about <a href="http://video.nationalgeographic.com/video/player/news/culture-places-news/china-dam-apvin.html">landslides threating Chinese farmers</a>. There they were still talking about a threat but today in the news there was already reported about a <a href="http://news.xinhuanet.com/english/2007-12/03/content_7190337.htm">big landslide killing 34 people</a> in the region of the Three Gorges. </p>
<p>Did you see the movie? Can we continue our extensive life forever? Can China handle this big challenge? Discuss it in the comments&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://ganto.no-ip.org/?feed=rss2&amp;p=75</wfw:commentRss>
		</item>
		<item>
		<title>What is your Open Mind Index?</title>
		<link>http://ganto.no-ip.org/?p=74</link>
		<comments>http://ganto.no-ip.org/?p=74#comments</comments>
		<pubDate>Sat, 17 Nov 2007 13:51:55 +0000</pubDate>
		<dc:creator>ganto82</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<category><![CDATA[Webtipps]]></category>

		<guid isPermaLink="false">http://ganto.no-ip.org/?p=74</guid>
		<description><![CDATA[I like statistics. Not really when it is about calculating them but when it is about studying them. Of course first af all when there are statistics about myself. Gaming statistics is the one thing and statistics about music the other. last.fm provides me since one and a half year with hit lists from what [...]]]></description>
			<content:encoded><![CDATA[<p>I like statistics. Not really when it is about calculating them but when it is about studying them. Of course first af all when there are statistics about myself. Gaming statistics is the one thing and statistics about music the other. <a href="http://www.last.fm">last.fm</a> provides me since one and a half year with hit lists from what music interprets, tracks and albums I am listening on my computers. I already had a lot of ideas about how this statistics collection could be expanded but others already did it. </p>
<p>Check out <a href="http://www.musickum.com/omi/index.php5">musickum.com: Open Mind Index Generator</a>, enter your last.fm buddy name and let you show how open-minded you are when it&#8217;s about listening to music. You can compare it with others from same country or with same music taste.</p>
<p>For example here my last.fm OMI:<br />
<a href="http://www.musickum.com/omi/index.php5?username=ganto"><br />
<img src="http://s217122409.online.de/musickum/omi/graphics/omi/g/oganto.png" alt="OMI ganto" /><br />
<img src="http://s217122409.online.de/musickum/omi/graphics/taste/g/tganto.png" alt="Tags ganto" /></a></p>
<p>As you can see is my index about 104. The mean index of the people using this tool was 94. The interesting thing is for example that the mean OMI for people mainly listening to music tagged &#8220;Hip-Hop&#8221; is only about 85! Wow, what&#8217;s wrong here? Did hip hop once grew up from many different directions of music and ideas for ending here? Or men are with a mean index of 94.76 more open minded than women with 92.90. How can we read this?</p>
<p>There are many other interesting things that you &#8220;could&#8221; interpret from these numbers. But already our maths professor said: &#8220;Don&#8217;t trust statistics when you didn&#8217;t fake it yourself&#8221;. </p>
<p>Now let&#8217;s give me your OMIs&#8230; Who is the most open minded here?</p>
]]></content:encoded>
			<wfw:commentRss>http://ganto.no-ip.org/?feed=rss2&amp;p=74</wfw:commentRss>
		</item>
		<item>
		<title>Gentoo: QEMU in 32bit Xen environment</title>
		<link>http://ganto.no-ip.org/?p=73</link>
		<comments>http://ganto.no-ip.org/?p=73#comments</comments>
		<pubDate>Wed, 03 Oct 2007 16:13:13 +0000</pubDate>
		<dc:creator>ganto82</dc:creator>
		
		<category><![CDATA[Admin hints]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Open Source]]></category>

		<category><![CDATA[Xen]]></category>

		<guid isPermaLink="false">http://ganto.no-ip.org/?p=73</guid>
		<description><![CDATA[Recently I wanted to set up a testing server for the different virtualization techniques for Linux. For this I have an Asus P5LD2 mainboard with an Intel dual core Pentium D 3,2 GHz which supports the Virtual Machine Extensions (VMX). Thanks to this I can compile Xen with the &#8216;hvm&#8217; USE-flag and run fully virtualized [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I wanted to set up a testing server for the different virtualization techniques for Linux. For this I have an Asus P5LD2 mainboard with an Intel dual core Pentium D 3,2 GHz which supports the <a href="http://www.intel.com/cd/ids/developer/asmo-na/eng/197668.htm">Virtual Machine Extensions</a> (VMX). Thanks to this I can compile Xen with the &#8216;hvm&#8217; <a href="http://www.gentoo-portage.com/USE">USE-flag</a> and run fully virtualized guest operating systems on my Xen supervisor. This means I could run nearly every i386 compatible operating system (even Windows <img src='http://ganto.no-ip.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> ) in my Xen environment. Without such hardware every guest operating system has to have a Xen enabled kernel.</p>
<p>Another approach with the same result is the open source project <a href="http://fabrice.bellard.free.fr/qemu/">QEMU</a>. Its abstraction level is higher than with Xen and it can even emulate different target architectures from your current x86 host. So far <a href="http://en.wikipedia.org/wiki/X86_64">x86_64</a>, <a href="http://en.wikipedia.org/wiki/ARM_architecture">ARM</a>, <a href="http://en.wikipedia.org/wiki/Sparc">SPARC</a>, <a href="http://en.wikipedia.org/wiki/Powerpc">PowerPC</a>, <a href="http://en.wikipedia.org/wiki/MIPS_architecture">MIPS</a> and <a href="http://en.wikipedia.org/wiki/M68k">M68k</a> target systems are supported. Its guest operating system does not need any single change to run on QEMU. This makes it very comfortable to test new live CDs or operating system images. But it is not so trivial to setup QEMU and Xen together on a Gentoo machine.</p>
<p><strong>How to setup QEMU on 32bit Gentoo in Xen dom0?</strong></p>
<p>If you compile Xen on a 32bit host you have to add &#8216;-mno-tls-direct-seg-refs&#8217; to your CFLAGS. That is because the glibc TLS library is implemented in a way that will conflict with how Xen uses segment registers. For compiling the non-patched QEMU 0.9.0 you have to use a gcc version 3.x. The nowadays default gcc 4.x is not yet supported. After several compile failures I finally found to setup QEMU the following way:</p>
<p><strong>1.</strong> For compiling gcc-3.x remove the &#8216;-mno-tls-direct-seg-refs&#8217; from <em>/etc/make.conf</em> and set the &#8216;nossp&#8217; and &#8216;nopie&#8217; USE-flags. Otherwise gcc or later qemu will not compile. </p>
<p><strong>2.</strong> Switch to gcc-3.x before compiling <a href="http://www.gentoo-portage.com/app-emulation/qemu-softmmu">qemu-softmmu</a>, <a href="http://www.gentoo-portage.com/app-emulation/qemu-user">qemu-user</a> and <a href="http://www.gentoo-portage.com/app-emulation/qemu">qemu</a>. In my case it&#8217;s: <code>gcc-config i686-pc-linux-gnu-3.3.6</code></p>
<p><strong>3.</strong> Check your CFLAGS again because the optimization flags for gcc 4.x are not always backwards compatible to gcc-3.x. In my case the <em>make.conf</em> looks like this:<br />
<code><br />
# gcc-3.x<br />
CFLAGS="-march=pentium4 -O2 -pipe -fomit-frame-pointer -mno-tls-direct-seg-refs"</code><br />
<code><br />
# gcc-4.x for compiling gcc-3.3<br />
#CFLAGS="-march=prescott -O2 -pipe -fomit-frame-pointer"</code><br />
<code><br />
# gcc-4.x<br />
#CFLAGS="-march=prescott -O2 -pipe -fomit-frame-pointer -mno-tls-direct-seg-refs"</code></p>
<p><strong>4.</strong> Now you can compile QEMU. Do not forget to switch back to your original CFLAGS and gcc-4.x after successfully emerging QEMU. I recommend to you to also build the QEMU kernel accelerator module <a href="http://www.gentoo-portage.com/app-emulation/kqemu">kqemu</a> which has to be compiled with the same compiler as the kernel itself. </p>
<p>Now Xen and QEMU are able to run whatever operating system image you give them. Have fun with playing around&#8230; </p>
<p>Continuative links:</p>
<li><a href="http://gentoo-wiki.com/HOWTO_Xen_and_Gentoo">gentoo-wiki.com - HOWTO Xen and Gentoo</a></li>
<li><a href="http://wiki.xensource.com/xenwiki/HVM_Compatible_Processors">wiki.xensource.com - HVM Compatible Processors</a></li>
<li><a href="http://gentoo-wiki.com/HOWTO:_Qemu">gentoo-wiki.com - HOWTO Qemu</a></li>
]]></content:encoded>
			<wfw:commentRss>http://ganto.no-ip.org/?feed=rss2&amp;p=73</wfw:commentRss>
		</item>
		<item>
		<title>DokuWiki - A small Wiki for everyday use</title>
		<link>http://ganto.no-ip.org/?p=72</link>
		<comments>http://ganto.no-ip.org/?p=72#comments</comments>
		<pubDate>Wed, 26 Sep 2007 16:38:45 +0000</pubDate>
		<dc:creator>ganto82</dc:creator>
		
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://ganto.no-ip.org/?p=72</guid>
		<description><![CDATA[For organizing our move to the shared flat I was looking for a small, simple to use Wiki for collecting ideas and coordinating our flat inventory. After a little search I found DokuWiki. It can be easily installed by every Linux distribution&#8217;s package manager. Unfortunately the stable Debian package was not the newest version and [...]]]></description>
			<content:encoded><![CDATA[<p>For organizing our move to the shared flat I was looking for a small, simple to use <a href="http://en.wikipedia.org/wiki/Wiki">Wiki</a> for collecting ideas and coordinating our flat inventory. After a little search I found <a href="http://wiki.splitbrain.org/wiki:dokuwiki">DokuWiki</a>. It can be easily installed by every Linux distribution&#8217;s package manager. Unfortunately the stable <a href="http://www.debian.org">Debian</a> package was not the newest version and annoyed me with banners that there are some upgrades available. So I tried again with the newest version from the developers site. After unpacking, the directory has to be made accessible through your Web server and after running the install.php where you actually only create the administrator user, the Wiki is already prepared to use. In the default configuration there is no database needed. But the strength of this Wiki is that it can be expanded by more sophisticated configurations using <a href="http://www.mysql.com">MySQL</a> or an <a href="http://en.wikipedia.org/wiki/Ldap">LDAP</a> back-end for user administration. The syntax is quite simple and similar to other Wiki systems. Also my friends were surprised by the usability of this piece of Open Source software. So if you are planning to use a powerful but simple Wiki software, keep an eye on DokuWiki.</p>
]]></content:encoded>
			<wfw:commentRss>http://ganto.no-ip.org/?feed=rss2&amp;p=72</wfw:commentRss>
		</item>
		<item>
		<title>My first own flat</title>
		<link>http://ganto.no-ip.org/?p=71</link>
		<comments>http://ganto.no-ip.org/?p=71#comments</comments>
		<pubDate>Mon, 24 Sep 2007 00:32:29 +0000</pubDate>
		<dc:creator>ganto82</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://ganto.no-ip.org/?p=71</guid>
		<description><![CDATA[After nearly one year of searching an appropriate flat it succeeded. You cannot imagine how hard it is to get a flat near the university district Länggasse in Bern. Ether they do not have a balcony or they are much too expensive and they do not want students or, when you finally found one you [...]]]></description>
			<content:encoded><![CDATA[<p>After nearly one year of searching an appropriate flat it succeeded. You cannot imagine how hard it is to get a flat near the university district Länggasse in Bern. Ether they do not have a balcony or they are much too expensive and they do not want students or, when you finally found one you like, there are at least twenty other parties having the same impression. But now, finally, I got the keys to my first own flat this weekend. Unfortunately it is not near the university but just next to the famous <a href="http://en.wikipedia.org/wiki/B%C3%A4rengraben">bear pit</a> near the old town. Haha, I cannot wait to say &#8220;good night&#8221; to the bears before going home. Admittedly it is not only my flat. I share it with two colleagues who I already know since several years or even since the high school time. Soon I do not have to walk home for more than forty minutes when I once again missed the last bus. But I do have to wash for myself, cook for myself, care for myself&#8230; I am looking forward. Within the next few days I will always take some stuff into the new flat (beer is already cooled in the fridge since we received the keys <img src='http://ganto.no-ip.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> ) and when there is eventually Internet available everything will be ready to move. Life, i am coming&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://ganto.no-ip.org/?feed=rss2&amp;p=71</wfw:commentRss>
		</item>
		<item>
		<title>wow, how people can find this site ;-)</title>
		<link>http://ganto.no-ip.org/?p=70</link>
		<comments>http://ganto.no-ip.org/?p=70#comments</comments>
		<pubDate>Fri, 21 Sep 2007 01:21:39 +0000</pubDate>
		<dc:creator>ganto82</dc:creator>
		
		<category><![CDATA[Website]]></category>

		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://ganto.no-ip.org/?p=70</guid>
		<description><![CDATA[What interesting pages link to ganto&#8217;s Blog? 
And once more I became weak because of a google thing. It&#8217;s the google webmasters tools. You can dig in a lot of google records of your Web site. Maybe more about this later&#8230;
Here a first nice &#8220;partner&#8221; site:
Computers in Nantou County (Directory/Asia/Taiwan/Nantou County/Shopping/Computers) - Worldwidirectory.com
]]></description>
			<content:encoded><![CDATA[<p><strong>What interesting pages link to ganto&#8217;s Blog? </strong></p>
<p>And once more I became weak because of a <a href="http://google.com">google</a> thing. It&#8217;s the google <a href="https://www.google.com/webmasters/tools/">webmasters tools</a>. You can dig in a lot of google records of your Web site. Maybe more about this later&#8230;</p>
<p>Here a first nice &#8220;partner&#8221; site:</p>
<li><a href="http://www.worldwidirectory.com/Asia/Taiwan/Nantou.County/Shopping/Computers/">Computers in Nantou County (Directory/Asia/Taiwan/Nantou County/Shopping/Computers) - Worldwidirectory.com</a></li>
]]></content:encoded>
			<wfw:commentRss>http://ganto.no-ip.org/?feed=rss2&amp;p=70</wfw:commentRss>
		</item>
	</channel>
</rss>
