<?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>David Dietrich&#039;s Business Technology Blog</title>
	<atom:link href="http://www.guidsgonewild.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.guidsgonewild.com</link>
	<description>Business Technology Tips</description>
	<lastBuildDate>Fri, 22 Jul 2011 05:03:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Increasing a VirtualBox vdi&#8217;s disk space</title>
		<link>http://www.guidsgonewild.com/2011/07/19/increasing-a-virtualbox-vdis-disk-space/</link>
		<comments>http://www.guidsgonewild.com/2011/07/19/increasing-a-virtualbox-vdis-disk-space/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 06:17:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.guidsgonewild.com/?p=308</guid>
		<description><![CDATA[One of the big problems with VirtualBox, is the seeming lack of support for increasing the hard disk size of a Virtual Machine (VM). The command line tool provided with VirtualBox, VBoxManage, serves as the tool to modify and increase your hard drive settings. Let&#8217;s start with the problem of having a Windows 7 instance [...]]]></description>
			<content:encoded><![CDATA[<p>One of the big problems with VirtualBox, is the seeming lack of support for increasing the hard disk size of a Virtual Machine (VM). The command line tool provided with VirtualBox, VBoxManage, serves as the tool to modify and increase your hard drive settings.</p>
<p>Let&#8217;s start with the problem of having a Windows 7 instance that has just run out of room. In order to update the instance, completely exit VirtualBox. Then go to your Terminal window so that we can enter VBoxManage commands directly. Change Directory to where your VirtualBox VMs are being stored. On my Macbook Pro, they are stored in my user directory: ~/VirtualBox VMs/Win7Pro. Now let&#8217;s increase the VM&#8217;s disk size. Let&#8217;s say the current instance is 20G and we want to double that to 40G. Before we do this, we must be sure the disk is dynamic: The following command performs this function &#8211;&gt;</p>
<p><strong>cyrokx@ves-l4 ~/VirtualBox VMs/Win7Pro &#8211;&gt; VBoxManage showhdinfo Win7Pro.clone.vdi</strong><br />
UUID:                 d6b6c10e-0bff-45f3-9db7-b5c21a22dcea<br />
Accessible:           yes<br />
Logical size:         20480 MBytes<br />
Current size on disk: 18448 MBytes<br />
Type:                 normal (base)<br />
Storage format:       VDI<br />
Format variant:       dynamic default<br />
Location:             /Users/cyrokx/VirtualBox VMs/Win7Pro/Win7Pro.clone.vdi</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Since the Format variant is dynamic default, we can easily increase the disk size by running the following command &#8211;&gt;</p>
<p><strong>cyrokx@ves-l4 ~/VirtualBox VMs/Win7Pro &#8211;&gt; VBoxManage modifyhd Win7Pro.clone.vdi &#8211;resize 40960</strong></p>
<p>Your Virtual Machine is now 40G. Once in Windows, go to Administrative Tools -&gt; Computer Management. Go to Disk Management and extend your existing partition with the newly created disk space.</p>
<p>Now if your Format Variant read: fixed default, there are a number of steps you must now do. Only dynamic disks can be increased in size. Fortunately we can clone VMs and the cloning process automatically creates a clone with a dynamic disk. In our hypothetical example above, we are now going to write the steps to perform to clone and resize the disk.</p>
<p>Resizing the disk is a little more than trivial. The key is to ensure you keep the same UUID on the disk.vdi image that VirtualBox has registered. To resize a disk that is fixed, you must first make a copy of the .vdi you wish to increase the size of. To accomplish all of this, we are going to use the following VBoxManage commands:</p>
<ol>
<li><strong>&gt;VBoxManage showhdinfo Original.vdi</strong><br />
You should see a response similar to the following (be sure to copy the UUID, you&#8217;ll need it later) &#8211;&gt;<br />
UUID:                 d6b6c10e-0bff-45f3-9db7-b5c21a22dcea<br />
Accessible:           yes<br />
Logical size:         20480 MBytes<br />
Current size on disk: 18448 MBytes<br />
Type:                 normal (base)<br />
Storage format:       VDI<br />
Format variant:       dynamic default<br />
Location:             /Users/cyrokx/VirtualBox VMs/Original/Original.vdi</li>
<li><strong>&gt;VBoxManage clonehd Original.vdi newCloneOfOriginal.vdi</strong></li>
<li><strong>&gt;VBoxManage modifyhd newCloneOfOriginal.vdi &#8211;resize 40960</strong></li>
<li><strong>&gt;VBoxManage showhdinfo newCloneOfOriginal.vdi</strong><br />
In the response of showhdinfo, you will see the UUID has changed. Next we need to change the cloned image&#8217;s UUID to that of the Original.vdi&#8217;s UUID.</li>
<li><strong>&gt;VBoxManage internalcommands sethduuid newCloneOfOriginal.vdi d6b6c10e-0bff-45f3-9db7-b5c21a22dcea</strong></li>
<li>Now that you have a clone with the newly increased disk space, you need to copy it over the Original.vdi.<br />
<strong>&gt;mv Original.vdi /some/place/special</strong></li>
<li><strong>&gt;mv newCloneOfOriginal.vdi Original.vdi</strong></li>
<li>Start the newly expanded VM!!</li>
</ol>
<p>There you have it. A little cumbersome, but serves the same purpose. I tend to prefer to preallocate all of my disk space fixed. But this exercise may be enough to get me to change my mind&#8230;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.guidsgonewild.com/2011/07/19/increasing-a-virtualbox-vdis-disk-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Verifone RiTA software with IBM WAS</title>
		<link>http://www.guidsgonewild.com/2010/02/22/using-verifon-rita-software-with-ibm-was/</link>
		<comments>http://www.guidsgonewild.com/2010/02/22/using-verifon-rita-software-with-ibm-was/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 21:53:32 +0000</pubDate>
		<dc:creator>David Dietrich</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Payment Systems]]></category>
		<category><![CDATA[WebSphere]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[verifone rita]]></category>
		<category><![CDATA[was]]></category>

		<guid isPermaLink="false">http://www.guidsgonewild.com/?p=285</guid>
		<description><![CDATA[If you are running the RiTA software by Verifone, you may encounter a number of issues configuring the software to work in an IBM WebSphere environment. There are two issues you want to avoid: Not being able to find the tid.jcc file Not having the .jar files in the correct location First, the tid.jcc needs [...]]]></description>
			<content:encoded><![CDATA[<p>If you are running the RiTA software by Verifone, you may encounter a number of issues configuring the software to work in an IBM WebSphere environment. There are two issues you want to avoid:</p>
<ul>
<li>Not being able to find the tid.jcc file</li>
<li>Not having the .jar files in the correct location</li>
</ul>
<p>First, the tid.jcc needs to be in the default server directory for IBM WAS. On Linux, this will most likely be the /opt/IBM/WebSphere/AppServer/profiles/AppSrv01 directory.</p>
<p>To add the tid.jcc reference, you will want to link it from your RiTA installation directory (the default directory being /opt/rita). Run these commands:</p>
<p><strong>&gt;cd /opt/IBM/WebSphere/AppServer/profiles/AppSrv01<br />
&gt;ln -s /opt/rita/tid.jcc</strong></p>
<p>Next, you will need to link all of the RiTA .jar files to your extensions directory in the Java Runtime Engine. Run these commands:</p>
<p><strong>&gt;cd /opt/IBM/WebSphere/AppServer/java/jre/lib/ext<br />
&gt;find /opt/rita/lib/rita -name &#8216;*.jar&#8217; -exec ln -s {} \;</strong></p>
<p>You will now have symbolic links to all of the RiTA .jar files and it will be accessible to WebSphere and all other Java applications.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.guidsgonewild.com/2010/02/22/using-verifon-rita-software-with-ibm-was/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jasper Server could not insert error</title>
		<link>http://www.guidsgonewild.com/2010/02/16/jasper-server-could-not-insert-error/</link>
		<comments>http://www.guidsgonewild.com/2010/02/16/jasper-server-could-not-insert-error/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 19:25:46 +0000</pubDate>
		<dc:creator>David Dietrich</dc:creator>
				<category><![CDATA[Jasper Reports]]></category>
		<category><![CDATA[reports]]></category>

		<guid isPermaLink="false">http://www.guidsgonewild.com/?p=282</guid>
		<description><![CDATA[In Jasper Server, you may encounter the following error: org.hibernate.exception.GenericJDBCException: could not insert: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.ContentRepoFileResource] This can be caused by having too many automated reports stored in your Content Files directory. Especially if there are number of large .xls (or any type of file). Just be sure to keep this directory to less than 50 files, and [...]]]></description>
			<content:encoded><![CDATA[<p>In Jasper Server, you may encounter the following error:</p>
<p>org.hibernate.exception.GenericJDBCException: could not insert: [com.jaspersoft.jasperserver.api.metadata.common.service.impl.hibernate.persistent.ContentRepoFileResource]</p>
<p>This can be caused by having too many automated reports stored in your Content Files directory. Especially if there are number of large .xls (or any type of file).</p>
<p>Just be sure to keep this directory to less than 50 files, and you should be good!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.guidsgonewild.com/2010/02/16/jasper-server-could-not-insert-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up a classless DNS with Bind9 on Ubuntu and Red Hat Linux flavors</title>
		<link>http://www.guidsgonewild.com/2010/02/03/setting-up-a-classless-dns-with-bind9-on-ubuntu-and-red-hat-linux-flavors/</link>
		<comments>http://www.guidsgonewild.com/2010/02/03/setting-up-a-classless-dns-with-bind9-on-ubuntu-and-red-hat-linux-flavors/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 01:45:56 +0000</pubDate>
		<dc:creator>David Dietrich</dc:creator>
				<category><![CDATA[Domain Name Service (DNS)]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[Domain Name Service]]></category>

		<guid isPermaLink="false">http://www.guidsgonewild.com/?p=278</guid>
		<description><![CDATA[Setting up a classless DNS is critical if you are setting up a mail server on your classless set of IPs. For instance, when my mail users send e-mails to Comcast, Cox, or Time-Warner, my mail is rejected with the following message between the stars: ******************** Subject: Undelivered Mail Returned to Sender This is the [...]]]></description>
			<content:encoded><![CDATA[<p>Setting up a classless DNS is critical if you are setting up a mail server on your classless set of IPs. For instance, when my mail users send e-mails to Comcast, Cox, or Time-Warner, my mail is rejected with the following message between the stars:</p>
<p>********************</p>
<p>Subject: Undelivered Mail Returned to Sender</p>
<p>This is the mail system at host melon.skky.net.</p>
<p>I&#8217;m sorry to have to inform you that your message could not be delivered to one or more recipients. It&#8217;s attached below.</p>
<p>For further assistance, please send mail to postmaster.</p>
<p>If you do so, please include this problem report. You can delete your own text from the attached returned message.</p>
<p>                   The mail system</p>
<p>&lt;<a href="mailto:ddietrich@@socal.rr.com">mailto:ddietrich@@socal.rr.com</a>&gt;: host hrndva-smtpin02.mail.rr.com[71.74.56.244] refused to talk to me: 421 4.7.1 &#8211; Connection refused.  Cannot resolve PTR record for 216.23.169.107</p>
<p>********************</p>
<p>In order to resolve this issue, you must ask your hosting provider to forward reverse DNS queries to your DNS server. Then, you can set up the reverse DNS for your classless range of IPs. Start by editing your named.conf file (/etc/bind/named.conf on Ubuntu, /var/named/chroot/etc/named.conf on Red Hat flavors). Add the following lines&#8211;&gt;</p>
<p><strong>zone &#8220;96/28.169.23.216.in-addr.arpa&#8221; {<br />
 type master;<br />
 file &#8220;/etc/bind/96-28.169.23.216.rev&#8221;;<br />
};</strong></p>
<p>In my case, my provider assigned me the range of 216.23.169.23.96-216.23.169.110. This is a /28 set of addresses. Notice how we reverse the zone entry. The Class D first, followed by a /, followed by the .Class C.Class B.Class A.in-addr.arpa. The filename roughly matches this as well. I called the file 96-28.169.23.216.rev. Just put this file in your /etc/bind directory on Ubuntu, or /var/named/chroot/var/named on Red Hat Linux flavors (RH5, CentOS, Fedora Core, etc.)</p>
<p>Now for the actual file 96-28.169.23.216.rev contents between the stars &#8211;&gt;</p>
<p>****************************</p>
<p>$ttl 38400<br />
$ORIGIN 96/28.169.23.216.in-addr.arpa.<br />
@       1D      IN      SOA     ns1.wiretoss.com. ddietrich.localhost. (<br />
                        1172404866<br />
                        10800<br />
                        3600<br />
                        604800<br />
                        38400 )<br />
        NS      ns1.wiretoss.com.<br />
        NS      ns2.wiretoss.com.<br />
100     PTR     ns1.vitaven.com.<br />
101     PTR     101.wiretoss.com.<br />
102     PTR     102.wiretoss.com.<br />
103     PTR     103.wiretoss.com.<br />
104     PTR     104.wiretoss.com.<br />
105     PTR     105.wiretoss.com.<br />
106     PTR     106.wiretoss.com.<br />
107     PTR     ns1.wiretoss.com.<br />
108     PTR     108.wiretoss.com.<br />
109     PTR     109.wiretoss.com.<br />
110     PTR     110.wiretoss.com.<br />
****************************</p>
<p>Restart bind9 and you should now have a happy reverse DNS to the rest of the world, and especially those pesky mail servers that check for everything.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.guidsgonewild.com/2010/02/03/setting-up-a-classless-dns-with-bind9-on-ubuntu-and-red-hat-linux-flavors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remount /etc/fstab without rebooting</title>
		<link>http://www.guidsgonewild.com/2010/01/26/remount-etcfstab-without-rebooting/</link>
		<comments>http://www.guidsgonewild.com/2010/01/26/remount-etcfstab-without-rebooting/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 00:42:11 +0000</pubDate>
		<dc:creator>David Dietrich</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.guidsgonewild.com/?p=274</guid>
		<description><![CDATA[Many times it would be nice to make changes to your /etc/fstab file. The problem is that you must reboot. No longer. Run the following command to remount your /etc/fstab file without rebooting &#8211;&#62; &#62;mount -a Everything should now be remounted and you can fix any errors that may have occurred with your new /etc/fstab [...]]]></description>
			<content:encoded><![CDATA[<p>Many times it would be nice to make changes to your /etc/fstab file. The problem is that you must reboot. No longer. Run the following command to remount your /etc/fstab file without rebooting &#8211;&gt;</p>
<p>&gt;mount -a</p>
<p>Everything should now be remounted and you can fix any errors that may have occurred with your new /etc/fstab entries.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.guidsgonewild.com/2010/01/26/remount-etcfstab-without-rebooting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Samba &#8211; Stop homes from showing in shares</title>
		<link>http://www.guidsgonewild.com/2010/01/26/samba-stop-homes-from-showing-in-shares/</link>
		<comments>http://www.guidsgonewild.com/2010/01/26/samba-stop-homes-from-showing-in-shares/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 00:37:24 +0000</pubDate>
		<dc:creator>David Dietrich</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Samba]]></category>

		<guid isPermaLink="false">http://www.guidsgonewild.com/?p=270</guid>
		<description><![CDATA[When using Samba on Linux, there are times that you want to allow user to have a private user directory, but do not want the &#8220;homes&#8221; directory share to show up. This is relatively simple. Edit your /etc/samba/smb.conf file with your favorite Linux editor. Look for the section [homes] and find the line browseable = set [...]]]></description>
			<content:encoded><![CDATA[<p>When using Samba on Linux, there are times that you want to allow user to have a private user directory, but do not want the &#8220;homes&#8221; directory share to show up. This is relatively simple.</p>
<p>Edit your /etc/samba/smb.conf file with your favorite Linux editor.<br />
Look for the section [homes] and find the line<br />
<strong>browseable =</strong></p>
<p>set this line to <strong>browseable = no</strong></p>
<p>Restart Samba (<strong>&gt;service smb restart</strong>) and your users should now see their personal directory without seeing the homes share.</p>
<p>If you do not have a [homes] section, here is an example on for you &#8211;&gt;</p>
<p>[homes]<br />
        hide dot files = no<br />
        comment = Home Directories<br />
        writeable = yes<br />
        delete readonly = yes<br />
        valid users = %S<br />
        browseable = no</p>
]]></content:encoded>
			<wfw:commentRss>http://www.guidsgonewild.com/2010/01/26/samba-stop-homes-from-showing-in-shares/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Essential Startup Reader: 10 Lessons in Entrepreneurship</title>
		<link>http://www.guidsgonewild.com/2010/01/17/10-lessons-in-entrepreneurship/</link>
		<comments>http://www.guidsgonewild.com/2010/01/17/10-lessons-in-entrepreneurship/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 18:12:38 +0000</pubDate>
		<dc:creator>David Dietrich</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Entrepreneurship]]></category>
		<category><![CDATA[entrepreneur]]></category>
		<category><![CDATA[startup]]></category>

		<guid isPermaLink="false">http://www.guidsgonewild.com/2010/01/17/252/</guid>
		<description><![CDATA[By Om Malik Jan. 2, 2010, 2:47pm 24 Comments 0 3 74 847 As a blogger, I spend most of my time writing. But it’s time spent reading that’s most satisfying. Here’s a short (and by no means a complete) list of 10 articles that encapsulate the art of the startup. Most were published during [...]]]></description>
			<content:encoded><![CDATA[<p><!-- Timer: [after navigation] 0.196 | 0.016 --></p>
<div class="grid_12 content p post publish author-om-malik category-oms-posts category-startup-strategy category-startups tag-startups y2010 m01 d02 h06 alt clearfix">
<div class="grid_8 alpha single">
<div class="post content-default p1 post publish author-om-malik category-oms-posts category-startup-strategy category-startups tag-startups y2010 m01 d02 h06 clearfix">
<div class="post-content clearfix">
<div class="post-meta-wrap clearfix">
<div class="post-meta-left"><span class="post-meta the-author"><span style="color: #727272;">By </span><a title="Posts by Om Malik" href="http://gigaom.com/author/om/"><span style="color: #000000;">Om Malik</span></a></span> <span class="post-meta the-date"><span style="color: #727272;">Jan. 2, 2010, 2:47pm</span></span> <span class="post-meta comments-link"><a title="Comment on The Essential Startup Reader: 10 Lessons in Entrepreneurship" rev="post-88995" href="http://gigaom.com/2010/01/02/startup-company-lessons/#comments"><span style="color: #000000;">24 Comments</span></a></span></div>
<div class="post-meta-right social-knobs"><span class="goRating ratings ratings-icon goRating-active-88995"><a title="Like"><span class="counter"><span style="color: #a3a3a3;">0</span></span></a></span> <a id="gep_88995" class="email email-icon" title="E-mail" href=";"><span style="color: #a3a3a3;">3</span></a> <a class="facebook facebook-icon" title="Share on Facebook" href="http://www.facebook.com/sharer.php?u=http://gigaom.com/2010/01/02/startup-company-lessons/" target="_blank"><span style="color: #a3a3a3;">74</span></a> <a class="twitter twitter-icon" title="ReTweet" href="http://twitter.com/?status=The+Essential+Startup+Reader%3A+10+Lessons+in%26nbsp%3BEntrepreneurship+http%3A%2F%2Fbit.ly%2F5qDgn6+from+%40gigaom" target="_blank"><span style="color: #a3a3a3;">847</span></a></div>
</div>
<div class="the-content clearfix">
<p class="snap_preview">As a blogger, I spend most of my time writing. But it’s time spent reading that’s most satisfying. Here’s a short (and by no means a complete) list of 10 articles that encapsulate the art of the startup. Most were published during 2009, and I found them educational and full of practical tips that we’ve applied to our business. They’ve also helped me think differently about startups and entrepreneurship. Hope you enjoy reading them as much as I did.</p>
<div class="snap_preview">
<ol>
<li class="first"><a href="http://www.paulgraham.com/really.html" target="_new"><span style="color: #64a0c8;">“What Startups Are Really Like” by Paul Graham</span></a>: This has to be the single best essay I read during 2009. Every entrepreneur should begin the startup journey with this essay. It bottles every essence of entrepreneurship and startups, and is chock-full of practical advise and tips that are applicable to anyone who dares to dream.</li>
<li><a href="http://startup-marketing.com/milestones-to-startup-success/" target="_new"><span style="color: #64a0c8;">“Milestones to Startup Success” by Sean Ellis</span></a>: Ellis explains the need for minimum viable product, aka MVP, and then outlines how startups can go up his startup pyramid to find success.</li>
<li>“<a href="http://gigaom.com/2009/10/18/myth-entrepreneurship-will-make-you-rich/" target="_new"><span style="color: #64a0c8;">Myth: Entrepreneurship Will Make You Rich” by Eric Ries</span></a>: “One of the unfortunate side effects of all the publicity and hype surrounding startups is the idea that entrepreneurship is a guaranteed path to fame and riches. It isn’t,” Ries writes in this no-holds-barred essay about the challenges and pitfalls of being a startup founder.</li>
<li><a href="http://venturehacks.com/articles/minimum-viable-product" target="_new"><span style="color: #64a0c8;">“What Is the Minimum Viable Product?” by Venture Hacks</span></a>: A great audio conversation on the Venturehacks blog including a slide show.</li>
<li><a href="http://gigaom.com/2009/08/30/the-power-of-continuous-improvement/" target="_new"><span style="color: #64a0c8;">“The Power of Continuous Improvement” by Mike Speiser</span></a>: In a guest post for us, Mike talks about the importance of metrics, feedback and how they can drive continuous improvement. Mike’s rules have found eager takers among our team.</li>
<li><a href="http://gigaom.com/2009/07/26/getting-comfortable-with-people-who-make-you-uncomfortable/" target="_new"><span style="color: #64a0c8;">“Getting Comfortable With People Who Make You Uncomfortable” by Mike Speiser</span></a>: In this article, Mike addresses the need for people who challenge conventional wisdom and make everyone around them uncomfortable — which is why every company needs them.</li>
<li><a href="http://www.tonywright.com/2009/software-and-making-money-presentation-slides-included/" target="_new"><span style="color: #64a0c8;">“The Funnel Principle: Software &amp; Making Money” by Tony Wright</span></a>: It’s good to build great products, but in order to build great companies one needs to have more — a clear path of monetization, an attention magnet, and in general excellence at things beyond product development.</li>
<li><a href="http://andrewchenblog.com/2009/12/04/does-every-startup-need-a-steve-jobs/" target="_new"><span style="color: #64a0c8;">“Does Every Startup Need a Steve Jobs?” by Andrew Chen</span></a>: A dissection of how insanely great products are built by combining desirability, feasibility and viability. Read this post after reading Wright’s “Funnel Principle.”</li>
<li class="last"><a href="http://www.slideshare.net/bokardo/designing-for-social-traction" target="_new"><span style="color: #64a0c8;">“Designing for Social Traction” by Josh Porter</span></a></li>
</ol>
</div>
<p><span style="color: #64a0c8;"> </span></p>
<p>10: <a href="http://www.forentrepreneurs.com/startup-killer/" target="_new"><span style="color: #64a0c8;">“Startup Killer: The Cost of Customer Acquisition” by David Skok</span></a>: A definitive essay on startup business models, the perils of overoptimism, and the importance of cost of customer acquisitions. Skok is a 3-time entrepreneur with a lifetime of experience.</p>
<p>Bonus links:</p>
<ul>
<li class="first">Self-serving: <a href="http://omis.me/2009/10/06/what-every-entrepreneur-can-learn-from-derek-jeter/" target="_new"><span style="color: #64a0c8;">“What Every Entrepreneur Can Learn From Derek Jeter”</span></a> and “<a href="http://gigaom.com/2007/04/13/derek-jeter/"><span style="color: #64a0c8;">What Makes DJ Tick.”</span></a></li>
<li class="last">Every startup guy should listen to Jobs’ speech before embarking on their journey.</li>
</ul>
<p class="last"><a href="http://www.youtube.com/watch?v=UF8uR6Z6KLc">Steve Jobs\&#8217; 2005 Stanford Commencement Address</a></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/UF8uR6Z6KLc&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/UF8uR6Z6KLc&amp;hl=en_US&amp;fs=1&amp;" allowfullscreen="true" allowscriptaccess="always"></embed></object> </p>
<p class="last"> </p>
</div>
</div>
</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.guidsgonewild.com/2010/01/17/10-lessons-in-entrepreneurship/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Initializing a new instance of Linux</title>
		<link>http://www.guidsgonewild.com/2010/01/14/initializing-a-new-instance-of-linux/</link>
		<comments>http://www.guidsgonewild.com/2010/01/14/initializing-a-new-instance-of-linux/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 05:31:30 +0000</pubDate>
		<dc:creator>David Dietrich</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.guidsgonewild.com/?p=172</guid>
		<description><![CDATA[After a fresh install of Linux, there are a number of tasks I like to do. I like having commands and aliases that I am used to installed. Copy /opt/scripts Create /opt/sw /opt/scripts/stopUnusedServices.sh set up MySQL Install WebMin and VirtualMin for managing your domain names and their.]]></description>
			<content:encoded><![CDATA[<p>After a fresh install of Linux, there are a number of tasks I like to do. I like having commands and aliases that I am used to installed.</p>
<p>Copy /opt/scripts</p>
<p>Create /opt/sw</p>
<p>/opt/scripts/stopUnusedServices.sh</p>
<p>set up MySQL</p>
<p>Install WebMin and VirtualMin for managing your domain names and their.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.guidsgonewild.com/2010/01/14/initializing-a-new-instance-of-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connecting Red Hat 5.3 to a Dell MD3000i</title>
		<link>http://www.guidsgonewild.com/2010/01/14/connecting-red-hat-5-3-to-a-dell-md3000i/</link>
		<comments>http://www.guidsgonewild.com/2010/01/14/connecting-red-hat-5-3-to-a-dell-md3000i/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 05:26:35 +0000</pubDate>
		<dc:creator>David Dietrich</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Storage Area Network (SAN)]]></category>
		<category><![CDATA[SAN]]></category>

		<guid isPermaLink="false">http://www.guidsgonewild.com/?p=167</guid>
		<description><![CDATA[Connecting to a DELL MD3000i is no trivial matter with Linux. First, you need to ensure that you have the DKMS package installed. &#62;yum -y install dkms &#62;yum -y install iscsi-initiator-utils &#62;yum -y install gcc &#62;yum -y install kernel-devel &#62;yum -y install sgpio &#62;yum -y install sg3_utils Now you can install the Dell Tools and [...]]]></description>
			<content:encoded><![CDATA[<p>Connecting to a DELL MD3000i is no trivial matter with Linux. First, you need to ensure that you have the DKMS package installed.</p>
<p>&gt;yum -y install dkms<br />
&gt;yum -y install iscsi-initiator-utils<br />
&gt;yum -y install gcc<br />
&gt;yum -y install kernel-devel<br />
&gt;yum -y install sgpio<br />
&gt;yum -y install sg3_utils</p>
<p>Now you can install the Dell Tools and finish configuring your SAN.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.guidsgonewild.com/2010/01/14/connecting-red-hat-5-3-to-a-dell-md3000i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jasper Server Permission Denied error</title>
		<link>http://www.guidsgonewild.com/2010/01/14/jasper-server-permission-denied-error-2/</link>
		<comments>http://www.guidsgonewild.com/2010/01/14/jasper-server-permission-denied-error-2/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 04:50:52 +0000</pubDate>
		<dc:creator>David Dietrich</dc:creator>
				<category><![CDATA[Apache Tomcat]]></category>
		<category><![CDATA[Jasper Reports]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Jasper]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.guidsgonewild.com/?p=218</guid>
		<description><![CDATA[Occasionally, Jasper Server has an error relating to being unable to write files. The errors show up in the Apache web server log, catalina.out. You have probably started the service as the user root on accident. This will cause ownership to change to root on some log files. Then when you log back on as user jasper [...]]]></description>
			<content:encoded><![CDATA[<p>Occasionally, Jasper Server has an error relating to being unable to write files. The errors show up in the Apache web server log, catalina.out.</p>
<p>You have probably started the service as the user root on accident. This will cause ownership to change to root on some log files. Then when you log back on as user jasper and restart your server, the Apache logs are filling with messages about not being able to write files. Jasper is just not working properly. Run the following command to restore the proper ownership to all files in the Jasper directory. You must run the following command as root:</p>
<p><strong>&gt;find /home/jasper/jasper-server-3.7 -user root -exec chown jasper.jasper {} \;</strong></p>
<p>This will find all the files that root changed ownership and change the ownership back to the proper jasper user.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.guidsgonewild.com/2010/01/14/jasper-server-permission-denied-error-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

