<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ansis World &#187; install</title>
	<atom:link href="http://ansi.interblc.com/tag/install/feed/" rel="self" type="application/rss+xml" />
	<link>http://ansi.interblc.com</link>
	<description>Family, Work, Life</description>
	<lastBuildDate>Mon, 08 Feb 2010 09:30:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Howto boot ISO images via grub2 with ubuntu</title>
		<link>http://ansi.interblc.com/2010/02/06/howto-boot-iso-images-via-grub2-with-ubuntu/</link>
		<comments>http://ansi.interblc.com/2010/02/06/howto-boot-iso-images-via-grub2-with-ubuntu/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 18:59:55 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[grub]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[iso]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=303</guid>
		<description><![CDATA[Moin I am using Ubuntu &#8220;Daily builds&#8221; for some time inside Suns VirtualBox. Unfortunately the daily builds are not longer booting inside VirtualBox for more then 2 weeks now. Christian told me about a new feature of Grub2. You can boot ISO images directly from your hard disk without burning them on CD or USB. [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>I am using Ubuntu &#8220;<a href="http://cdimages.ubuntu.com/daily-live/current/" target="_blank">Daily builds</a>&#8221; for some time inside Suns <a href="http://www.virtualbox.org/" target="_blank">VirtualBox</a>. Unfortunately the daily builds are not longer booting inside VirtualBox for more then 2 weeks now. <a href="http://www.facebook.com/christian.kirsch" target="_blank">Christian</a> told me about a new feature of <a href="http://grub.enbug.org/FrontPage?action=show&amp;redirect=StartSeite" target="_blank">Grub2</a>. You can boot ISO images directly from your hard disk without burning them on CD or USB. Awesome feature and I had to try it today. Here is the description on how to do it with Ubuntu 9.10.</p>
<p>First I am using this tiny script to update all daily builds with the <a href="http://zsync.moria.org.uk/" target="_blank">zsync</a> tool. It transfers only the changed parts of the ISO so you and the Ubuntu teams save a lot of traffic.</p>
<pre>zsync http://cdimages.ubuntu.com/daily-live/current/lucid-desktop-i386.iso.zsync
cd kubuntu
zsync http://cdimages.ubuntu.com/kubuntu/daily-live/current/lucid-desktop-i386.iso.zsync
cd ../netbook
zsync http://cdimages.ubuntu.com/ubuntu-netbook/daily-live/current/lucid-netbook-i386.iso.zsync
cd ../xubunutu
zsync http://cdimages.ubuntu.com/xubuntu/daily-live/current/lucid-desktop-i386.iso.zsync
cd ..
rm `find ./ -name "*.zs-old" `</pre>
<p>This script keeps all my daily builds up to date.</p>
<p>Next Step is to enable the grub menu. In Ubuntu it can be done in &#8220;<strong>/etc/default/grub</strong>&#8220;. Change the following lines</p>
<pre>GRUB_HIDDEN_TIMEOUT=<strong>10</strong>
GRUB_HIDDEN_TIMEOUT_QUIET=<strong>false</strong></pre>
<p>With this change you will see a 10 seconds count down when booting up. With the <strong>shift-key</strong> you get access to the grub boot menu. Next is to add the ISO images to the grub menu. Change to the &#8220;<strong>/etc/grub.d</strong>&#8221; dir.</p>
<p>Here you can find the grub menu entries and configuration files. Add your ISO images starting with <strong>50</strong> here. For example my entry for the normal Ubuntu ISO image (50_ubuntu) looks like this:</p>
<pre>echo "Adding $(egrep menu[e]ntry $0 | cut -d'"' -f2)" &gt;&amp;2
 cat &lt;&lt; EOF
menuentry "Ubuntu 10.04 Daily Build" {
       loopback loop (<strong>hd0,3</strong>)<strong>/ansi/software_and_config/ISOs/ubuntu/lucid-desktop-i386.iso</strong>
       linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=<strong>/ansi/software_and_config/ISOs/ubuntu/lucid-desktop-i386.iso</strong> file=(loop)/preseed/ubuntu.seed quiet splash bootkbd=sg --
       initrd (loop)/casper/initrd.lz
}</pre>
<p>My ISO files are stored on <strong>sda3</strong> under <strong>/ansi/software_and_config/ISOs/ubuntu/</strong>. In order to change it for your needs there are 3 elements to change. The <strong>loopback</strong> line contains your hard disk in grub style (hdx,y  x=0-&gt;sda x=1-&gt;sdb aso) and the path. The third element to change is in the linux line. Store this file as &#8220;<strong>50_ubuntu</strong>&#8221; in &#8220;<strong>/etc/grub.d</strong>&#8220;, make it executable with &#8220;<strong>chmod a+x 50_ubuntu</strong>&#8221; and activate the changes with &#8220;<strong>ubdate-grub</strong>&#8220;. After a reboot you should be able to activate the grub menu with the <strong>shift-key</strong> and select the new entry. Have fun.</p>
<p>I found some pages on this topic but the description there was not working for me so I changed it. But take a look on your own:</p>
<ul>
<li><a href="http://forum.ubuntuusers.de/topic/lucid-lynx-ohne-cd-brennen-auf-realem-system-/#post-2326751">http://forum.ubuntuusers.de/topic/lucid-lynx-ohne-cd-brennen-auf-realem-system-/#post-2326751</a></li>
<li><a href="http://wiki.ubuntuusers.de/GRUB_2/Konfiguration">http://wiki.ubuntuusers.de/GRUB_2/Konfiguration</a></li>
</ul>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2010/02/06/howto-boot-iso-images-via-grub2-with-ubuntu/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Chrome extentions</title>
		<link>http://ansi.interblc.com/2009/12/20/chrome-extentions/</link>
		<comments>http://ansi.interblc.com/2009/12/20/chrome-extentions/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 19:02:08 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Web2.0]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[setup]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=297</guid>
		<description><![CDATA[Moin I just run through several Chrome Extensions and here is my list of extensions I can recommend. Please write some comments if you have additional  recommendations. Read It Later, very usefull to store webpages for later reading: https://chrome.google.com/extensions/detail/bkikpncfbjndhfkipijhdoddiadaipaa Gmail Notification: https://chrome.google.com/extensions/detail/mihcahmgecmbnbcchbopgniflfhgnkff Use Gmail as default mailer: https://chrome.google.com/extensions/detail/pgphcomnlaojlmmcjmiddhdapjpbgeoc Forecastfox: https://chrome.google.com/extensions/detail/ihffmkcfkejomlfnilnmkokcpgclhfeg Delicious: https://chrome.google.com/extensions/detail/anlkjppofaicbdanhhpbbogknfodfhfm Last.fm: https://chrome.google.com/extensions/detail/nbjfhhdfhoccglhllgdfcknjgjbifcjk TwitterBar: https://chrome.google.com/extensions/detail/pbadgdglepgngpoeijdgicjccomadekm Page reload: https://chrome.google.com/extensions/detail/njoipeaphfnaplplihpbgndfojhdhmjo [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>I just run through several Chrome Extensions and here is my list of extensions I can recommend. Please write some comments if you have additional  recommendations.</p>
<ul>
<li>Read It Later, very usefull to store webpages for later reading: <a href="https://chrome.google.com/extensions/detail/bkikpncfbjndhfkipijhdoddiadaipaa" target="_blank">https://chrome.google.com/extensions/detail/bkikpncfbjndhfkipijhdoddiadaipaa</a></li>
<li>Gmail Notification: <a href="https://chrome.google.com/extensions/detail/mihcahmgecmbnbcchbopgniflfhgnkff" target="_blank">https://chrome.google.com/extensions/detail/mihcahmgecmbnbcchbopgniflfhgnkff</a></li>
<li>Use Gmail as default mailer: <a href="https://chrome.google.com/extensions/detail/pgphcomnlaojlmmcjmiddhdapjpbgeoc" target="_blank">https://chrome.google.com/extensions/detail/pgphcomnlaojlmmcjmiddhdapjpbgeoc</a></li>
<li>Forecastfox: <a href="https://chrome.google.com/extensions/detail/ihffmkcfkejomlfnilnmkokcpgclhfeg" target="_blank">https://chrome.google.com/extensions/detail/ihffmkcfkejomlfnilnmkokcpgclhfeg</a></li>
<li>Delicious: <a href="https://chrome.google.com/extensions/detail/anlkjppofaicbdanhhpbbogknfodfhfm" target="_blank">https://chrome.google.com/extensions/detail/anlkjppofaicbdanhhpbbogknfodfhfm</a></li>
<li>Last.fm: <a href="https://chrome.google.com/extensions/detail/nbjfhhdfhoccglhllgdfcknjgjbifcjk" target="_blank">https://chrome.google.com/extensions/detail/nbjfhhdfhoccglhllgdfcknjgjbifcjk</a></li>
<li>TwitterBar: <a href="https://chrome.google.com/extensions/detail/pbadgdglepgngpoeijdgicjccomadekm" target="_blank">https://chrome.google.com/extensions/detail/pbadgdglepgngpoeijdgicjccomadekm</a></li>
<li>Page reload: <a href="https://chrome.google.com/extensions/detail/njoipeaphfnaplplihpbgndfojhdhmjo" target="_blank">https://chrome.google.com/extensions/detail/njoipeaphfnaplplihpbgndfojhdhmjo</a></li>
<li>Google Latitude: <a href="https://chrome.google.com/extensions/detail/bhencimpdjidjlgopdgofmkeojbiacie" target="_blank">https://chrome.google.com/extensions/detail/bhencimpdjidjlgopdgofmkeojbiacie</a></li>
<li>Remember the milk: <a href="https://chrome.google.com/extensions/detail/chieodlkhimccchlojdmiondhiggkhmf" target="_blank">https://chrome.google.com/extensions/detail/chieodlkhimccchlojdmiondhiggkhmf</a></li>
<li>Youtube with HTML5 instead of flash: <a href="https://chrome.google.com/extensions/detail/kchoimdlcbapmcdnheaahjcdpdjdpfco" target="_blank">https://chrome.google.com/extensions/detail/kchoimdlcbapmcdnheaahjcdpdjdpfco</a></li>
<li>Beautify Facebook: <a href="https://chrome.google.com/extensions/detail/ipnenhkngeiigfbhacdhadcnjjklhblm" target="_blank">https://chrome.google.com/extensions/detail/ipnenhkngeiigfbhacdhadcnjjklhblm</a></li>
<li>Facebook Extention: <a href="https://chrome.google.com/extensions/detail/hfdhelbngglkahnmlggcbjlkbddhkffm" target="_blank">https://chrome.google.com/extensions/detail/hfdhelbngglkahnmlggcbjlkbddhkffm</a></li>
<li>RapidShare Download Remover: ﻿<a href="https://chrome.google.com/extensions/detail/iciefpkfldmhehakpkphbclofdhiojih">https://chrome.google.com/extensions/detail/iciefpkfldmhehakpkphbclofdhiojih</a></li>
</ul>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/12/20/chrome-extentions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HTC Hero earphone jack problem and howto solve</title>
		<link>http://ansi.interblc.com/2009/11/29/htc-hero-earphone-jack-problem-and-howto-solve/</link>
		<comments>http://ansi.interblc.com/2009/11/29/htc-hero-earphone-jack-problem-and-howto-solve/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 13:18:54 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Gadget]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[hero]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[htc]]></category>
		<category><![CDATA[install]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=289</guid>
		<description><![CDATA[Moin Last week I had some problems with my HTC Hero Android phone. The mobile is awesome no question about that, but there is one funny &#8220;feature&#8221; which I don&#8217;t need at all and what caused me some trouble. The Hero (maybe other mobiles too) has the nice feature to switch from build-in loudspeakers to [...]]]></description>
			<content:encoded><![CDATA[<p>Moin<br />
Last week I had some problems with my HTC Hero Android phone. The mobile is awesome no question about that, but there is one funny &#8220;feature&#8221; which I don&#8217;t need at all and what caused me some trouble. The Hero (maybe other mobiles too) has the nice feature to switch from build-in loudspeakers to external earphones (via the jack on top) via software switch and not like other devices via hardware switch. This causes a problem when the process is not responding when you plug in the earphone. First impression is &#8220;hardware error&#8221; and you want to send back your phone to the repair center. But wait. This is a software bug (although the T-Mobile stores are not aware of that). Thanks to the <a href="http://androidforums.com/htc-hero/7102-htc-hero-headphone-jack-problem.html" target="_blank">Androidforum</a> ere are two solutions for that.</p>
<ol>
<li>The easy but not always working way
<ol>
<li>Turn off the phone by holding down the Hangup button for some time.</li>
<li>Plug in your earphones</li>
<li>Turn on the phone (if you see the earphone symbol everything is fine now)</li>
</ol>
</li>
<li>The not so easy but always working way
<ol>
<li>Download the APKatcher App from the Market (<a style="color: #769c11; text-decoration: none;" href="market://search?q=pname:nEx.software.Apps.APKatcher" target="_blank">market://search?q=pname:nEx.software.Apps.APKatcher</a>) <a href="market://search?q=pname:nEx.software.Apps.APKatcher"><img class="alignright" src="http://www.androidpit.de/img/dyn/assets/asset-15781-qr-82.png" alt="" width="82" height="82" /></a></li>
<li>Enable 3rd party apps on your mobile in order to accept apps from other locations then the market</li>
<li>Get the <a href="http://code.google.com/p/toggleheadset/" target="_blank">toggleheadset</a> <a href="http://toggleheadset.googlecode.com/files/ToggleHeadset.apk">application</a> from google code.</li>
<li>Send the app to your phone via email</li>
<li>Install the app</li>
<li>Add the toggleheadset widget to your phone desktop</li>
</ol>
</li>
</ol>
<p>After that you can toggle between your earphones and the internal loudspeaker.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/11/29/htc-hero-earphone-jack-problem-and-howto-solve/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>APRS igate running xastir</title>
		<link>http://ansi.interblc.com/2009/06/14/aprs-igate-running-xastir/</link>
		<comments>http://ansi.interblc.com/2009/06/14/aprs-igate-running-xastir/#comments</comments>
		<pubDate>Sun, 14 Jun 2009 21:15:46 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[GPS]]></category>
		<category><![CDATA[HAM]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[aprs]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[services]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=274</guid>
		<description><![CDATA[Moin I just played a little bit with APRS igate on Linux. There are some igate software available on Linux but the most supported package (javAPRESSrvr) is not available today because of an error on Yahoogroups where the files are hosted. Therefore I installed xastir from Sourceforge and connected the the local running instance with [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>I just played a little bit with <a href="http://www.aprs.net/" target="_blank">APRS</a> igate on Linux. There are some <a href="http://www.aprs-is.net/Software.aspx" target="_blank">igate software</a> available on Linux  but the most supported package (<a href="http://www.aprs-is.net/javAPRSSrvr/" target="_blank">javAPRESSrvr</a>) is not available today because of an error on <a href="http://groups.yahoo.com/group/javaprssrvr/" target="_blank">Yahoogroups</a> where the files are hosted.</p>
<p>Therefore I installed <a href="http://www.xastir.org" target="_blank">xastir</a> from <a href="http://sourceforge.net/projects/xastir/" target="_blank">Sourceforge</a> and connected the the local running instance with the <a href="http://www.aprs-is.net/" target="_blank">APRS-IS</a> network. Now DM1AS is visible on <a href="http://www.findu.com/cgi-bin/find.cgi?dm1as" target="_blank">FINDU</a>. <img src='http://ansi.interblc.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Nice side effect on this, the server generates an Google Maps page every 5 minutes with APRS stations around my home. Maybe tomorrow I connect my radio to the igate and there will be more local stations available.</p>
<p>So far you can see the map here:<a href="http://tinyurl.com/nacc5k" target="_blank"><strong></strong></a><strong><a href="http://tinyurl.com/nacc5k"  target="_blank">http://tinyurl.com/nacc5k</a> </strong></p>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=http:%2F%2Fansi.no-ip.com%2Faprs.kml&amp;ie=UTF8&amp;t=h&amp;ll=48.788771,9.244995&amp;spn=1.523599,3.537598&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=http:%2F%2Fansi.no-ip.com%2Faprs.kml&amp;ie=UTF8&amp;t=h&amp;ll=48.788771,9.244995&amp;spn=1.523599,3.537598" style="color:#0000FF;text-align:left">View Larger Map</a></small></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/06/14/aprs-igate-running-xastir/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Server update to Ubuntu Server 9.04</title>
		<link>http://ansi.interblc.com/2009/04/26/server-update-to-ubuntu-server-904/</link>
		<comments>http://ansi.interblc.com/2009/04/26/server-update-to-ubuntu-server-904/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 10:05:09 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=256</guid>
		<description><![CDATA[Moin My blog will be offline on sunday for some time because I will reinstall the server with new HD and Ubuntu 9.04.]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>My blog will be offline on sunday for some time because I will reinstall the server with new HD and Ubuntu 9.04.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/04/26/server-update-to-ubuntu-server-904/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unboxing Aquarium equipment</title>
		<link>http://ansi.interblc.com/2009/01/09/unboxing-aquarium-equipment/</link>
		<comments>http://ansi.interblc.com/2009/01/09/unboxing-aquarium-equipment/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 07:28:44 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Aquarium]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[unboxing]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=162</guid>
		<description><![CDATA[Moin Normally people publishing unboxing pictures of their iPhone or other cool apple equipment. Here are my unboxing pictures of Aquarium equipment and some pictures from installation.]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>Normally people publishing unboxing pictures of their iPhone or other cool apple equipment. Here are my unboxing pictures of Aquarium equipment and some pictures from installation. <img src='http://ansi.interblc.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><a title="07012009086" href="http://farm4.static.flickr.com/3318/3181934952_6cae00a1f4_b.jpg" rel="lightbox[162]"><img class="slickr-post" src="http://farm4.static.flickr.com/3318/3181934952_6cae00a1f4.jpg" alt="07012009086" width="375" height="500" /></a> <a title="07012009088" href="http://farm4.static.flickr.com/3377/3181935626_72558d40bb_b.jpg" rel="lightbox[162]"><img class="slickr-post" src="http://farm4.static.flickr.com/3377/3181935626_72558d40bb.jpg" alt="07012009088" width="500" height="375" /></a> <a title="07012009089" href="http://farm4.static.flickr.com/3120/3181935862_b8a38a30dd_b.jpg" rel="lightbox[162]"><img class="slickr-post" src="http://farm4.static.flickr.com/3120/3181935862_b8a38a30dd.jpg" alt="07012009089" width="500" height="375" /></a> <a title="07012009090" href="http://farm4.static.flickr.com/3265/3181102253_033c361f17_b.jpg" rel="lightbox[162]"><img class="slickr-post" src="http://farm4.static.flickr.com/3265/3181102253_033c361f17.jpg" alt="07012009090" width="500" height="375" /></a> <a title="07012009092" href="http://farm4.static.flickr.com/3479/3181102837_2c58cffbb6_b.jpg" rel="lightbox[162]"><img class="slickr-post" src="http://farm4.static.flickr.com/3479/3181102837_2c58cffbb6.jpg" alt="07012009092" width="500" height="375" /></a> <a title="07012009095" href="http://farm4.static.flickr.com/3321/3181104057_109cd34133_b.jpg" rel="lightbox[162]"><img class="slickr-post" src="http://farm4.static.flickr.com/3321/3181104057_109cd34133.jpg" alt="07012009095" width="375" height="500" /></a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/01/09/unboxing-aquarium-equipment/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Howto set up your own twitter</title>
		<link>http://ansi.interblc.com/2008/07/23/howto-set-up-your-own-twitter/</link>
		<comments>http://ansi.interblc.com/2008/07/23/howto-set-up-your-own-twitter/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 20:51:06 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[idento.ca]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[laconica]]></category>
		<category><![CDATA[microblogger]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=13</guid>
		<description><![CDATA[So first serious blog entry. I try to install my own instance of identi.ca what is microblogging system. Its based on Laconica. Lets see how to install this system on Ubuntu Server Edition. l.m.orchard has compiled an outstanding description see DECAFBAD. Additionally a changed something so here are the description for the latest greatest version. [...]]]></description>
			<content:encoded><![CDATA[<p>So first serious blog entry. I try to install my own instance of <a href="http://identi.ca" target="_blank">identi.ca</a> what is microblogging system. Its based on <a href="http://laconi.ca" target="_blank">Laconica</a>. Lets see how to install this system on Ubuntu Server Edition. l.m.orchard<span class="author"> has compiled an outstanding description see </span><strong><a href="http://decafbad.com/blog/2008/07/03/getting-laconica-up-and-running" target="_blank">DECAFBAD.<br />
</a></strong></p>
<p>Additionally a changed something so here are the description for the latest greatest version. I do not repeat his description only point out the changes.</p>
<p>There is a new version of the xmpPHP library available at least a new release candidate.</p>
<p>http://xmpphp.googlecode.com/files/xmpphp-0.1beta-r50.tar.gz</p>
<p>Beside</p>
<pre><code> cp xmpphp/*.php ../extlib/</code></pre>
<p>also</p>
<p>cp -R xmpphp/XMPPHP ../extlib/</p>
<p>to copy the necessary libraries.<br />
In order to convince apache2 to accept the rewrite it is neccessary to activate the rewrite module with</p>
<p>a2enmod rewrite</p>
<p>/etc/init.d/apache2 force-reload</p>
<p>The XMPP Part is still not running but I try this tomorrow.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/07/23/howto-set-up-your-own-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
