<?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>Philipp's braindump</title>
	<atom:link href="http://www.kolmann.at/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kolmann.at</link>
	<description></description>
	<lastBuildDate>Thu, 28 Apr 2011 14:02:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>ESXi and iSCSI Setup</title>
		<link>http://www.kolmann.at/2011/04/esxi-and-iscsi-setup/</link>
		<comments>http://www.kolmann.at/2011/04/esxi-and-iscsi-setup/#comments</comments>
		<pubDate>Thu, 28 Apr 2011 14:02:12 +0000</pubDate>
		<dc:creator>philipp</dc:creator>
				<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.kolmann.at/?p=64</guid>
		<description><![CDATA[Today I learned that with iSCSI you should set proper NICs to the iSCSI vmk&#8217;s. Regarding http://www.vmware.com/pdf/vsphere4/r41/vsp_41_esxi_server_config.pdf Setting Up and Configuring Software iSCSI Adapter on page 91 you need to connect a physical NIC to the vmkernel interface which does the iSCSI traffic: esxcli swiscsi nic add -n vmk2 -d vmhba37]]></description>
			<content:encoded><![CDATA[<p>Today I learned that with iSCSI you should set proper NICs to the iSCSI vmk&#8217;s.</p>
<p><span id="more-64"></span></p>
<p>Regarding <a href="http://www.vmware.com/pdf/vsphere4/r41/vsp_41_esxi_server_config.pdf">http://www.vmware.com/pdf/vsphere4/r41/vsp_41_esxi_server_config.pdf</a> <strong>Setting Up and Configuring Software iSCSI Adapter</strong> on page 91 you need to connect a physical NIC to the vmkernel interface which does the iSCSI traffic:</p>
<p><code>esxcli swiscsi nic add -n vmk2 -d vmhba37</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kolmann.at/2011/04/esxi-and-iscsi-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ESXi and SSH authorized keys</title>
		<link>http://www.kolmann.at/2011/04/esxi-and-ssh-authorized-keys/</link>
		<comments>http://www.kolmann.at/2011/04/esxi-and-ssh-authorized-keys/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 12:14:48 +0000</pubDate>
		<dc:creator>philipp</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kolmann.at/?p=61</guid>
		<description><![CDATA[When using ESXi, after every reboot the authorized keys are lost. If you add them to the oem.tgz file which gets deployed each reboot, you&#8217;re fine: Copy the existing oem.tgz from the ESXi server: scp your.esxi.server.ip:/bootbank/oem.tgz . create a new directory: mkdir oem change into that dir: cd oem extract the content of current oem.tgz: [...]]]></description>
			<content:encoded><![CDATA[<p>When using ESXi, after every reboot the authorized keys are lost.<br />
<span id="more-61"></span><br />
If you add them to the oem.tgz file which gets deployed each reboot, you&#8217;re fine:</p>
<p>Copy the existing oem.tgz from the ESXi server:</p>
<p><code>scp your.esxi.server.ip:/bootbank/oem.tgz .</code></p>
<p>create a new directory:</p>
<p><code>mkdir oem</code></p>
<p>change into that dir:</p>
<p><code>cd oem</code></p>
<p>extract the content of current oem.tgz:</p>
<p><code>tar xvfz ../oem.tgz</code></p>
<p>add your .ssh/authorized_keys file:</p>
<p><code>cp ~/.ssh/authorized_keys .</code></p>
<p>create a new tar file:<br />
<code>tar cvfz ../oem.tgz etc lib sbin usr var .ssh</code></p>
<p>and finally copy the new oem back to the server:</p>
<p><code>scp ../oem.tgz your.esxi.server.ip:/bootbank/oem.tgz</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kolmann.at/2011/04/esxi-and-ssh-authorized-keys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ESXi 4.1 and Etherchannel</title>
		<link>http://www.kolmann.at/2011/04/esxi-4-1-and-etherchannel/</link>
		<comments>http://www.kolmann.at/2011/04/esxi-4-1-and-etherchannel/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 11:42:50 +0000</pubDate>
		<dc:creator>philipp</dc:creator>
				<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.kolmann.at/?p=56</guid>
		<description><![CDATA[Today I had an issue with ESXi 4.1 and Etherchannel. Some googleing found me this post: vim-cmd hostsvc/net/vswitch_setpolicy -–nicteaming-policy=loadbalance_ip vSwitch0 and vim-cmd hostsvc/net/portgroup_set –-nicteaming-policy=loadbalance_ip vSwitch0 ‘Management Network’ and for good measure vim-cmd hostsvc/net/refresh If you have a german keyboard (like me) and have issues with the Remote Console of your Server, try setting the language [...]]]></description>
			<content:encoded><![CDATA[<p>Today I had an issue with ESXi 4.1 and Etherchannel.<br />
<span id="more-56"></span><br />
Some googleing found me <a href="http://communities.vmware.com/message/1449365">this post</a>:</p>
<p><code>vim-cmd hostsvc/net/vswitch_setpolicy -–nicteaming-policy=loadbalance_ip vSwitch0</code><br />
and<br />
<code>vim-cmd hostsvc/net/portgroup_set –-nicteaming-policy=loadbalance_ip vSwitch0 ‘Management Network’</code><br />
and for good measure<br />
<code>vim-cmd hostsvc/net/refresh </code></p>
<p>If you have a german keyboard (like me) and have issues with the Remote Console of your Server, try setting the language to english:</p>
<p><code>setxkbmap us</code></p>
<p>return to german via:</p>
<p><code>setxkbmap de</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kolmann.at/2011/04/esxi-4-1-and-etherchannel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make Thunderbird 3 look &amp; act like Thunderbird 2</title>
		<link>http://www.kolmann.at/2010/05/make-thunderbird-3-look-act-like-thunderbird-2/</link>
		<comments>http://www.kolmann.at/2010/05/make-thunderbird-3-look-act-like-thunderbird-2/#comments</comments>
		<pubDate>Thu, 27 May 2010 13:49:30 +0000</pubDate>
		<dc:creator>philipp</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kolmann.at/?p=49</guid>
		<description><![CDATA[Backup for me from http://getsatisfaction.com/mozilla_messaging/topics/make_thunderbird_3_look_act_like_thunderbird_2: Here are some tips for making TB3 look &#38; act like TB2: (1) Switch to "All Folders" view. Use the little left and right arrows in the header bar at the top of the folder tree pane. Or go to Help --&#62; Migration Assistant and then select 'use "all folders" [...]]]></description>
			<content:encoded><![CDATA[<p>Backup for me from <a href="http://getsatisfaction.com/mozilla_messaging/topics/make_thunderbird_3_look_act_like_thunderbird_2">http://getsatisfaction.com/mozilla_messaging/topics/make_thunderbird_3_look_act_like_thunderbird_2</a>:</p>
<p><code>Here are some tips for making TB3 look &amp; act like TB2:</p>
<p>(1) Switch to "All Folders" view. Use the little left and right arrows in the header bar at the top of the folder tree pane. Or go to Help --&gt; Migration Assistant and then select 'use "all folders" mode'.</p>
<p>(2) Switch to the old, familiar toolbar. Go to Help --&gt; Migration Assistant and then select "use original toolbar".</p>
<p>(3) Turn off indexing. Go to Tools --&gt; Options --&gt; Advanced --&gt; General (tab) and uncheck the "Enable Global Search and Indexer" box.</p>
<p>(4) Open messages in new window (not a tab). Go to Tools --&gt; Options --&gt; Advanced --&gt; Reading &amp; Display (tab). Change the "Open messages in:" selection to "A new message window".</p>
<p>(5) Hide tabs when there is only 1. Go to Tools --&gt; Options --&gt; Advanced --&gt; General (tab) and click the "Config Editor..." button. If a cautionary dialog box pops up then click the "I'll be careful, I promise!" button. Start typing in the filter line of the small window that opens. Type "mail.tabs.autoHide". You will see a seeting with this preference name in the list below. Double click it to change it to "true".</p>
<p>Doing both (4) and (5) will (mostly) turn off tabs. </code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kolmann.at/2010/05/make-thunderbird-3-look-act-like-thunderbird-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Thunderbird Extensions</title>
		<link>http://www.kolmann.at/2010/01/my-thunderbird-extensions/</link>
		<comments>http://www.kolmann.at/2010/01/my-thunderbird-extensions/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 15:25:11 +0000</pubDate>
		<dc:creator>philipp</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kolmann.at/?p=47</guid>
		<description><![CDATA[Just a reminder for myself: Sync Kolab Buttons! ConfigDate Display Mail User Agent Display Quota Folderpane Tools header scroll extension Mail Redirect Toolbar Buttons]]></description>
			<content:encoded><![CDATA[<p>Just a reminder for myself:</p>
<ul>
<li><a href="https://addons.mozilla.org/en-US/thunderbird/addon/519">Sync Kolab</a></li>
<li><a href="https://addons.mozilla.org/en-US/thunderbird/addon/106">Buttons!</a></li>
<li><a href="https://addons.mozilla.org/en-US/thunderbird/addon/901">ConfigDate</a></li>
<li><a href="https://addons.mozilla.org/en-US/thunderbird/addon/562">Display Mail User Agent</a></li>
<li><a href="https://addons.mozilla.org/en-US/thunderbird/addon/881">Display Quota</a></li>
<li><a href="https://addons.mozilla.org/en-US/thunderbird/addon/258">Folderpane Tools</a></li>
<li><a href="https://addons.mozilla.org/en-US/thunderbird/addon/1003">header scroll extension</a></li>
<li><a href="https://addons.mozilla.org/en-US/thunderbird/addon/550">Mail Redirect</a></li>
<li><a href="https://addons.mozilla.org/en-US/thunderbird/addon/2377">Toolbar Buttons</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.kolmann.at/2010/01/my-thunderbird-extensions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable debugging with last Skype4Py</title>
		<link>http://www.kolmann.at/2009/12/enable-debugging-with-last-skype4py/</link>
		<comments>http://www.kolmann.at/2009/12/enable-debugging-with-last-skype4py/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 09:32:04 +0000</pubDate>
		<dc:creator>philipp</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kolmann.at/?p=44</guid>
		<description><![CDATA[With last Skype4Py Arek changed a bit the logging. To enable it now you need to put the following in your script: import logging logging.basicConfig(level=logging.DEBUG)]]></description>
			<content:encoded><![CDATA[<p>With last <a href="https://developer.skype.com/wiki/Skype4Py" target="_blank">Skype4Py</a> Arek changed a bit the logging. To enable it now you need to put the following in your script:</p>
<p><code>import logging<br />
logging.basicConfig(level=logging.DEBUG)</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kolmann.at/2009/12/enable-debugging-with-last-skype4py/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Skype: Participate in Pulic Chats</title>
		<link>http://www.kolmann.at/2009/08/linux-skype-participate-in-pulic-chats/</link>
		<comments>http://www.kolmann.at/2009/08/linux-skype-participate-in-pulic-chats/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 17:28:03 +0000</pubDate>
		<dc:creator>philipp</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kolmann.at/?p=37</guid>
		<description><![CDATA[Today I got some hint how to implement joining public chats via API in linux Skype. So I added those few lines to my action-handler script and now you can also join public chats from linux: Grab the newest version at: http://www.kolmann.at/philipp/linux/skype_action_handler/]]></description>
			<content:encoded><![CDATA[<p>Today I got some hint how to implement joining public chats via API in linux Skype.<br />
<span id="more-37"></span></p>
<p>So I added those few lines to my action-handler script and now you can also join public chats from linux:</p>
<p>Grab the newest version at: <a href="http://www.kolmann.at/philipp/linux/skype_action_handler/">http://www.kolmann.at/philipp/linux/skype_action_handler/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kolmann.at/2009/08/linux-skype-participate-in-pulic-chats/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Debian Lenny Xen StepByStep</title>
		<link>http://www.kolmann.at/2009/08/debian-lenny-xen-stepbystep/</link>
		<comments>http://www.kolmann.at/2009/08/debian-lenny-xen-stepbystep/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 14:29:37 +0000</pubDate>
		<dc:creator>philipp</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kolmann.at/?p=35</guid>
		<description><![CDATA[on a plain Lenny with Grub as Boot Manager (Lilo doesn&#8217;t work with xen ): apt-get install xen-hypervisor-3 xenwatch xen-tools linux-image-2.6-xen-amd64 /etc/xen/xend-config.sxp: "(network-script network-bridge)" Edit /etc/xen-tools/xen-tools.conf time xen-create-image --hostname=test --ip=10.0.0.11 --arch=amd64 --role=udev]]></description>
			<content:encoded><![CDATA[<p>on a plain Lenny with Grub as Boot Manager (Lilo doesn&#8217;t work with xen <img src='http://www.kolmann.at/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  ):</p>
<ul>
<li><code>apt-get install xen-hypervisor-3 xenwatch xen-tools  linux-image-2.6-xen-amd64</code></li>
<li><code>/etc/xen/xend-config.sxp: "(network-script network-bridge)"</code></li>
<li> Edit /etc/xen-tools/xen-tools.conf</li>
<li><code>time xen-create-image --hostname=test --ip=10.0.0.11 --arch=amd64 --role=udev</code></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.kolmann.at/2009/08/debian-lenny-xen-stepbystep/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List hardware of your server</title>
		<link>http://www.kolmann.at/2009/07/list-hardware-of-your-server/</link>
		<comments>http://www.kolmann.at/2009/07/list-hardware-of-your-server/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 13:55:49 +0000</pubDate>
		<dc:creator>philipp</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.kolmann.at/?p=33</guid>
		<description><![CDATA[Recently I wondered which hardware I am using in a remote root server. A friend of mine came up with the following command: dmidecode This even works on ESX 3.5 Hosts. You see really detailled which hardware is in the box.]]></description>
			<content:encoded><![CDATA[<p>Recently I wondered which hardware I am using in a remote root server. A friend of mine came up with the following command:</p>
<p><code>dmidecode</code></p>
<p>This even works on ESX 3.5 Hosts. You see really detailled which hardware is in the box.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kolmann.at/2009/07/list-hardware-of-your-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>VMware ESX: Create depot and install patches from there</title>
		<link>http://www.kolmann.at/2009/02/vmware-esx-create-depot-and-install-patches-from-there/</link>
		<comments>http://www.kolmann.at/2009/02/vmware-esx-create-depot-and-install-patches-from-there/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 11:42:38 +0000</pubDate>
		<dc:creator>philipp</dc:creator>
				<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.kolmann.at/?p=24</guid>
		<description><![CDATA[Today I have made 2 scripts which ease ESX 3.5 patch management for me. First script (getpatch) is to download all needed patches onto a local server and extract them. The second (patchesx) is run on the ESX server to install the patches. In getpatch you need to set the PATCHDIR to the proper location. [...]]]></description>
			<content:encoded><![CDATA[<p>Today I have made 2 scripts which ease ESX 3.5 patch management for me.<br />
<span id="more-24"></span></p>
<p>First script (getpatch) is to download all needed patches onto a local server and extract them. The second (patchesx) is run on the ESX server to install the patches.</p>
<p>In getpatch you need to set the PATCHDIR to the proper location. In patchesx you need to set the DEPOT-path according to your webserver.</p>
<p><a href='http://www.kolmann.at/wp-content/2009/02/getpatch'>getpatch</a><br />
<a href='http://www.kolmann.at/wp-content/2009/02/patchesx'>patchesx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kolmann.at/2009/02/vmware-esx-create-depot-and-install-patches-from-there/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

