<?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>Jason L. Froebe - Tech tips and How Tos for Fellow Techies</title>
	<atom:link href="http://froebe.net/blog/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://froebe.net/blog</link>
	<description>Tips &#38; Tricks for Databases (Sybase, Oracle, MySQL, PostgreSQL, SQLite), Windows, Linux, Solaris, Perl, Java, Bash and so much much more</description>
	<lastBuildDate>Sun, 22 Aug 2010 00:00:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Getting ipblock / iplist error: can&#8217;t convert (some number)?  It&#8217;s a parsing error in iplist!</title>
		<link>http://froebe.net/blog/2010/08/21/getting-ipblock-iplist-error-cant-convert-some-number-its-a-parsing-error-in-iplist/</link>
		<comments>http://froebe.net/blog/2010/08/21/getting-ipblock-iplist-error-cant-convert-some-number-its-a-parsing-error-in-iplist/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 00:00:49 +0000</pubDate>
		<dc:creator>Jason L Froebe</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[can't convert]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[ip filter]]></category>
		<category><![CDATA[ipblock]]></category>
		<category><![CDATA[iplist]]></category>

		<guid isPermaLink="false">http://froebe.net/blog/?p=1271</guid>
		<description><![CDATA[If you&#8217;re getting a parsing error that is preventing ipblock / iplist from starting such as &#8220;error: can&#8217;t convert 192&#8220;, the first thing to do is to check with ip blocking list is causing the issue. In your /etc/ipblock.conf, comment out your lists one at a time until you find the problem list. #BLOCK_LIST=&#8221;badpeers.gz bogon.gz [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re getting a parsing error that is preventing ipblock / iplist from starting such as &#8220;<a href="http://ubuntuforums.org/showthread.php?p=9749129&#038;posted=1#post9749129">error: can&#8217;t convert 192</a>&#8220;, the first thing to do is to check with ip blocking list is causing the issue. In your /etc/ipblock.conf, comment out your lists one at a time until you find the problem list.</p>
<p>#BLOCK_LIST=&#8221;badpeers.gz <strong>bogon.gz</strong> level1.gz&#8221;<br />
BLOCK_LIST=&#8221;badpeers.gz level1.gz</p>
<p>Since yesterday, I&#8217;ve noticed that bogon.gz was causing the problem. Now, let&#8217;s look at the only place that produces the &#8220;can&#8217;t convert &#8221; error message:</p>
<p>src/list.cpp:</p>
<div class="cpp dean_ch"><span class="kw4">uint32_t</span> list<span class="sy4">::</span><span class="me2">str2ip</span><span class="br0">&#40;</span><span class="kw4">const</span> std<span class="sy4">::</span><span class="me2">string</span><span class="sy3">&amp;</span> str<span class="br0">&#41;</span><br />
<span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw4">uint16_t</span> a, b, c, d<span class="sy4">;</span></p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">if</span> <span class="br0">&#40;</span><span class="kw3">sscanf</span><span class="br0">&#40;</span>str.<span class="me1">c_str</span><span class="br0">&#40;</span><span class="br0">&#41;</span>, <span class="st0">&quot;%hu.%hu.%hu.%hu&quot;</span>, <span class="sy3">&amp;</span>a, <span class="sy3">&amp;</span>b, <span class="sy3">&amp;</span>c, <span class="sy3">&amp;</span>d<span class="br0">&#41;</span> <span class="sy3">!</span><span class="sy1">=</span> <span class="nu0">4</span> <span class="sy3">||</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; a <span class="sy1">&gt;</span> <span class="nu0">255</span> <span class="sy3">||</span> b <span class="sy1">&gt;</span> <span class="nu0">255</span> <span class="sy3">||</span> c <span class="sy1">&gt;</span> <span class="nu0">255</span> <span class="sy3">||</span> d <span class="sy1">&gt;</span> <span class="nu0">255</span><span class="br0">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">throw</span> std<span class="sy4">::</span><span class="me2">runtime_error</span><span class="br0">&#40;</span><span class="st0">&quot;can&#8217;t convert &quot;</span> <span class="sy2">+</span> str<span class="br0">&#41;</span><span class="sy4">;</span></p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">return</span> a <span class="sy1">&lt;</span> <span class="sy1">&lt;</span> <span class="nu0">24</span> <span class="sy3">|</span> b <span class="sy1">&lt;&lt;</span> <span class="nu0">16</span> <span class="sy3">|</span> c <span class="sy1">&lt;&lt;</span> <span class="nu0">8</span> <span class="sy3">|</span> d<span class="sy4">;</span><br />
<span class="br0">&#125;</span></div>
<p>Notice that the sscanf() will read in a *full* ip address and convert it to hex. If any part of the ip address is invalid (like a letter) or missing (see the bogon snippet below), iplist will spit out the error message and die.</p>
<p>The last two lines of bogon.gz (/var/cache/iplist/bogon.gz) shows us an incomplete ip address:</p>
<p>Bogon:192.231.155.0-192.231.155.255<br />
<span style="color: #ff0000;">Bogon:192.231.188.0-192</span></p>
<p>Whether or not to forgo the bogon.gz is up to you but personally I would like an option in iplist to print a warning and skip over that bad ip entry.</pre>
]]></content:encoded>
			<wfw:commentRss>http://froebe.net/blog/2010/08/21/getting-ipblock-iplist-error-cant-convert-some-number-its-a-parsing-error-in-iplist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>For those of you looking for photos for the Susan G. Komen 3 Day 60 Miles Walk (http://www.the3day.org)  here you go:</title>
		<link>http://froebe.net/blog/2010/08/09/for-those-of-you-looking-for-photos-for-the-susan-g-komen-3-day-60-miles-walk-httpwww-the3day-org-here-you-go/</link>
		<comments>http://froebe.net/blog/2010/08/09/for-those-of-you-looking-for-photos-for-the-susan-g-komen-3-day-60-miles-walk-httpwww-the3day-org-here-you-go/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 22:34:50 +0000</pubDate>
		<dc:creator>Jason L Froebe</dc:creator>
				<category><![CDATA[Breast Cancer 3 Day Walk]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Family]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[3day]]></category>
		<category><![CDATA[breast cancer]]></category>
		<category><![CDATA[Chicago]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[susan g komen]]></category>
		<category><![CDATA[walk]]></category>

		<guid isPermaLink="false">http://froebe.net/blog/?p=1269</guid>
		<description><![CDATA[http://www.flickr.com/groups/3day_chicago_2010/ I am uploading 246 photos initially with more to follow.  Please add your photos or find your friends in the photos]]></description>
			<content:encoded><![CDATA[<p><a title="3 Day Chicago 2010" href="http://www.flickr.com/groups/3day_chicago_2010/">http://www.flickr.com/groups/3day_chicago_2010/</a></p>
<p>I am uploading 246 photos initially with more to follow.  Please add your photos or find your friends in the photos <img src='http://froebe.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div>
<div><a onmousedown="UntrustedLink.bootstrap($(this), &quot;37820&quot;, event);" rel="nofollow" tabindex="-1" href="http://www.the3day.org/" target="_blank"><img src="http://external.ak.fbcdn.net/safe_image.php?d=ce43baa2cce41d30f83cf3392ddf1c30&amp;w=90&amp;h=90&amp;url=http%3A%2F%2Fwww.the3day.org%2Fimages%2F2010%2Fevents%2Fhome_events_ch_off.jpg" alt="" /></a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://froebe.net/blog/2010/08/09/for-those-of-you-looking-for-photos-for-the-susan-g-komen-3-day-60-miles-walk-httpwww-the3day-org-here-you-go/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This is every father (especially my dad and father-in-law) when no one else is around</title>
		<link>http://froebe.net/blog/2010/08/07/this-is-every-father-especially-my-dad-and-father-in-law-when-no-one-else-is-around/</link>
		<comments>http://froebe.net/blog/2010/08/07/this-is-every-father-especially-my-dad-and-father-in-law-when-no-one-else-is-around/#comments</comments>
		<pubDate>Sun, 08 Aug 2010 03:05:17 +0000</pubDate>
		<dc:creator>Jason L Froebe</dc:creator>
				<category><![CDATA[humor]]></category>
		<category><![CDATA[muppets]]></category>
		<category><![CDATA[popcorn]]></category>
		<category><![CDATA[swedish chef]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://froebe.net/blog/?p=1267</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/B7UmUX68KtE&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/B7UmUX68KtE&amp;hl=en_US&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://froebe.net/blog/2010/08/07/this-is-every-father-especially-my-dad-and-father-in-law-when-no-one-else-is-around/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You think U.S. Congress works for you?  You may want to reserve judgement on that</title>
		<link>http://froebe.net/blog/2010/08/06/you-think-u-s-congress-works-for-you-you-may-want-to-reserve-judgement-on-that/</link>
		<comments>http://froebe.net/blog/2010/08/06/you-think-u-s-congress-works-for-you-you-may-want-to-reserve-judgement-on-that/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 12:05:05 +0000</pubDate>
		<dc:creator>Jason L Froebe</dc:creator>
				<category><![CDATA[misc]]></category>
		<category><![CDATA[9/11]]></category>
		<category><![CDATA[corporations]]></category>
		<category><![CDATA[first responders]]></category>
		<category><![CDATA[jon stewart]]></category>
		<category><![CDATA[multinational corporations]]></category>
		<category><![CDATA[the daily show]]></category>
		<category><![CDATA[us congress]]></category>
		<category><![CDATA[us government]]></category>
		<category><![CDATA[us house of representatives]]></category>

		<guid isPermaLink="false">http://froebe.net/blog/?p=1264</guid>
		<description><![CDATA[The Daily Show With Jon Stewart Mon &#8211; Thurs 11p / 10c]]></description>
			<content:encoded><![CDATA[<table style='font:11px arial; color:#333; background-color:#f5f5f5' cellpadding='0' cellspacing='0' width='360' height='353'>
<tbody>
<tr style='background-color:#e5e5e5' valign='middle'>
<td style='padding:2px 1px 0px 5px;'><a target='_blank' style='color:#333; text-decoration:none; font-weight:bold;' href='http://www.thedailyshow.com'>The Daily Show With Jon Stewart</a></td>
<td style='padding:2px 5px 0px 5px; text-align:right; font-weight:bold;'>Mon &#8211; Thurs 11p / 10c</td>
</tr>
<tr style='height:14px;' valign='middle'>
<td style='padding:2px 1px 0px 5px;' colspan='2'<a target='_blank' style='color:#333; text-decoration:none; font-weight:bold;' href='http://www.thedailyshow.com/watch/wed-august-4-2010/i-give-up---9-11-responders-bill'>I Give Up &#8211; 9/11 Responders Bill<a></a></td>
</tr>
<tr style='height:14px; background-color:#353535' valign='middle'>
<td colspan='2' style='padding:2px 5px 0px 5px; width:360px; overflow:hidden; text-align:right'><a target='_blank' style='color:#96deff; text-decoration:none; font-weight:bold;' href='http://www.thedailyshow.com/'>www.thedailyshow.com</a></td>
</tr>
<tr valign='middle'>
<td style='padding:0px;' colspan='2'><embed style='display:block' src='http://media.mtvnservices.com/mgid:cms:item:comedycentral.com:343059' width='360' height='301' type='application/x-shockwave-flash' wmode='window' allowFullscreen='true' flashvars='autoPlay=false' allowscriptaccess='always' allownetworking='all' bgcolor='#000000'></embed></td>
</tr>
<tr style='height:18px;' valign='middle'>
<td style='padding:0px;' colspan='2'>
<table style='margin:0px; text-align:center' cellpadding='0' cellspacing='0' width='100%' height='100%'>
<tr valign='middle'>
<td style='padding:3px; width:33%;'><a target='_blank' style='font:10px arial; color:#333; text-decoration:none;' href='http://www.thedailyshow.com/full-episodes/'>Daily Show Full Episodes</a></td>
<td style='padding:3px; width:33%;'><a target='_blank' style='font:10px arial; color:#333; text-decoration:none;' href='http://www.indecisionforever.com/'>Political Humor</a></td>
<td style='padding:3px; width:33%;'><a target='_blank' style='font:10px arial; color:#333; text-decoration:none;' href='http://www.thedailyshow.com/videos/tag/Tea+Party'>Tea Party</a></td>
</tr>
</table>
</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://froebe.net/blog/2010/08/06/you-think-u-s-congress-works-for-you-you-may-want-to-reserve-judgement-on-that/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Having trouble with VMware Player&#8217;s (or Workstation) Unity mode and Ubuntu Linux?  Are you using the NVidia display driver with multiple monitors?</title>
		<link>http://froebe.net/blog/2010/06/23/having-trouble-with-vmware-players-or-workstation-unity-mode-and-ubuntu-linux-are-you-using-the-nvidia-display-driver-with-multiple-monitors/</link>
		<comments>http://froebe.net/blog/2010/06/23/having-trouble-with-vmware-players-or-workstation-unity-mode-and-ubuntu-linux-are-you-using-the-nvidia-display-driver-with-multiple-monitors/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 15:24:47 +0000</pubDate>
		<dc:creator>Jason L Froebe</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[virtualization]]></category>

		<guid isPermaLink="false">http://froebe.net/blog/?p=1262</guid>
		<description><![CDATA[Look no more, as a simple driver option in your /etc/X11/xorg.conf needs to be added to the Device Section: Option &#8220;AddARGBGLXVisuals&#8221; &#8220;True&#8221; Now your applications running in VMware Unity mode won&#8217;t jump all over the place! The option doesn&#8217;t appear to be needed for single monitor setups. ﻿# nvidia-settings: X configuration file generated by nvidia-settings [...]]]></description>
			<content:encoded><![CDATA[<p>Look no<a href="http://www.vmware.com"><img src="http://froebe.net/blog/wp-content/uploads/2008/09/vmware.png" alt="" title="VMware" width="267" height="112" class="alignright size-full wp-image-711" /></a> more, as a simple driver option in your /etc/X11/xorg.conf needs to be added to the <i>Device</i> Section:  Option &#8220;AddARGBGLXVisuals&#8221; &#8220;True&#8221;</p>
<p>Now your applications running in <a href="http://www.vmware.com/products/player/">VMware</a> Unity mode won&#8217;t jump all over the place!  The option doesn&#8217;t appear to be needed for single monitor setups.<br />
<span id="more-1262"></span></p>
<div class="bash dean_ch">
﻿<span class="co0"># nvidia-settings: X configuration file generated by nvidia-settings</span><br />
<span class="co0"># nvidia-settings: &nbsp;version 1.0 &nbsp;(buildd@palmer) &nbsp;Fri Apr &nbsp;9 10:35:18 UTC 2010</span></p>
<p>
Section <span class="st0">&quot;ServerLayout&quot;</span><br />
&nbsp; &nbsp; Identifier &nbsp; &nbsp; <span class="st0">&quot;Default Layout&quot;</span><br />
&nbsp; &nbsp; Screen &nbsp; &nbsp; &nbsp;<span class="nu0">0</span> &nbsp;<span class="st0">&quot;Screen0&quot;</span> <span class="nu0">0</span> <span class="nu0">0</span><br />
&nbsp; &nbsp; InputDevice &nbsp; &nbsp;<span class="st0">&quot;Keyboard0&quot;</span> <span class="st0">&quot;CoreKeyboard&quot;</span><br />
&nbsp; &nbsp; InputDevice &nbsp; &nbsp;<span class="st0">&quot;Mouse0&quot;</span> <span class="st0">&quot;CorePointer&quot;</span><br />
&nbsp; &nbsp; Option &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&quot;Xinerama&quot;</span> <span class="st0">&quot;0&quot;</span><br />
EndSection</p>
<p>Section <span class="st0">&quot;Module&quot;</span><br />
&nbsp; &nbsp; Load &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&quot;glx&quot;</span><br />
EndSection</p>
<p>Section <span class="st0">&quot;ServerFlags&quot;</span><br />
&nbsp; &nbsp; Option &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&quot;Xinerama&quot;</span> <span class="st0">&quot;0&quot;</span><br />
EndSection</p>
<p>Section <span class="st0">&quot;InputDevice&quot;</span></p>
<p>&nbsp; &nbsp; <span class="co0"># generated from default</span><br />
&nbsp; &nbsp; Identifier &nbsp; &nbsp; <span class="st0">&quot;Keyboard0&quot;</span><br />
&nbsp; &nbsp; Driver &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&quot;kbd&quot;</span><br />
EndSection</p>
<p>Section <span class="st0">&quot;InputDevice&quot;</span></p>
<p>&nbsp; &nbsp; <span class="co0"># generated from default</span><br />
&nbsp; &nbsp; Identifier &nbsp; &nbsp; <span class="st0">&quot;Mouse0&quot;</span><br />
&nbsp; &nbsp; Driver &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&quot;mouse&quot;</span><br />
&nbsp; &nbsp; Option &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&quot;Protocol&quot;</span> <span class="st0">&quot;auto&quot;</span><br />
&nbsp; &nbsp; Option &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&quot;Device&quot;</span> <span class="st0">&quot;/dev/psaux&quot;</span><br />
&nbsp; &nbsp; Option &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&quot;Emulate3Buttons&quot;</span> <span class="st0">&quot;no&quot;</span><br />
&nbsp; &nbsp; Option &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&quot;ZAxisMapping&quot;</span> <span class="st0">&quot;4 5&quot;</span><br />
EndSection</p>
<p>Section <span class="st0">&quot;Monitor&quot;</span><br />
&nbsp; &nbsp; Identifier &nbsp; &nbsp; <span class="st0">&quot;Configured Monitor&quot;</span><br />
EndSection</p>
<p>Section <span class="st0">&quot;Monitor&quot;</span><br />
&nbsp; &nbsp; Identifier &nbsp; &nbsp; <span class="st0">&quot;Monitor0&quot;</span><br />
&nbsp; &nbsp; VendorName &nbsp; &nbsp; <span class="st0">&quot;Unknown&quot;</span><br />
&nbsp; &nbsp; ModelName &nbsp; &nbsp; &nbsp;<span class="st0">&quot;AOC LM940e&quot;</span><br />
&nbsp; &nbsp; HorizSync &nbsp; &nbsp; &nbsp; <span class="nu0">31.0</span> &#8211; <span class="nu0">83.0</span><br />
&nbsp; &nbsp; VertRefresh &nbsp; &nbsp; <span class="nu0">56.0</span> &#8211; <span class="nu0">75.0</span><br />
EndSection</p>
<p>Section <span class="st0">&quot;Device&quot;</span><br />
&nbsp; &nbsp; Identifier &nbsp; &nbsp; <span class="st0">&quot;Configured Video Device&quot;</span><br />
&nbsp; &nbsp; Driver &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&quot;nvidia&quot;</span><br />
&nbsp; &nbsp; Option &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&quot;NoLogo&quot;</span> <span class="st0">&quot;True&quot;</span><br />
EndSection</p>
<p>Section <span class="st0">&quot;Device&quot;</span><br />
&nbsp; &nbsp; Identifier &nbsp; &nbsp; <span class="st0">&quot;Device0&quot;</span><br />
&nbsp; &nbsp; Driver &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&quot;nvidia&quot;</span><br />
&nbsp; &nbsp; VendorName &nbsp; &nbsp; <span class="st0">&quot;NVIDIA Corporation&quot;</span><br />
&nbsp; &nbsp; BoardName &nbsp; &nbsp; &nbsp;<span class="st0">&quot;Quadro NVS 110M&quot;</span><br />
&nbsp; &nbsp; Option &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&quot;AddARGBGLXVisuals&quot;</span> <span class="st0">&quot;True&quot;</span><br />
EndSection</p>
<p>Section <span class="st0">&quot;Screen&quot;</span><br />
&nbsp; &nbsp; Identifier &nbsp; &nbsp; <span class="st0">&quot;Default Screen&quot;</span><br />
&nbsp; &nbsp; Device &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&quot;Configured Video Device&quot;</span><br />
&nbsp; &nbsp; Monitor &nbsp; &nbsp; &nbsp; &nbsp;<span class="st0">&quot;Configured Monitor&quot;</span><br />
&nbsp; &nbsp; DefaultDepth &nbsp; &nbsp;<span class="nu0">24</span><br />
EndSection</p>
<p>Section <span class="st0">&quot;Screen&quot;</span></p>
<p><span class="co0"># Removed Option &quot;TwinViewXineramaInfoOrder&quot; &quot;CRT-0&quot;</span><br />
<span class="co0"># Removed Option &quot;metamodes&quot; &quot;CRT: nvidia-auto-select +1440+0, DFP: nvidia-auto-select +1440+0&quot;</span><br />
&nbsp; &nbsp; Identifier &nbsp; &nbsp; <span class="st0">&quot;Screen0&quot;</span><br />
&nbsp; &nbsp; Device &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&quot;Device0&quot;</span><br />
&nbsp; &nbsp; Monitor &nbsp; &nbsp; &nbsp; &nbsp;<span class="st0">&quot;Monitor0&quot;</span><br />
&nbsp; &nbsp; DefaultDepth &nbsp; &nbsp;<span class="nu0">24</span><br />
&nbsp; &nbsp; Option &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&quot;TwinView&quot;</span> <span class="st0">&quot;1&quot;</span><br />
&nbsp; &nbsp; Option &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&quot;TwinViewXineramaInfoOrder&quot;</span> <span class="st0">&quot;DFP-0&quot;</span><br />
&nbsp; &nbsp; Option &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&quot;metamodes&quot;</span> <span class="st0">&quot;CRT: nvidia-auto-select +1440+0, DFP: nvidia-auto-select +0+0&quot;</span><br />
&nbsp; &nbsp; SubSection &nbsp; &nbsp; <span class="st0">&quot;Display&quot;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; Depth &nbsp; &nbsp; &nbsp; <span class="nu0">24</span><br />
&nbsp; &nbsp; EndSubSection<br />
EndSection</div>
]]></content:encoded>
			<wfw:commentRss>http://froebe.net/blog/2010/06/23/having-trouble-with-vmware-players-or-workstation-unity-mode-and-ubuntu-linux-are-you-using-the-nvidia-display-driver-with-multiple-monitors/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>High overview of Cloud Computing with Ubuntu Eucalyptus Cloud (UEC) from Canonical</title>
		<link>http://froebe.net/blog/2010/06/22/high-overview-of-cloud-computing-with-ubuntu-eucalyptus-cloud-uec-from-canonical/</link>
		<comments>http://froebe.net/blog/2010/06/22/high-overview-of-cloud-computing-with-ubuntu-eucalyptus-cloud-uec-from-canonical/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 12:52:15 +0000</pubDate>
		<dc:creator>Jason L Froebe</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[em]]></category>
		<category><![CDATA[kvm]]></category>
		<category><![CDATA[qemu]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[xen]]></category>

		<guid isPermaLink="false">http://froebe.net/blog/?p=1260</guid>
		<description><![CDATA[I installed Ubuntu Eucalyptus cloud (#UEC) on a couple of servers at home. I was naively expecting it to be similar to VMware. Oh I was wrong. UEC is the Eucalyptus &#8216;cloud&#8217; software running on Ubuntu servers. The instances would run under the KVM or Xen hypervisors. Ubuntu&#8217;s defaulted to running KVM but isn&#8217;t restricted [...]]]></description>
			<content:encoded><![CDATA[<p>I installed Ubuntu Eucalyptus cloud (#UEC) on a couple of servers at home.  I was naively expecting it to be similar to VMware.  Oh I was wrong.</p>
<p>UEC is the Eucalyptus &#8216;cloud&#8217; software running on Ubuntu servers.  The instances would run under the KVM or Xen hypervisors.  Ubuntu&#8217;s defaulted to running KVM but isn&#8217;t restricted by it.</p>
<p>&#8220;Eucalyptus  is a software available under GPL that helps in creating and managing a private or even a publicly accessible cloud. It provides an EC2 compatible cloud computing platform and S3 compatible cloud storage platform&#8230;&#8221;  <a href="http://cssoss.wordpress.com/2010/05/10/eucalyptus-beginner%E2%80%99s-guide-%E2%80%93-uec-edition-chapter-1-%E2%80%93-introduction-to-uec-and-its%C2%A0components/">Eucalyptus Beginner’s Guide</a></p>
<p>This is how a vm works in UEC:</p>
<p>You publish an image that you previously installed all the software you need (or you can download such an image).  There can be as many instances of this image running as the hardware supports (spread across N number of backend Node Servers).</p>
<p>All instances are transient.  As long as an image is running, it will have a physical presence.. but when it is shutdown, the instance is removed including any work performed in the instance.</p>
<p>&#8220;static&#8221; storage is available via a Storage Server.  After you create an image but before you start it, you have the opportunity to attach storage to the instance.</p>
<div class="wp-caption alignnone" style="width: 610px"><a href="http://cssoss.wordpress.com/2010/05/10/eucalyptus-beginner%E2%80%99s-guide-%E2%80%93-uec-edition-chapter-1-%E2%80%93-introduction-to-uec-and-its%C2%A0components/"><img src="http://cssoss.files.wordpress.com/2010/05/eucalyptus_cloud.png?w=600&amp;h=467" alt="" width="600" height="467" /></a><p class="wp-caption-text">Diagram courtesy of  Eucalyptus Beginner’s Guide – UEC edition</p></div>
<p>While the management tools for UEC, and therefore Amazon EC2/EM, are primitive compared to VMware, it should be able to scale much higher with far less focus on which &#8216;virtual machine&#8217; goes where.</p>
]]></content:encoded>
			<wfw:commentRss>http://froebe.net/blog/2010/06/22/high-overview-of-cloud-computing-with-ubuntu-eucalyptus-cloud-uec-from-canonical/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using VMware vCenter Converter and getting a SQL_CANTOPEN or similar error</title>
		<link>http://froebe.net/blog/2010/06/18/using-vmware-vcenter-converter-and-getting-a-sql_cantopen-or-similar-error/</link>
		<comments>http://froebe.net/blog/2010/06/18/using-vmware-vcenter-converter-and-getting-a-sql_cantopen-or-similar-error/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 17:24:48 +0000</pubDate>
		<dc:creator>Jason L Froebe</dc:creator>
				<category><![CDATA[OS]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[carbonite]]></category>
		<category><![CDATA[converter]]></category>
		<category><![CDATA[sql_cantopen]]></category>
		<category><![CDATA[vcenter]]></category>

		<guid isPermaLink="false">http://froebe.net/blog/?p=1257</guid>
		<description><![CDATA[Using VMware vCenter Converter and getting a SQL_CANTOPEN or similar error?  Make sure your backup (Carbonite in my case) is disabled else it may try to backup the database for the converter and lock the files from being written to.  Anyone know where VMware keeps this database?]]></description>
			<content:encoded><![CDATA[<p>Using <a href="http://www.vmware.com/products/converter/">VMware vCenter Converter</a> and getting a SQL_CANTOPEN or similar error?  Make sure your backup (<a href="http://www.vmware.com"><img class="alignright size-full wp-image-711" title="VMware" src="http://froebe.net/blog/wp-content/uploads/2008/09/vmware.png" alt="" width="267" height="112" /></a><a href="http://www.carbonite.com/">Carbonite</a> in my case) is disabled else it may try to backup the database for the converter and lock the files from being written to.  Anyone know where VMware keeps this database?</p>
]]></content:encoded>
			<wfw:commentRss>http://froebe.net/blog/2010/06/18/using-vmware-vcenter-converter-and-getting-a-sql_cantopen-or-similar-error/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Robert Jordan and Brandon Sanderson&#8217;s The Wheel of Time book # 13:  Towers of Midnight</title>
		<link>http://froebe.net/blog/2010/06/14/robert-jordan-and-brandon-sandersons-the-wheel-of-time-book-13-towers-of-midnight/</link>
		<comments>http://froebe.net/blog/2010/06/14/robert-jordan-and-brandon-sandersons-the-wheel-of-time-book-13-towers-of-midnight/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 18:07:34 +0000</pubDate>
		<dc:creator>Jason L Froebe</dc:creator>
				<category><![CDATA[Audio Book]]></category>
		<category><![CDATA[Book]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[brandon sanderson]]></category>
		<category><![CDATA[robert jordan]]></category>
		<category><![CDATA[Towers of Midnight]]></category>
		<category><![CDATA[wheel of time]]></category>
		<category><![CDATA[wot]]></category>

		<guid isPermaLink="false">http://froebe.net/blog/?p=1254</guid>
		<description><![CDATA[Just waiting&#8230; I can wait &#8230; yes I can Towers of Midnight (Wheel of Time) Here is the book cover courtesy of Dragonmount.com:]]></description>
			<content:encoded><![CDATA[<p>Just waiting&#8230;  I can wait &#8230;  yes I can<br />
<a href="http://www.amazon.com/gp/product/1427210225?ie=UTF8&#038;tag=froebe-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=1427210225">Towers of Midnight (Wheel of Time)</a><br />
Here is the book cover courtesy of <a href="http://www.dragonmount.com">Dragonmount.com</a>:<br />
<a href="http://www.dragonmount.com/News/?p=1301"><img src="http://froebe.net/blog/wp-content/uploads/2010/06/TowersofMidnight_us_hardcover.jpg" alt="" title="Towers of Midnight" width="164" height="247" class="aligncenter size-full wp-image-1255" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://froebe.net/blog/2010/06/14/robert-jordan-and-brandon-sandersons-the-wheel-of-time-book-13-towers-of-midnight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Greater Chicago Jewish Folks Art Festival Flickr Group</title>
		<link>http://froebe.net/blog/2010/06/13/greater-chicago-jewish-folks-art-festival-flickr-group/</link>
		<comments>http://froebe.net/blog/2010/06/13/greater-chicago-jewish-folks-art-festival-flickr-group/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 03:29:02 +0000</pubDate>
		<dc:creator>Jason L Froebe</dc:creator>
				<category><![CDATA[Crafts]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Family]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[misc]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[Chicago]]></category>
		<category><![CDATA[festival]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[Illinois]]></category>
		<category><![CDATA[Jewish]]></category>
		<category><![CDATA[Judaica]]></category>
		<category><![CDATA[judaism]]></category>
		<category><![CDATA[photo group]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[skokie]]></category>

		<guid isPermaLink="false">http://froebe.net/blog/?p=1252</guid>
		<description><![CDATA[If you&#8217;ve attended the Greater Chicago Jewish Folks Art Festival and took photos, please share your photos with the rest of the world! It doesn&#8217;t matter what year or if they&#8217;re fuzzy or overexposed.. we love all the photos I just created the Flickr photo group Greater Chicago Jewish Folks Art Festival so everyone can [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve attended the Greater Chicago Jewish Folks Art Festival and took photos, please share your photos with the rest of the world! It doesn&#8217;t matter what year or if they&#8217;re fuzzy or overexposed.. we love all the photos <img src='http://froebe.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I just created the Flickr  photo group Greater Chicago Jewish Folks Art Festival so  everyone can share their photos from the Greater Chicago Jewish Folks  Art Festival:</p>
<div>
<div>
<div><a onmousedown="UntrustedLink.bootstrap($(this), &quot;4649c&quot;, event);" rel="nofollow" href="http://www.flickr.com/groups/greater_chicago_jewish_folks_art_festival/" target="_blank"></p>
<div><img src="http://external.ak.fbcdn.net/safe_image.php?d=4d3f498e9fa37dc37061ae73d67ee41f&amp;w=130&amp;h=130&amp;url=http%3A%2F%2Ffarm5.static.flickr.com%2F4050%2F4698676140_ec8b9fabb1_t.jpg" alt="" /></div>
<p></a></div>
</div>
<div>
<div><a onmousedown="UntrustedLink.bootstrap($(this), &quot;4649c&quot;, event);" rel="nofollow" href="http://www.flickr.com/groups/greater_chicago_jewish_folks_art_festival/" target="_blank">Flickr: Greater Chicago Jewish Folks Art Festival</a></div>
<div>www.flickr.com</div>
<div>Flickr is almost certainly the best  online photo management and sharing application in the world. Show off  your favorite photos and videos to the world, securely and privately  show content to your friends and family, or blog the photos and videos  you take with a cameraphone.</div>
</div>
</div>
<input name="charset_test" type="hidden" value="€,´,€,´,水,Д,Є" />
<input name="fb_dtsg" type="hidden" value="3pXmd" />
<input id="feedback_params" name="feedback_params" type="hidden" value="{&quot;actor&quot;:&quot;766673466&quot;,&quot;target_fbid&quot;:&quot;134530653230968&quot;,&quot;target_profile_id&quot;:&quot;766673466&quot;,&quot;type_id&quot;:&quot;17&quot;,&quot;source&quot;:&quot;0&quot;,&quot;assoc_obj_id&quot;:&quot;&quot;,&quot;source_app_id&quot;:&quot;&quot;,&quot;extra_story_params&quot;:[],&quot;check_hash&quot;:&quot;4d7262c51d3c3b70&quot;}" />
<input id="post_form_id" name="post_form_id" type="hidden" value="dc5ada51ab72fd8f913f634dc9182722" />
]]></content:encoded>
			<wfw:commentRss>http://froebe.net/blog/2010/06/13/greater-chicago-jewish-folks-art-festival-flickr-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just Because:  World Science Festival 2009: Bobby McFerrin Demonstrates the Power of the Pentatonic Scale</title>
		<link>http://froebe.net/blog/2010/06/05/just-because-world-science-festival-2009-bobby-mcferrin-demonstrates-the-power-of-the-pentatonic-scale/</link>
		<comments>http://froebe.net/blog/2010/06/05/just-because-world-science-festival-2009-bobby-mcferrin-demonstrates-the-power-of-the-pentatonic-scale/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 17:08:32 +0000</pubDate>
		<dc:creator>Jason L Froebe</dc:creator>
				<category><![CDATA[humor]]></category>
		<category><![CDATA[misc]]></category>
		<category><![CDATA[Bobby McFerrin]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Pentatonic Scale]]></category>
		<category><![CDATA[vimeo]]></category>
		<category><![CDATA[World Science Festival]]></category>

		<guid isPermaLink="false">http://froebe.net/blog/?p=1249</guid>
		<description><![CDATA[World Science Festival 2009: Bobby McFerrin Demonstrates the Power of the Pentatonic Scale from World Science Festival on Vimeo.]]></description>
			<content:encoded><![CDATA[<p><object width="400" height="220"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=5732745&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=5732745&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="220"></embed></object>
<p><a href="http://vimeo.com/5732745">World Science Festival 2009: Bobby McFerrin Demonstrates the Power of the Pentatonic Scale</a> from <a href="http://vimeo.com/user1103909">World Science Festival</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://froebe.net/blog/2010/06/05/just-because-world-science-festival-2009-bobby-mcferrin-demonstrates-the-power-of-the-pentatonic-scale/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ISC 9-Layer OSI Model Cotton T-Shirt</title>
		<link>http://froebe.net/blog/2010/05/28/isc-9-layer-osi-model-cotton-t-shirt/</link>
		<comments>http://froebe.net/blog/2010/05/28/isc-9-layer-osi-model-cotton-t-shirt/#comments</comments>
		<pubDate>Fri, 28 May 2010 21:52:50 +0000</pubDate>
		<dc:creator>Jason L Froebe</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[humor]]></category>
		<category><![CDATA[misc]]></category>
		<category><![CDATA[Evi Nemeth]]></category>
		<category><![CDATA[isc]]></category>
		<category><![CDATA[model]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[osi]]></category>
		<category><![CDATA[tshirt]]></category>

		<guid isPermaLink="false">http://froebe.net/blog/?p=1246</guid>
		<description><![CDATA[I want one!OSI Model T-shirt enhanced to include an 8th and 9th layer as defined by Evi Nemeth.]]></description>
			<content:encoded><![CDATA[<p>I want one!<a href="https://www.isc.org/store/logoware-clothing/isc-9-layer-osi-model-cotton-t-shirt"><img class="aligncenter size-full wp-image-1247" title="ISC 9-Layer OSI Model Cotton T-Shirt" src="http://froebe.net/blog/wp-content/uploads/2010/05/9layer.thumb_.png" alt="" width="250" height="188" /></a><a href="https://www.isc.org/store/logoware-clothing/isc-9-layer-osi-model-cotton-t-shirt">OSI Model T-shirt</a> enhanced to include an 8th and 9th layer as defined by  Evi Nemeth.</p>
]]></content:encoded>
			<wfw:commentRss>http://froebe.net/blog/2010/05/28/isc-9-layer-osi-model-cotton-t-shirt/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Received a postcard asking you to contact 888-465-0877 for a package delivery?  It&#8217;s a timeshare scam!</title>
		<link>http://froebe.net/blog/2010/05/26/received-a-postcard-asking-you-to-contact-888-465-0877-for-a-package-delivery-its-a-timeshare-scam/</link>
		<comments>http://froebe.net/blog/2010/05/26/received-a-postcard-asking-you-to-contact-888-465-0877-for-a-package-delivery-its-a-timeshare-scam/#comments</comments>
		<pubDate>Wed, 26 May 2010 14:41:13 +0000</pubDate>
		<dc:creator>Jason L Froebe</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[misc]]></category>
		<category><![CDATA[888-465-0877]]></category>
		<category><![CDATA[bait & switch]]></category>
		<category><![CDATA[post office]]></category>
		<category><![CDATA[postcard]]></category>
		<category><![CDATA[scam]]></category>
		<category><![CDATA[timeshare]]></category>
		<category><![CDATA[united states postal inspection service]]></category>

		<guid isPermaLink="false">http://froebe.net/blog/?p=1243</guid>
		<description><![CDATA[I would suggest that anyone receiving a postcard asking you to call 888-465-0877 to file a complaint with the Post Office (United States Postal Inspection Service): https://postalinspectors.uspis.gov/forms/MailFraudComplaint.aspx http://www.callwiki.com/phones/view/888-465-0877 http://whocallsme.com/Phone-Number.aspx/8884650877]]></description>
			<content:encoded><![CDATA[<p>I would suggest that anyone receiving a postcard asking you to call 888-465-0877 to file a complaint with the Post Office (United States Postal Inspection Service): https://postalinspectors.uspis.gov/forms/MailFraudComplaint.aspx</p>
<p>http://www.callwiki.com/phones/view/888-465-0877</p>
<p>http://whocallsme.com/Phone-Number.aspx/8884650877</p>
]]></content:encoded>
			<wfw:commentRss>http://froebe.net/blog/2010/05/26/received-a-postcard-asking-you-to-contact-888-465-0877-for-a-package-delivery-its-a-timeshare-scam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto:  Unable to start Catalyst web applications using the built in development server?  We have the answer</title>
		<link>http://froebe.net/blog/2010/05/16/howto-unable-to-start-catalyst-web-applications-using-the-built-in-development-server-we-have-the-answer/</link>
		<comments>http://froebe.net/blog/2010/05/16/howto-unable-to-start-catalyst-web-applications-using-the-built-in-development-server-we-have-the-answer/#comments</comments>
		<pubDate>Sun, 16 May 2010 13:18:00 +0000</pubDate>
		<dc:creator>Jason L Froebe</dc:creator>
				<category><![CDATA[APIs]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[catalyst]]></category>
		<category><![CDATA[catalyst web framework]]></category>
		<category><![CDATA[catalyst::devel]]></category>
		<category><![CDATA[catalyst::engine::http::restarter]]></category>
		<category><![CDATA[catalyst::restarter]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://froebe.net/blog/?p=1241</guid>
		<description><![CDATA[If you&#8217;re getting the &#8220;Can&#8217;t locate Catalyst/Engine/HTTP/Restarter.pm&#8221; error message, it is very likely you&#8217;re running a recent version of Catalyst: jason@catalyst:~/catalyst-book-code/Chapter_3/LolCatalyst-Lite$ script/lolcatalyst_lite_server.pl -r Can&#8216;t locate Catalyst/Engine/HTTP/Restarter.pm in @INC (@INC contains: /home/jason/catalyst-book-code/Chapter_3/LolCatalyst-Lite/script/../lib /etc/perl /usr/local/lib/perl/5.10.1 /usr/local/share/perl/5.10.1 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.10 /usr/share/perl/5.10 /usr/local/lib/site_perl .). at /usr/lib/perl5/Class/MOP.pm line 116 &#160; &#160; &#160; &#160; Class::MOP::load_first_existing_class(&#8216;Catalyst::Engine::HTTP::Restarter&#8216;) called at /usr/lib/perl5/Class/MOP.pm line 121 &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re getting the &#8220;Can&#8217;t locate Catalyst/Engine/HTTP/Restarter.pm&#8221; error message, it is very likely you&#8217;re running a recent version of Catalyst:</p>
<div class="perl dean_ch">jason<span class="re0">@catalyst</span><span class="sy0">:~/</span>catalyst<span class="sy0">-</span>book<span class="sy0">-</span>code<span class="sy0">/</span>Chapter_3<span class="sy0">/</span>LolCatalyst<span class="sy0">-</span>Lite$ script<span class="sy0">/</span>lolcatalyst_lite_server<span class="sy0">.</span>pl <span class="sy0">-</span>r<br />
Can<span class="st_h">&#8216;t locate Catalyst/Engine/HTTP/Restarter.pm in @INC (@INC contains: /home/jason/catalyst-book-code/Chapter_3/LolCatalyst-Lite/script/../lib /etc/perl /usr/local/lib/perl/5.10.1 /usr/local/share/perl/5.10.1 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.10 /usr/share/perl/5.10 /usr/local/lib/site_perl .). at /usr/lib/perl5/Class/MOP.pm line 116<br />
&nbsp; &nbsp; &nbsp; &nbsp; Class::MOP::load_first_existing_class(&#8216;</span>Catalyst<span class="sy0">::</span><span class="me2">Engine</span><span class="sy0">::</span><span class="me2">HTTP</span><span class="sy0">::</span><span class="me2">Restarter</span><span class="st_h">&#8216;) called at /usr/lib/perl5/Class/MOP.pm line 121<br />
&nbsp; &nbsp; &nbsp; &nbsp; Class::MOP::load_class(&#8216;</span>Catalyst<span class="sy0">::</span><span class="me2">Engine</span><span class="sy0">::</span><span class="me2">HTTP</span><span class="sy0">::</span><span class="me2">Restarter</span><span class="st_h">&#8216;) called at /usr/share/perl5/Catalyst.pm line 2634<br />
&nbsp; &nbsp; &nbsp; &nbsp; Catalyst::setup_engine(&#8216;</span>LolCatalyst<span class="sy0">::</span><span class="me2">Lite</span><span class="st_h">&#8216;, undef) called at /usr/share/perl5/Catalyst.pm line 1081<br />
&nbsp; &nbsp; &nbsp; &nbsp; Catalyst::setup(&#8216;</span>LolCatalyst<span class="sy0">::</span><span class="me2">Lite</span><span class="st_h">&#8216;) called at /home/jason/catalyst-book-code/Chapter_3/LolCatalyst-Lite/script/../lib/LolCatalyst/Lite.pm line 34<br />
&nbsp; &nbsp; &nbsp; &nbsp; require LolCatalyst/Lite.pm called at script/lolcatalyst_lite_server.pl line 55<br />
Compilation failed in require at script/lolcatalyst_lite_server.pl line 55.</span></div>
<p>The problem is that Catalyst::Engine::HTTP::Restarter within Catalyst::Engine was replaced by Catalyst::Restarter within the Catalyst::Devel package.   How to fix your application to use the updated development web server?  Very easy.  Rerun catalyst.pl with the &#8220;-scripts&#8221;, to rebuild just the scripts in the script directory, and &#8220;-force&#8221; to overwrite any files therein:</p>
<div class="perl dean_ch">jason<span class="re0">@catalyst</span><span class="sy0">:~/</span>catalyst<span class="sy0">-</span>book<span class="sy0">-</span>code<span class="sy0">/</span>Chapter_3$ catalyst<span class="sy0">.</span>pl <span class="sy0">-</span>scripts <span class="sy0">-</span>force LolCatalyst<span class="sy0">::</span><span class="me2">Lite</span><br />
&nbsp;<a href="http://perldoc.perl.org/functions/exists.html"><span class="kw3">exists</span></a> <span class="st0">&quot;LolCatalyst-Lite/script/lolcatalyst_lite_cgi.pl&quot;</span><br />
created <span class="st0">&quot;LolCatalyst-Lite/script/lolcatalyst_lite_cgi.pl&quot;</span><br />
&nbsp;<a href="http://perldoc.perl.org/functions/exists.html"><span class="kw3">exists</span></a> <span class="st0">&quot;LolCatalyst-Lite/script/lolcatalyst_lite_fastcgi.pl&quot;</span><br />
created <span class="st0">&quot;LolCatalyst-Lite/script/lolcatalyst_lite_fastcgi.pl&quot;</span><br />
&nbsp;<a href="http://perldoc.perl.org/functions/exists.html"><span class="kw3">exists</span></a> <span class="st0">&quot;LolCatalyst-Lite/script/lolcatalyst_lite_server.pl&quot;</span><br />
created <span class="st0">&quot;LolCatalyst-Lite/script/lolcatalyst_lite_server.pl&quot;</span><br />
&nbsp;<a href="http://perldoc.perl.org/functions/exists.html"><span class="kw3">exists</span></a> <span class="st0">&quot;LolCatalyst-Lite/script/lolcatalyst_lite_test.pl&quot;</span><br />
created <span class="st0">&quot;LolCatalyst-Lite/script/lolcatalyst_lite_test.pl&quot;</span><br />
&nbsp;<a href="http://perldoc.perl.org/functions/exists.html"><span class="kw3">exists</span></a> <span class="st0">&quot;LolCatalyst-Lite/script/lolcatalyst_lite_create.pl&quot;</span><br />
created <span class="st0">&quot;LolCatalyst-Lite/script/lolcatalyst_lite_create.pl&quot;</span></div>
<p>If you&#8217;re interested in learning the Catalyst Web Framework (Perl based), I highly recommend <a href="http://www.amazon.com/gp/product/1430223650?ie=UTF8&#038;tag=froebe-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=1430223650">The Definitive Guide to Catalyst: Writing Extensible, Scalable and Maintainable Perl&ndash;Based Web Applications</a><img src="http://www.assoc-amazon.com/e/ir?t=froebe-20&#038;l=as2&#038;o=1&#038;a=1430223650" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />.</p>
]]></content:encoded>
			<wfw:commentRss>http://froebe.net/blog/2010/05/16/howto-unable-to-start-catalyst-web-applications-using-the-built-in-development-server-we-have-the-answer/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to avoid most reorgs of DOL tables in Sybase ASE (Jeff Tallman)</title>
		<link>http://froebe.net/blog/2010/05/14/how-to-avoid-most-reorgs-of-dol-tables-in-sybase-ase-jeff-tallman/</link>
		<comments>http://froebe.net/blog/2010/05/14/how-to-avoid-most-reorgs-of-dol-tables-in-sybase-ase-jeff-tallman/#comments</comments>
		<pubDate>Fri, 14 May 2010 13:13:33 +0000</pubDate>
		<dc:creator>Jason L Froebe</dc:creator>
				<category><![CDATA[ASE]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[Sybase]]></category>
		<category><![CDATA[data pages]]></category>
		<category><![CDATA[data rows]]></category>
		<category><![CDATA[dol]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Jeff Tallman]]></category>
		<category><![CDATA[monengine]]></category>
		<category><![CDATA[monopenobjectactivity]]></category>
		<category><![CDATA[reorgs]]></category>
		<category><![CDATA[sybase-l]]></category>
		<category><![CDATA[tables]]></category>

		<guid isPermaLink="false">http://froebe.net/blog/?p=1239</guid>
		<description><![CDATA[On the sybase-l mailing list, Jeff Tallman replied to a question on how to avoid unnecessary reorgs. He graciously agreed to let me post his response here You can avoid most (if not all) of the reorgs by doing: setting the exp_row_size to something that covers about 90% of the space each row takes up [...]]]></description>
			<content:encoded><![CDATA[<p>On the sybase-l mailing list,</p>
<div id="attachment_560" class="wp-caption alignright" style="width: 193px"><a href="http://www.sybase.com"><img class="size-full wp-image-560" title="Sybase, Inc." src="http://froebe.net/blog/wp-content/uploads/2008/07/sybase.png" alt="" width="183" height="74" /></a><p class="wp-caption-text">Sybase</p></div>
<p>Jeff Tallman replied to a question on how to avoid unnecessary reorgs.  He graciously agreed to let me post his response here <img src='http://froebe.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<blockquote><p><em><span style="color: #0000ff;">You can avoid most (if not all) of the reorgs by doing:</span></em></p>
<ol>
<li><em><span style="color: #0000ff;">setting the exp_row_size to something that covers about 90% of the space each row takes up</span></em></li>
<li><em><span style="color: #0000ff;">changing enable housekeeper GC to a 4 or 5</span></em></li>
</ol>
<p><em><span style="color: #0000ff;">Both of these are a *MUST* do for DOL (datapages or datarows).   See manuals on &#8216;enable housekeeper GC&#8217; for correct setting of 4 or 5 (refers to whether deletes are batch or OLTP).</span></em></p>
<p><em><span style="color: #0000ff;">You can also watch for housekeeper overflows in monEngine/monOpenObjectActivity&#8230;&#8230;and if you see any HKGC pending &#8211; wait a few before shutting down.</span></em></p></blockquote>
<p><span style="color: #0000ff;"><span style="color: #000000;">Jeff wrote up an excellent article, <a href="http://blogs.sybase.com/database/2009/05/locking-redux-apl-vs-dol-and-tuning/">Locking Redux – APL vs. DOL and Tuning</a>, that goes into detail why this is the case.</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://froebe.net/blog/2010/05/14/how-to-avoid-most-reorgs-of-dol-tables-in-sybase-ase-jeff-tallman/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to change the default NLS_DATE_FORMAT (Date format) in Oracle 10g/11g</title>
		<link>http://froebe.net/blog/2010/05/06/how-to-change-the-default-nls_date_format-date-format-in-oracle-10g11g/</link>
		<comments>http://froebe.net/blog/2010/05/06/how-to-change-the-default-nls_date_format-date-format-in-oracle-10g11g/#comments</comments>
		<pubDate>Thu, 06 May 2010 20:11:00 +0000</pubDate>
		<dc:creator>Jason L Froebe</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[10g]]></category>
		<category><![CDATA[11g]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[date format]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[nls_date_format]]></category>
		<category><![CDATA[ORA-32001]]></category>
		<category><![CDATA[pfile]]></category>
		<category><![CDATA[spfile]]></category>
		<category><![CDATA[sqlplus]]></category>
		<category><![CDATA[system]]></category>

		<guid isPermaLink="false">http://froebe.net/blog/?p=1234</guid>
		<description><![CDATA[It is really really easy to change the default NLS_DATE_FORMAT setting but to be honest, you should set it at a session level IMHO. We basically just need to run &#8220;ALTER SYSTEM SET NLS_DATE_FORMAT=&#8217;YYYY-MM-DD&#8217; SCOPE=SPFILE&#8221; as a user with sysdba privileges. If you started the Oracle instance without a spfile (it should be located at [...]]]></description>
			<content:encoded><![CDATA[<p>It is really really easy to change the default NLS_DATE_FORMAT setting but to be honest, you should set it at a session level IMHO.</p>
<p>We basically just need <a href="http://www.oracle.com"><img src="http://froebe.net/blog/wp-content/uploads/2008/11/oralogo_small.gif" alt="" title="Oracle" width="133" height="18" class="alignright size-full wp-image-753" /></a>to run &#8220;ALTER SYSTEM SET NLS_DATE_FORMAT=&#8217;YYYY-MM-DD&#8217; SCOPE=SPFILE&#8221; as a user with sysdba privileges.  If you started the Oracle instance without a spfile (it should be located at $ORACLE_HOME/dbs/spfile[instance name].ora), you will receive the ORA-32001 error.  </p>
<div class="sql dean_ch">SQL<span class="sy0">&gt;</span> <span class="kw1">ALTER</span> SYSTEM <span class="kw1">SET</span> NLS_DATE_FORMAT<span class="sy0">=</span><span class="st0">&#8216;YYYY-MM-DD&#8217;</span> SCOPE<span class="sy0">=</span>SPFILE;<br />
<span class="kw1">ALTER</span> SYSTEM <span class="kw1">SET</span> NLS_DATE_FORMAT<span class="sy0">=</span><span class="st0">&#8216;YYYY-MM-DD&#8217;</span> SCOPE<span class="sy0">=</span>SPFILE<br />
<span class="sy0">*</span><br />
ERROR at line <span class="nu0">1</span>:<br />
ORA<span class="sy0">-</span><span class="nu0">32001</span>: <span class="kw1">WRITE</span> <span class="kw1">TO</span> SPFILE requested but no SPFILE specified at startup</div>
<p>Just create a new spfile, restart:</p>
<div class="sql dean_ch">SQL<span class="sy0">&gt;</span> <span class="kw1">SELECT</span> INSTANCE_NAME <span class="kw1">FROM</span> v$instance;</p>
<p>INSTANCE_NAME<br />
<span class="co1">&#8212;&#8212;&#8212;&#8212;&#8212;-</span><br />
UAT2</p>
<p>SQL<span class="sy0">&gt;</span> <span class="kw1">CREATE</span> spfile<span class="sy0">=</span><span class="st0">&#8216;/oracle/10g/dbs/spfileUAT2.ora&#8217;</span> <span class="kw1">FROM</span> pfile<span class="sy0">=</span><span class="st0">&#8216;/oracle/10g/dbs/initUAT2.ora&#8217;</span>;</div>
<p>*restart*</p>
<div class="sql dean_ch">SQL<span class="sy0">&gt;</span> <span class="kw1">SELECT</span> INSTANCE_NAME <span class="kw1">FROM</span> v$instance;</p>
<p>INSTANCE_NAME<br />
<span class="co1">&#8212;&#8212;&#8212;&#8212;&#8212;-</span><br />
UAT2</p>
<p>SQL<span class="sy0">&gt;</span> <span class="kw1">ALTER</span> SYSTEM <span class="kw1">SET</span> NLS_DATE_FORMAT<span class="sy0">=</span><span class="st0">&#8216;YYYY-MM-DD&#8217;</span> SCOPE<span class="sy0">=</span>SPFILE;</p>
<p>System altered<span class="sy0">.</span></div>
<p>*restart*</p>
<div class="sql dean_ch">SQL<span class="sy0">&gt;</span> <span class="kw1">SELECT</span> value <span class="kw1">FROM</span> v$nls_parameters <span class="kw1">WHERE</span> parameter <span class="sy0">=</span><span class="st0">&#8216;NLS_DATE_FORMAT&#8217;</span>;</p>
<p>VALUE<br />
<span class="co1">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</span><br />
YYYY<span class="sy0">-</span>MM<span class="sy0">-</span>DD</div>
<p>That&#8217;s it. <img src='http://froebe.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://froebe.net/blog/2010/05/06/how-to-change-the-default-nls_date_format-date-format-in-oracle-10g11g/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware 2.0.2 running on Win2k3 -&gt; VMware ESX 4.0 .. done :)</title>
		<link>http://froebe.net/blog/2010/04/24/vmware-2-0-2-running-on-win2k3-vmware-esx-4-0-done/</link>
		<comments>http://froebe.net/blog/2010/04/24/vmware-2-0-2-running-on-win2k3-vmware-esx-4-0-done/#comments</comments>
		<pubDate>Sat, 24 Apr 2010 17:37:58 +0000</pubDate>
		<dc:creator>Jason L Froebe</dc:creator>
				<category><![CDATA[ASE]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Sybase]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[esx]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[redhat]]></category>
		<category><![CDATA[shadow]]></category>
		<category><![CDATA[vmware server]]></category>
		<category><![CDATA[volume]]></category>
		<category><![CDATA[volume shadow service]]></category>
		<category><![CDATA[winscp]]></category>

		<guid isPermaLink="false">http://froebe.net/blog/?p=1232</guid>
		<description><![CDATA[I was able to move a VMware Server 2.0 (v7) vm to VMware ESX..  it was a *live* copy where I performed a Windows Volume Shadow copy of the vm files.  Everything worked for the most part but because the database, Sybase ASE 15.0.3, was running when the shadow copy was made, we had corruption [...]]]></description>
			<content:encoded><![CDATA[<p>I was able to move<a href="http://www.vmware.com"><img class="alignright size-full wp-image-711" title="VMware" src="http://froebe.net/blog/wp-content/uploads/2008/09/vmware.png" alt="" width="267" height="112" /></a> a VMware Server 2.0 (v7) vm to VMware ESX..  it was a *live* copy where I performed a Windows Volume Shadow copy of the vm files.  Everything worked for the most part but because the database, Sybase ASE 15.0.3, was running when the shadow copy was made, we had corruption in one database.  Restore from backup and all is good.</p>
<p>Now we need to get an updated license file from Sybase as the NIC mac address has changed..   You can *not* use the mac address from the VMware Server on ESX.  grr.</p>
<p>Twenty hours for the volume shadow copy to complete plus another 12 hours to scp the files to the esx box (esx console access is sloooow).   Keep in mind that the host VMware Server box was rebooting itself randomly so I really couldn’t leave it alone.  Then 3 hours to convert/clone the vmdk files and 2 hours to correct the database&#8230;  I&#8217;m tired.</p>
<p>It turned out to be an issue with allocating 3.75GB to a VM that was causing the rebooting.  Dropping it to 2 GB resolved the rebooting&#8230; who knew?  Nothing in Google and VMware Support wasn&#8217;t able to find anything on their side.</p>
]]></content:encoded>
			<wfw:commentRss>http://froebe.net/blog/2010/04/24/vmware-2-0-2-running-on-win2k3-vmware-esx-4-0-done/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: How to copy an Oracle tablespace across platforms &#8211; quick and dirty ;-)</title>
		<link>http://froebe.net/blog/2010/04/05/how-to-how-to-copy-an-oracle-tablespace-across-platforms-quick-and-dirty/</link>
		<comments>http://froebe.net/blog/2010/04/05/how-to-how-to-copy-an-oracle-tablespace-across-platforms-quick-and-dirty/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 17:03:57 +0000</pubDate>
		<dc:creator>Jason L Froebe</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[cross platform]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[endian]]></category>
		<category><![CDATA[endianess]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[tablespace]]></category>

		<guid isPermaLink="false">http://froebe.net/blog/?p=1230</guid>
		<description><![CDATA[On the source machine: Set the tablespace(s) into read only mode SQL&#62; Alter tablespace &#60;tablespace&#62; read only Export the tablespace meta data using export % expdp system/&#60;password&#62; DUMPFILE=expdat.dmp DIRECTORY = dpump_dir TRANSPORT_TABLESPACES = &#60;list of tablespaces separated by commas&#62; TRANSPORT_FULL_CHECK=Y If the dumpdir is not set up, you will get an ‘invalid’ directory error: SQL&#62; [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>On the source machine:
<ul>
<li>Set the tablespace(s) into read only mode<a href="http://www.oracle.com"><img class="alignright size-full wp-image-753" title="Oracle" src="http://froebe.net/blog/wp-content/uploads/2008/11/oralogo_small.gif" alt="" width="133" height="18" /></a>
<ul>
<li>SQL&gt; Alter tablespace &lt;tablespace&gt; read only</li>
</ul>
</li>
</ul>
</li>
<li>Export the tablespace meta data using export
<ul>
<li>% expdp system/&lt;password&gt; DUMPFILE=expdat.dmp DIRECTORY = dpump_dir TRANSPORT_TABLESPACES = &lt;list of tablespaces separated by commas&gt; TRANSPORT_FULL_CHECK=Y</li>
<li><strong>If the dumpdir is not set up, you will get an ‘invalid’ directory error:</strong>
<ul>
<li>SQL&gt; CREATE DIRECTORY dmpdir as ‘/somedir’;</li>
<li>SQL&gt; GRANT read,write on DIRECTORY to system;</li>
</ul>
</li>
</ul>
</li>
<li>Export the data converting on the fly:
<ul>
<li>Determine the platform name for the destination machine:
<ul>
<li>SQL&gt; SELECT PLATFORM_ID, PLATFORM_NAME, ENDIAN_FORMAT FROM V$TRANSPORTABLE_PLATFORM</li>
</ul>
</li>
<li>% rman TARGET /
<ul>
<li>RMAN&gt; CONVERT TABLESPACE &lt;list of tablespaces separated by commas&gt; to PLATFORM ‘&lt;platform name from previous step&gt;’  FORMAT=’/somedir/%U’;</li>
</ul>
</li>
</ul>
</li>
<li>Put the tablespaces into read/write mode
<ul>
<li>SQL&gt; alter tablespace &lt;tablespace&gt; READ WRITE;</li>
<li>Transfer the files to the destination machine (Setup the dumpdir if you haven’t already)
<ul>
<li>Create the oracle user(s) with the same names as on the source oracle (if you don’t you will need to remap the ownership using the REMAP_SCHEMA for the impdb )</li>
<li>Import the tablespace schema and data (repeat for each tablespace)
<ul>
<li>% impdp  system/&lt;password&gt; DUMPFILE=expdat.dmp DIRECTORY = dpump_dir TRANSPORT_DATAFILES = &lt;Full path to each tablespace datafile separated by commas&gt;</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li>Put the tablespaces in to read/write mode
<ul>
<li>SQL&gt; alter tablespace &lt;tablespace&gt; READ WRITE;</li>
</ul>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://froebe.net/blog/2010/04/05/how-to-how-to-copy-an-oracle-tablespace-across-platforms-quick-and-dirty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to disable the &#8220;uninstall password&#8221; to uninstall Symantec Antivirus</title>
		<link>http://froebe.net/blog/2010/03/10/how-to-disable-the-uninstall-password-to-uninstall-symantec-antivirus/</link>
		<comments>http://froebe.net/blog/2010/03/10/how-to-disable-the-uninstall-password-to-uninstall-symantec-antivirus/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 18:17:24 +0000</pubDate>
		<dc:creator>Jason L Froebe</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[antivirus]]></category>
		<category><![CDATA[regedit]]></category>
		<category><![CDATA[symantec antivirus]]></category>
		<category><![CDATA[uninstall]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[win7]]></category>
		<category><![CDATA[winxp]]></category>

		<guid isPermaLink="false">http://froebe.net/blog/?p=1228</guid>
		<description><![CDATA[I was trying to install Oracle 11g client on to a WinXP box but Symantec Antivirus wouldn&#8217;t let me because it thought it was infected with over 800 viruses.  Same file was marked clean on another box.  So, I picked several of the viruses it said was infected with and looked for any evidence of [...]]]></description>
			<content:encoded><![CDATA[<p>I was trying to install Oracle 11g client on to a WinXP box but Symantec Antivirus wouldn&#8217;t let me because it thought it was infected with over 800 viruses.  Same file was marked clean on another box.  So, I picked several of the viruses it said was infected with and looked for any evidence of them on the WinXP box.  No dice.  This led me to believe that Symantec Antivirus itself was somehow mucked up.</p>
<p>When I tried to uninstall Symantec Antivirus, it asked for a password.  When I put in the correct password, it refused it.  So how to uninstall it with a messed up password?  Easy..</p>
<p>Open up regedit (as an administrator) and change HKEY_LOCAL_MACHINE\SOFTWARE\INTEL\LANDesk\VirusProtect6\CurrentVersion\AdministratorOnly\Security\UseVPUninstallPassword to &#8220;0&#8243; (zero).</p>
<p>I was able to uninstall and reinstall Symantec Antivirus.</p>
]]></content:encoded>
			<wfw:commentRss>http://froebe.net/blog/2010/03/10/how-to-disable-the-uninstall-password-to-uninstall-symantec-antivirus/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Get it here! Perl DBD::Sybase 1.09.01 for Active State Perl 5.10 and 5.8 on Windows XP/Vista/7 32bit</title>
		<link>http://froebe.net/blog/2010/03/09/get-it-here-perl-dbdsybase-1-09-for-active-state-perl-5-10-and-5-8-on-windows-xpvista7-32bit/</link>
		<comments>http://froebe.net/blog/2010/03/09/get-it-here-perl-dbdsybase-1-09-for-active-state-perl-5-10-and-5-8-on-windows-xpvista7-32bit/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 22:27:48 +0000</pubDate>
		<dc:creator>Jason L Froebe</dc:creator>
				<category><![CDATA[APIs]]></category>
		<category><![CDATA[DBI]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[Sybase]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[15.5]]></category>
		<category><![CDATA[32 bit]]></category>
		<category><![CDATA[active state]]></category>
		<category><![CDATA[activestate]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[openclient]]></category>
		<category><![CDATA[peppler]]></category>
		<category><![CDATA[perl 5.10]]></category>
		<category><![CDATA[perl 5.8]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[windows 7]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://froebe.net/blog/?p=1223</guid>
		<description><![CDATA[Assuming that you installed Sybase OpenClient 15.5 from the 15.5 PC Client: Install ActiveState Perl from http://www.activestate.com (free) and install DBI if it isn’t already installed.  It should be but you never know… Start -&#62; ActiveState Perl -&#62; Perl Package Manager install DBI exit Now, the easy part.  Install the DBD::Sybase 1.09.01 PPM: download DBD::Sybase [...]]]></description>
			<content:encoded><![CDATA[<p>Assuming that you installed <a href="http://www.sybase.com/detail?id=1037407">Sybase OpenClient 15.5</a> from the 15.5 PC Client:</p>
<p>Install ActiveState Perl from <a href="http://www.activestate.com%c2%a0/">http://www.activestate.com</a> (free) and install DBI if it isn’t already installed.  It should be but  you never know…</p>
<ol>
<li>Start -&gt; ActiveState Perl -&gt; Perl Package Manager</li>
<li>install DBI</li>
<li>exit<a href="http://www.perl.org"><img class="alignright size-full wp-image-1207" title="perl" src="http://froebe.net/blog/wp-content/uploads/2010/02/perl.jpeg" alt="" width="279" height="303" /></a></li>
</ol>
<p>Now, the easy part.  Install the <a href="http://www.froebe.net/attachments/DBD-Sybase-1.09.01.zip">DBD::Sybase</a> 1.09.01 PPM:</p>
<ol>
<li>download <a title="DBD-Sybase-1.09.zip" href="http://www.froebe.net/attachments/DBD-Sybase-1.09.01.zip">DBD::Sybase  1.09.01 PPM</a></li>
<li>extract zip file to temporary directory (e.g. c:\test)</li>
<li>Start -&gt; Run -&gt; cmd.exe (as Administrator if Vista or Windows  7)</li>
<li>cd \test</li>
<li>ppm  install DBD-Sybase.ppd</li>
<li>exit</li>
</ol>
<p>That’s it <img src='http://froebe.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>It should automatically install the DBD::Sybase for Perl 5.8 or 5.10 depending on which version of Active State Perl you have installed.</p>
]]></content:encoded>
			<wfw:commentRss>http://froebe.net/blog/2010/03/09/get-it-here-perl-dbdsybase-1-09-for-active-state-perl-5-10-and-5-8-on-windows-xpvista7-32bit/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>For those of you that don&#8217;t know, last week I had my wisdom teeth removed.  There were a few complications..</title>
		<link>http://froebe.net/blog/2010/03/01/for-those-of-you-that-dont-know-last-week-i-had-my-wisdom-teeth-removed-there-were-a-few-complications/</link>
		<comments>http://froebe.net/blog/2010/03/01/for-those-of-you-that-dont-know-last-week-i-had-my-wisdom-teeth-removed-there-were-a-few-complications/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 17:22:40 +0000</pubDate>
		<dc:creator>Jason L Froebe</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[misc]]></category>
		<category><![CDATA[anemia]]></category>
		<category><![CDATA[anemic]]></category>
		<category><![CDATA[blood loss]]></category>
		<category><![CDATA[complications]]></category>
		<category><![CDATA[health]]></category>
		<category><![CDATA[oral surgeon]]></category>
		<category><![CDATA[wisdom teeth]]></category>

		<guid isPermaLink="false">http://froebe.net/blog/?p=1221</guid>
		<description><![CDATA[Tuesday, I took Jason to the oral surgeon’s to have all four of his wisdom teeth pulled. The surgery itself took about 45 minutes. It turned out there was a lot of infection back there, and as the doctor put it “it was messy”. The anesthesia made Jason really funny, and he took direction very [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Tuesday, I took Jason to the oral surgeon’s to have all four of his  wisdom teeth pulled.  The surgery itself took about 45 minutes.  It  turned out there was a lot of infection back there, and as the doctor  put it “it was messy”.  The anesthesia made Jason really funny, and he  took direction very well, which was nice for a bit.</p>
<p>However, the bleeding didn’t stop the way it should have.  After a  few hours of constant, continuous, copious bleeding, I called the  doctor’s office again, and they had us go back in. They gave him two  more stitches, and Jason finally clotted, after losing about 2 pints of  blood.</p>
<p>We came home, and I got Jason to drink a bit of milkshake, and  managed to keep him conscious until the fear of actually losing him  passed.</p>
<p>He’s still incredibly weak and tired – mostly due to the blood loss.</p></blockquote>
<p style="padding-left: 30px;">- <a href="http://k2p2.net/blog2/2010/02/27/one-hell-of-a-week/">My wife&#8217;s account</a> of it</p>
<p>The oral surgeon wasn&#8217;t aware of how much blood was lost, neither myself or my wife were in any condition to think clearly Tuesday.  I should have received a transfusion.</p>
<p>Nearly a week later and even though my mouth is doing fine, I&#8217;m quite low on red blood cells.  Made it into the office today (wife drove) and am leaving early because the room is spinning nearly nonstop and I&#8217;m fighting to stay conscious.  Going to try to see a doc today/tomorrow &#8230; maybe I&#8217;ll get some blood.  If not, give me a blinkin&#8217; straw and I&#8221;ll do it myself&#8230; Who&#8217;s A Positive around here?</p>
]]></content:encoded>
			<wfw:commentRss>http://froebe.net/blog/2010/03/01/for-those-of-you-that-dont-know-last-week-i-had-my-wisdom-teeth-removed-there-were-a-few-complications/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
