<?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; howto</title>
	<atom:link href="http://ansi.interblc.com/tag/howto/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>RSS Torrent List from Onlinetvrecorder.com</title>
		<link>http://ansi.interblc.com/2009/01/05/rss-torrent-list-from-onlinetvrecordercom/</link>
		<comments>http://ansi.interblc.com/2009/01/05/rss-torrent-list-from-onlinetvrecordercom/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 16:00:12 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[cookie]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[onlinetvrecorder]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[torrent]]></category>
		<category><![CDATA[wget]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=153</guid>
		<description><![CDATA[Moin Onlinetvrecorder disabled the good old RSS where I can get the list of my torrents of recorded movies. Unfortunatelly the new RSS link requires a session cookie what is not so easy with a bash script. Here is a small solution how to enable the automatic download of the RSS stream in order to [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p><a href="http://www.Onlinetvrecorder.com" target="_blank">Onlinetvrecorder</a> disabled the good old RSS where I can get the list of my torrents of recorded movies. Unfortunatelly the new RSS link requires a session cookie what is not so easy with a bash script. Here is a small solution how to enable the automatic download of the RSS stream in order to download the feeds automatically.</p>
<p>First get an session cookie for <a href="http://www.onlinetvrecorder.com" target="_blank">www.onlinetvrecorder.com</a> and store it into a local file.</p>
<pre>wget \
    --save-cookies ~/.cookies/onlinetvrecorder \
<strong>    --keep-session-cookies \</strong>
    --post-data "email=<strong>name%40provider.com</strong>&amp;pass=<strong>whatever</strong>&amp;checkbox_remember=checkbox_remember&amp;btn_login=Login&amp;do=login" \
    -O - \
    http://www.onlinetvrecorder.com/index.php \
    &gt; /dev/null</pre>
<p>With this command you store the onlinetvrecorder session key to a file what you can use later on to download the RSS feed. &#8220;keep-session-cookies&#8221; are important because the key is only valid in the session. Replace &#8220;name&#8221;, &#8220;provider.com&#8221;  and &#8220;whatever&#8221; with your personal data. the &#8220;%40&#8243; is url code for @.</p>
<pre>wget -o /dev/null -O - --load-cookies ~/.cookies/onlinetvrecorder "http://www.onlinetvrecorder.com/rss/rss.php?hash=<strong>hashcode</strong>&amp;userid=<strong>id</strong>"</pre>
<p>Also replace &#8220;hashcode&#8221; and &#8220;id&#8221; with your personal data. You can see it in the browser when you check the RSS feed in your browser. Thats all. I think the uTorrent or other trackers can deal with a local file to parse. So just use a cronjob to store this file from time to time to local disc and let uTorrent do the rest. <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/2009/01/05/rss-torrent-list-from-onlinetvrecordercom/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
	</channel>
</rss>
