<?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; System</title>
	<atom:link href="http://ansi.interblc.com/category/system/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>Ansi now on weather underground</title>
		<link>http://ansi.interblc.com/2009/06/26/ansi-now-on-weather-underground/</link>
		<comments>http://ansi.interblc.com/2009/06/26/ansi-now-on-weather-underground/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 16:38:02 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Gadget]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[weather]]></category>
		<category><![CDATA[weatherunderground]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=282</guid>
		<description><![CDATA[Moin Since 5 minutes I push my local weather station data (which can be seen in near real time here) to the weather underground network. See the sticker on the right side or this cool one here:]]></description>
			<content:encoded><![CDATA[<p>Moin<br />
Since 5 minutes I push my local weather station data (which can be seen in near real time <a href="http://ansi.no-ip.com/weather/" target="_blank">here</a>) to the <a href="http://www.wunderground.com" target="_blank">weather underground network</a>. See the sticker on the right side or this cool one here:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="290" height="130" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.wunderground.com/swf/pws_mini_rf_nc.swf?station=IBAWUEST2&amp;freq=2.5&amp;units=metric&amp;lang=EN" /><embed type="application/x-shockwave-flash" width="290" height="130" src="http://www.wunderground.com/swf/pws_mini_rf_nc.swf?station=IBAWUEST2&amp;freq=2.5&amp;units=metric&amp;lang=EN"></embed></object></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/26/ansi-now-on-weather-underground/feed/</wfw:commentRss>
		<slash:comments>2</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>Howto download SIPGATE Voicemails (WAVs)</title>
		<link>http://ansi.interblc.com/2009/01/12/howto-download-sipgate-voicemails-wavs/</link>
		<comments>http://ansi.interblc.com/2009/01/12/howto-download-sipgate-voicemails-wavs/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 20:39:46 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[Web2.0]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[nabaztag]]></category>
		<category><![CDATA[sipgate]]></category>
		<category><![CDATA[voip]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=169</guid>
		<description><![CDATA[Moin Sipgate has a very nice API to access the phonebook or write click2call applications. You can also check your voicemail (or as it is called in the API Unified Message). Unfortunately you can only get information on the amount of messages and if they are read or not. With a small wget script you [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p><a href="http://www.sipgate.de" target="_blank">Sipgate</a> has a very nice <a href="https://secure.sipgate.de/api/" target="_blank">API</a> to access the phonebook or write click2call applications. You can also check your voicemail (or as it is called in the API Unified Message). Unfortunately you can only get information on the amount of messages and if they are read or not. With a small wget script you can also download the WAV files and send them for example to your <a href="http://www.nabaztag.com/" target="_blank">Nabaztag</a>. Its cool to come home and your Nabaztag tells you about absent calls end presents you the message without picking up the phone or starting the laptop.</p>
<p>You need one wget call to get your PHPsession key:</p>
<pre> wget --no-check-certificate \</pre>
<pre>--save-cookies /home/ansi/.cookies/sipgate \</pre>
<pre>--keep-session-cookies \</pre>
<pre>--post-data "uname=<strong>Username</strong>&amp;passw=<strong>Passwd</strong>&amp;lasturi=%2Fuser%2Findex.php&amp;jsh=1&amp;okey.x=0&amp;okey.y=0" \
"https://secure.sipgate.de/user/index.php"</pre>
<p>Important to set your Username and Passwd in the script. Wget will then store your PHPsession key to your .cookies folder.</p>
<p>With</p>
<pre> wget "https://secure.sipgate.de/user/voicemail.php?\
       file=<strong>0001</strong>&amp;status=new" \
       --load-cookies /home/ansi/.cookies/sipgate \
       --no-check-certificate
       -O <strong>1</strong>.wav</pre>
<p>you can download your voice messages as wav files. Then a little &#8220;lame&#8221; and an Nabaztag API call and your Voicemail will be presented to you as soon as you come home. Have fun.</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/12/howto-download-sipgate-voicemails-wavs/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Pachube</title>
		<link>http://ansi.interblc.com/2009/01/09/pachube/</link>
		<comments>http://ansi.interblc.com/2009/01/09/pachube/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 07:05:20 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[System]]></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=160</guid>
		<description><![CDATA[Moin Thanks to Oli (@EOLUS) I am now Beta Tester of Pachube. Cool Web 2.0 Service for Real Time Data exchange. People are streaming their measurement data with geographical informations in CSV or EEML XML format and can exchange their data. I am now streaming my server temperature just for testing. Check out http://www.pachube.com/api/1287.xml Hope [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>Thanks to Oli (<a href="http://twitter.com/eolus" target="_blank">@EOLUS</a>) I am now Beta Tester of <a href="http://www.pachube.com" target="_blank">Pachube</a>. Cool Web 2.0 Service for Real Time Data exchange. People are streaming their measurement data with geographical informations in CSV or <a href="http://eeml.org/" target="_blank">EEML</a> XML format and can exchange their data.</p>
<p>I am now streaming my server temperature just for testing. Check out</p>
<pre><a href="http://www.pachube.com/api/1287.xml" target="_blank">http://www.pachube.com/api/1287.xml</a></pre>
<p>Hope more will follow soon.</p>
<p>Its very easy to send your data from linux. For example with curl and csv:</p>
<p>/usr/bin/curl -X PUT -H &#8220;X-<strong>PachubeApiKey</strong>: abc123&#8243; -d &#8220;`/bin/cat  /proc/acpi/thermal_zone/THRM/temperature | /usr/bin/cut -c 26-27`,&#8221; <strong>http://www.pachube.com/api/1287.csv</strong></p>
<p>Important is your Pachube key in the header of the PUT request. And your feed ID. With this example I am catching the acpi CPU temp and send them to Pachube.</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/pachube/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Installed Akismet on my blog</title>
		<link>http://ansi.interblc.com/2008/12/21/installed-akismet-on-my-blog/</link>
		<comments>http://ansi.interblc.com/2008/12/21/installed-akismet-on-my-blog/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 13:07:42 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[SPAM]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=115</guid>
		<description><![CDATA[Just installed Akismet on my blog. Hope I can handle now all these bloody spams. 82 in one day was tooo much! And here is the counter:]]></description>
			<content:encoded><![CDATA[<p>Just installed Akismet on my blog. Hope I can handle now all these bloody spams. 82 in one day was tooo much!</p>
<p>And here is the counter: <?php akismet_counter(); ?></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/12/21/installed-akismet-on-my-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First new Post with WordPress 2.7</title>
		<link>http://ansi.interblc.com/2008/12/12/first-new-post-with-wordpress-27/</link>
		<comments>http://ansi.interblc.com/2008/12/12/first-new-post-with-wordpress-27/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 22:14:57 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=107</guid>
		<description><![CDATA[just installed the latest greatest WordPress 2.7 and hey the Dashboard looks great. Love the new interface.]]></description>
			<content:encoded><![CDATA[<p>just installed the latest greatest WordPress 2.7 and hey the Dashboard looks great. Love the new interface.</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/12/12/first-new-post-with-wordpress-27/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Server, Network and Phone reconfiguration</title>
		<link>http://ansi.interblc.com/2008/11/14/server-network-and-phone-reconfiguration/</link>
		<comments>http://ansi.interblc.com/2008/11/14/server-network-and-phone-reconfiguration/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 12:12:36 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=87</guid>
		<description><![CDATA[Moin I am going to shutdown the server and network and the phone system now for complete reinstall and hardware upgrade / exchange. Hopefully the phone will work in one hour again and the network right after. The server can take a little bit longer&#8230; May be the tux with me&#8230;.]]></description>
			<content:encoded><![CDATA[<p>Moin<br />
I am going to shutdown the server and network and the phone system now for complete reinstall and hardware upgrade / exchange. Hopefully the phone will work in one hour again and the network right after. The server can take a little bit longer&#8230; May be the tux with me&#8230;.</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/11/14/server-network-and-phone-reconfiguration/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to export display via SSH after sudo su</title>
		<link>http://ansi.interblc.com/2008/10/08/how-to-export-display-via-ssh-after-sudo-su/</link>
		<comments>http://ansi.interblc.com/2008/10/08/how-to-export-display-via-ssh-after-sudo-su/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 12:37:31 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[export]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[tunnel]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[x11]]></category>
		<category><![CDATA[xterm]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=81</guid>
		<description><![CDATA[Moin Just figured out together with DrScofield how to export the Display via an SSH tunnel after changing user to root via sudo. And hey it sound trivial but was not easy to find out. Here is the step by step way. ssh -X server #as normal user xterm #for testing if export display as [...]]]></description>
			<content:encoded><![CDATA[<p>Moin<br />
Just figured out together with DrScofield how to export the Display via an SSH tunnel after changing user to root via sudo. And hey it sound trivial but was not easy to find out. Here is the step by step way.</p>
<ol>
<li>ssh -X server #as normal user</li>
<li>xterm #for testing if export display as normal user works</li>
<li>echo $DISPLAY #write it down</li>
<li>xauth #enters the shell of xauth
<ol>
<li>list # find the line with the display number from step 3 for me it was &#8220;wpsvm054/unix:12  MIT-MAGIC-COOKIE-1  071df2e12cfff0ed75fd0af5869665f7&#8243; remember the first part of it</li>
<li>quit #to leave the shell</li>
</ol>
</li>
<li>xauth extract filename system/unix:12 # the line from step 4.1</li>
<li>sudo su &#8211; # to become root</li>
<li>xauth merge filename # filename from step 5</li>
<li>export DISPLAY=:nummer.0 #Displaynumber from step 3 resp. 4.1</li>
<li>xterm #for testing</li>
</ol>
<p>Hope it works on other systems too.</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/10/08/how-to-export-display-via-ssh-after-sudo-su/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto Setup Ubuntu postfix to send email with 1und1 as smarthost</title>
		<link>http://ansi.interblc.com/2008/07/24/howto-setup-ubuntu-postfix-to-send-email-with-1und1-as-smarthost/</link>
		<comments>http://ansi.interblc.com/2008/07/24/howto-setup-ubuntu-postfix-to-send-email-with-1und1-as-smarthost/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 13:21:20 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[1und1]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[postfix]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[smtp]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=25</guid>
		<description><![CDATA[Installing Postfix with apt-get install postfix or choose dpkg-reconfigure postfix when you allready installed postfix before. The configuration working for me is &#8220;satelite&#8221;. System Mail Name: your maildomain name (interblc.com) not the dns name of your server. SMTP relay host:smtp.1und1.de Root and Postmaster mail recipient: your user account or external email address Other destinations to [...]]]></description>
			<content:encoded><![CDATA[<p>Installing Postfix with</p>
<p>apt-get install postfix</p>
<p>or choose dpkg-reconfigure postfix when you allready installed postfix before.</p>
<p>The configuration working for me is &#8220;satelite&#8221;.</p>
<ol>
<li>System Mail Name: your maildomain name (interblc.com) not the dns name of your server.</li>
<li>SMTP relay host:<strong>smtp.1und1.de</strong></li>
<li>Root and Postmaster mail recipient: your user account or external email address</li>
<li>Other destinations to accept mail for: your servername, localhost.localdomain,localhost</li>
<li>Force synchronous updates on mail queue: If you have ext3 oder reiser NO otherwise better YES</li>
<li>Local Networks: 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128</li>
<li>Procmail for local delivery: Yes</li>
<li>Mailbox size limit: 0</li>
<li>Local address extension character: +</li>
<li>Internet Protocol:All</li>
</ol>
<p>Edit /etc/postfix/main.cf and add these lines at the end:</p>
<p>smtp_sasl_auth_enable = yes<br />
smtp_sasl_security_options = noanonymous<br />
smtp_sasl_password_maps = hash:/etc/postfix/sasl_password</p>
<p>Create <strong>/etc/postfox/sasl_password</strong> with one line:</p>
<p>smtp.1und1.de <strong>MAILACCOUNT_at_1und1</strong>:<strong>PASSWD</strong></p>
<p>Create and db file from this passwd file with</p>
<p><strong>postmap /etc/postfix/sasl_password</strong></p>
<p>Restart postfix with:</p>
<p><strong>/etc/init.d/postfix restart</strong><br />
Now it should work. Give it a try with</p>
<p>date | mail -s &#8220;testing&#8221; regen@wetter.de</p>
<p>and watch the logfile with</p>
<p>tail -f /var/log/mail.log</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/24/howto-setup-ubuntu-postfix-to-send-email-with-1und1-as-smarthost/feed/</wfw:commentRss>
		<slash:comments>13</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>
		<item>
		<title>Ansis World is now open</title>
		<link>http://ansi.interblc.com/2008/07/23/ansis-world-is-now-open/</link>
		<comments>http://ansi.interblc.com/2008/07/23/ansis-world-is-now-open/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 09:40:36 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[start]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=10</guid>
		<description><![CDATA[Moin Sodale, after a long time my colleagues convinced me to start a blog. WordPress is now up and running. Lets see what I will write here.]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>Sodale, after a long time my colleagues convinced me to start a blog.  WordPress is now up and running. Lets see what I will write here. <img src='http://ansi.interblc.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </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/ansis-world-is-now-open/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
