<?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>Dusty Reagan &#187; IT &amp; Administration</title>
	<atom:link href="http://dustyreagan.com/category/it-administration/feed/" rel="self" type="application/rss+xml" />
	<link>http://dustyreagan.com</link>
	<description>Another Geek In The Wall</description>
	<lastBuildDate>Tue, 12 Jan 2010 04:21:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Installing Cassandra on Ubuntu Linux</title>
		<link>http://dustyreagan.com/installing-cassandra-on-ubuntu-linux/</link>
		<comments>http://dustyreagan.com/installing-cassandra-on-ubuntu-linux/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 02:11:08 +0000</pubDate>
		<dc:creator>Dusty</dc:creator>
				<category><![CDATA[IT & Administration]]></category>
		<category><![CDATA[Web & Software Development]]></category>
		<category><![CDATA[Cassandra]]></category>
		<category><![CDATA[NoSQL]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/?p=175</guid>
		<description><![CDATA[Cassandra is a highly scalable, eventually consistent, distributed, structured key-value store. It&#8217;s an alternative to SQL if you don&#8217;t need relational data structures. The best part is it&#8217;s super fast, and distributed. The worst part is there&#8217;s not much documentation or community, at least compared to MySQL. So, I&#8217;m doing my small part to contribute [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://incubator.apache.org/cassandra/" onclick="javascript:pageTracker._trackPageview ('/outbound/incubator.apache.org');">Cassandra</a> is a highly scalable, eventually consistent, distributed, structured key-value store. It&#8217;s an alternative to SQL if you don&#8217;t need relational data structures. The best part is it&#8217;s super fast, and distributed. The worst part is there&#8217;s not much documentation or community, at least compared to MySQL. So, I&#8217;m doing my small part to contribute to Cassandra. Here&#8217;s how I installed Cassandra on Ubuntu 8.04.2 LTS (hardy), but these directions should work on pretty much any Linux distro.</p>
<p><strong>1. First upgrade your software as is with the following two commands (just for good measure):</strong></p>
<pre><strong></strong>sudo apt-get update
sudo apt-get upgrade</pre>
<p><strong>2. Now, open up your Debian package sources list with Nano for editing using the following command:</strong></p>
<pre>sudo nano /etc/apt/sources.list</pre>
<p><strong>3. Next, add the following sources to your /etc/apt/sources.list file.</strong></p>
<pre>deb http://www.apache.org/dist/incubator/cassandra/debian unstable main
deb-src http://www.apache.org/dist/incubator/cassandra/debian unstable main</pre>
<p>After you add these two lines, press cntrl+X to close Nano. It&#8217;ll ask &#8220;Save modified buffer?&#8221; Press Y. Press Enter when Nano asks &#8220;File Name to Write.&#8221;</p>
<p><strong></strong><strong>4. Run the update to install Casandra with this command:</strong></p>
<pre><strong></strong>sudo apt-get update</pre>
<p><strong>5. ERROR! At this point you receive an error similar to this:</strong></p>
<pre>W: GPG error: http://www.apache.org unstable Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY F758CE318D77295D</pre>
<p><strong>6. Use the following three commands to ignore the signature error, and continue installing:</strong></p>
<p><strong>NOTE: You must replace the key value &#8216;F758CE318D77295D&#8217; with the key value you received in your error message.</strong></p>
<pre>gpg --keyserver wwwkeys.eu.pgp.net --recv-keys F758CE318D77295D
sudo apt-key add ~/.gnupg/pubring.gpg
sudo apt-get update</pre>
<p><strong>7. Install Cassandra:</strong></p>
<pre>sudo apt-get install cassandra</pre>
<p><strong>8. Next you need to change Cassandra&#8217;s default port number from 8080 to something else, because the 8080 port typically conflicts with SSH terminal connections. Use Nano to open up the Cassandra configuration file using the following command:</strong></p>
<pre>sudo nano /usr/share/cassandra/cassandra.in.sh</pre>
<p><strong>9. Then change the port number 8080 on the following line to 10036, and save the file:</strong></p>
<pre>-Dcom.sun.management.jmxremote.port=10036 \</pre>
<p><strong>10. Start Cassandra with the command:</strong></p>
<pre>/etc/init.d/cassandra start</pre>
<p>Once you have Cassandra running, test it with Cassandra&#8217;s command line tool CLI. Use the example found on the <a href="http://wiki.apache.org/cassandra/CassandraCli" onclick="javascript:pageTracker._trackPageview ('/outbound/wiki.apache.org');">Cassandra Wiki</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/installing-cassandra-on-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to Update Ubuntu Hardy to PHP 5.2.9</title>
		<link>http://dustyreagan.com/how-to-update-ubuntu-hardy-to-php-529/</link>
		<comments>http://dustyreagan.com/how-to-update-ubuntu-hardy-to-php-529/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 09:01:04 +0000</pubDate>
		<dc:creator>Dusty</dc:creator>
				<category><![CDATA[IT & Administration]]></category>
		<category><![CDATA[Web & Software Development]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/?p=133</guid>
		<description><![CDATA[First upgrade your software as is.
&#62;&#62; sudo apt-get update
&#62;&#62; sudo apt-get upgrade
Then add the following to your /etc/apt/sources.list file.
&#62;&#62; sudo nano /etc/apt/sources.list
deb http://http.us.debian.org/debian stable all
deb http://security.debian.org/ stable/updates main contrib
deb http://packages.dotdeb.org/ stable all

Finally run the update to install PHP 5.2.9.
&#62;&#62; sudo apt-get update
&#62;&#62; sudo apt-get install php5-cli
&#62;&#62; sudo /etc/init.d/apache2 restart
]]></description>
			<content:encoded><![CDATA[<h3><strong>First</strong> upgrade your software as is.</h3>
<p><code>&gt;&gt; sudo apt-get update</code></p>
<p><code>&gt;&gt; sudo apt-get upgrade</code></p>
<h3><strong>Then</strong> add the following to your /etc/apt/sources.list file.</h3>
<p><code>&gt;&gt; sudo nano /etc/apt/sources.list</code></p>
<pre>deb http://http.us.debian.org/debian stable all
deb http://security.debian.org/ stable/updates main contrib
deb http://packages.dotdeb.org/ stable all</pre>
<h3><strong></p>
<p>Finally</strong> run the update to install PHP 5.2.9.</h3>
<p><code>&gt;&gt; sudo apt-get update</code></p>
<p><code>&gt;&gt; sudo apt-get install php5-cli</code></p>
<p><code>&gt;&gt; sudo /etc/init.d/apache2 restart</code></p>
]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/how-to-update-ubuntu-hardy-to-php-529/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to increase or decrease your Boot Camp partition</title>
		<link>http://dustyreagan.com/how-to-increase-or-decrease-your-boot-camp-partition/</link>
		<comments>http://dustyreagan.com/how-to-increase-or-decrease-your-boot-camp-partition/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 20:06:07 +0000</pubDate>
		<dc:creator>Dusty</dc:creator>
				<category><![CDATA[IT & Administration]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Boot Camp]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Winclone]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/?p=60</guid>
		<description><![CDATA[If you&#8217;re running Mac OS X and Boot Camp you may need to increase or decrease the size of your Microsoft Windows Boot Camp partition, depending on what great videos games are out for Windows at the time.  
To accomplish this task without losing all your Windows data you need 3 things.

Mac OS X [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re running Mac OS X and Boot Camp you may need to increase or decrease the size of your Microsoft Windows Boot Camp partition, depending on what great videos games are out for Windows at the time. <img src='http://dustyreagan.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>To accomplish this task without losing all your Windows data you need 3 things.</p>
<ol>
<li>Mac OS X 10.5 (Leopard)</li>
<li>An <span class="postbody">HFS+ Mac-formatted external drive</span></li>
<li><span class="postbody"><a href="http://twocanoes.com/winclone/" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/twocanoes.com');">Winclone</a><br />
</span></li>
</ol>
<p><span class="postbody"> </span></p>
<p>To <strong>decrease</strong> the size of your Windows partition use the following steps.</p>
<ol>
<li><span class="postbody">Make a backup of your Boot Camp partition from Windows. (optional)</span></li>
<li><span class="postbody">Run Winclone.</span></li>
<li><span class="postbody">In the &#8220;Tools&#8221; drop down click &#8220;Shrink Windows (NTFS) file system.&#8221;</span></li>
<li><span class="postbody">Follow the onscreen instructions.</span></li>
<li><span class="postbody">Wait&#8230; it takes awhile.<br />
</span></li>
<li><span class="postbody">In Winclone create an &#8220;Image&#8221; to your Mac-formatted external hard drive.</span></li>
<li><span class="postbody">Use Boot Camp Assistant to return your drive to a 100% Mac-formatted partition.</span></li>
<li><span class="postbody">Use Boot Camp Assistant to make a new Boot Camp partition larger than the file size of your &#8220;shrunk&#8221; Windows partition image, but smaller than your original Boot Camp partition size.<br />
</span></li>
<li><span class="postbody">When it asks for Windows disk, quit Boot Camp Assistant.</span></li>
<li><span class="postbody">Run Winclone again and &#8220;Restore&#8221; your Windows image to the new partition. </span></li>
</ol>
<p>To <strong>increase</strong> the size of your Windows partition use the following steps.</p>
<ol>
<li><span class="postbody">Make a backup of your Boot Camp partition from Windows. (optional)</span></li>
<li><span class="postbody">Run Winclone.</span></li>
<li><span class="postbody"> In Winclone create an &#8220;Image&#8221; to your Mac-formatted external hard drive.</span></li>
<li><span class="postbody">Use Boot Camp Assistant to return your drive to a 100% Mac-formatted partition.</span></li>
<li><span class="postbody">Use Boot Camp Assistant to make new Boot Camp partition larger than your original partition size.<br />
</span></li>
<li><span class="postbody">When it asks for Windows disk, quit Boot Camp Assistant.</span></li>
<li><span class="postbody">Run Winclone again and &#8220;Restore&#8221; your Windows image to the new partition. </span></li>
</ol>
<p>Kind of a pain, but it&#8217;s doable. I&#8217;ve altered my Boot Camp partition numerous times using the methods above.</p>
]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/how-to-increase-or-decrease-your-boot-camp-partition/feed/</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>Why is &#8220;Content-type: text/html&#8221; displayed at the top of my CGI pages?</title>
		<link>http://dustyreagan.com/why-is-content-type-texthtml-displayed-at-the-top-of-my-cgi-pages/</link>
		<comments>http://dustyreagan.com/why-is-content-type-texthtml-displayed-at-the-top-of-my-cgi-pages/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 22:38:07 +0000</pubDate>
		<dc:creator>Dusty</dc:creator>
				<category><![CDATA[IT & Administration]]></category>
		<category><![CDATA[Web & Software Development]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[PerlIS]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/why-is-content-type-texthtml-displayed-at-the-top-of-my-cgi-pages/</guid>
		<description><![CDATA[Recently one of my clients was having some issues with a CGI script they purchased. They&#8217;re running IIS on all of their servers, and oddly, this purchased script worked on one of their servers but not the other. On the server where the script wasn&#8217;t running correctly, IE displayed &#8220;Content-type: text/html&#8221; at the top of [...]]]></description>
			<content:encoded><![CDATA[<p>Recently one of my clients was having some issues with a CGI script they purchased. They&#8217;re running IIS on all of their servers, and oddly, this purchased script worked on one of their servers but not the other. On the server where the script wasn&#8217;t running correctly, IE displayed &#8220;Content-type: text/html&#8221; at the top of the CGI page. If I remember correctly FireFox displayed the entire markup of the page in text.</p>
<p>After quite a bit of research I found this excellent <a href="http://www.4images.com/ntperl/Perl_for_Win32_FAQ_7.html" onclick="javascript:pageTracker._trackPageview ('/outbound/www.4images.com');">Perl for Win32 FAQ</a> and learned that when you setup Perl for IIS you have two options, you can use &#8220;Perl for Win32&#8243; or you can use &#8220;PerlIS.&#8221; In my client&#8217;s case, they were running Perl for Win32 on the server with the working script and PerlIS on the server with the broken script.</p>
<p>Perl for Win32 = perl.exe<br />
PerlIS = perlis.dll</p>
<p>They are both the same version of Perl, and both come included when you download Perl for Windows. However, even though they are the same version of Perl, they are different &#8220;interpreters.&#8221;</p>
<p>Perl for Win32 and PerlIS are mostly alike, but PerlIS requires that your scripts include the HTTP response status line as well as all headers for the response. Using Perl for Win32 you only need to specify the headers.</p>
<p><a href="http://www.geocities.com/herong_yang/perl/perl_iis.html" onclick="javascript:pageTracker._trackPageview ('/outbound/www.geocities.com');">PerlIS is about two times faster than Perl for Win32</a>. However, most CGI script that you purchase, or download for free, do not specify the HTTP response status line. This is because most scripts are not written for PerlIS. (Ok, I can&#8217;t backup that claim, but that seems to be the case in my experience.)</p>
<p>If your Perl scripts are displaying the content-type at the top of the page, try configuring your IIS server to run Perl using perl.exe instead of perlis.dll.</p>
]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/why-is-content-type-texthtml-displayed-at-the-top-of-my-cgi-pages/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to delete an entire directory via SSH</title>
		<link>http://dustyreagan.com/how-to-delete-an-entire-directory-via-ssh/</link>
		<comments>http://dustyreagan.com/how-to-delete-an-entire-directory-via-ssh/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 21:30:11 +0000</pubDate>
		<dc:creator>Dusty</dc:creator>
				<category><![CDATA[IT & Administration]]></category>
		<category><![CDATA[Web & Software Development]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/how-to-delete-an-entire-directory-via-ssh/</guid>
		<description><![CDATA[I know this is probably common knowledge to Linux and Unix geeks. But every time I need to remove a directory with files in my NearlyFreeSpeech.Net SSH terminal I end up having to google for the command.  So here it is for anyone else who&#8217;s out there googling!

rm -r -f YourDirectory
rm = remove / [...]]]></description>
			<content:encoded><![CDATA[<p>I know this is probably common knowledge to Linux and Unix geeks. But every time I need to remove a directory with files in my <a href="https://www.nearlyfreespeech.net/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.nearlyfreespeech.net');">NearlyFreeSpeech.Net</a> SSH terminal I end up having to google for the command.  So here it is for anyone else who&#8217;s out there <a href="http://en.wikipedia.org/wiki/Google_(verb)" onclick="javascript:pageTracker._trackPageview ('/outbound/en.wikipedia.org');">googling</a>!</p>
<pre>
rm -r -f YourDirectory</pre>
<p>rm = remove / delete<br />
-r = recursively deletes the directory and all files in it, including subdirectories<br />
-f = will not ask for confirmation before deleting</p>
]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/how-to-delete-an-entire-directory-via-ssh/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>A Windows Genuine False Positive!</title>
		<link>http://dustyreagan.com/windows-genuine-false-positive/</link>
		<comments>http://dustyreagan.com/windows-genuine-false-positive/#comments</comments>
		<pubDate>Tue, 10 Jul 2007 05:40:00 +0000</pubDate>
		<dc:creator>Dusty</dc:creator>
				<category><![CDATA[IT & Administration]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://dev.dustyreagan.com/?p=36</guid>
		<description><![CDATA[So this evening my $300 genuine copy of Windows Vista Business decided it was no longer genuine. But my favorite part is I have lots of work due in the next few days and I&#8217;m paid by the hour. That means I am now losing money and face! So needless to say I&#8217;m a little [...]]]></description>
			<content:encoded><![CDATA[<p>So this evening my $300 genuine copy of Windows Vista Business decided it was no longer genuine. But my favorite part is I have lots of work due in the next few days and I&#8217;m paid by the hour. That means I am now losing money and face! So needless to say I&#8217;m a little upset.</p>
<p>But hey, surely Microsoft has some mechanism to get me back in the game right? Not after 6:00pm! Nope. I have to write them a pleasant email and kick back and wait for a response in the next 24 hours. Of course this should be fine. It&#8217;s not like I shelled out $300 big ones for the privilege of running Windows Vista Business. And hey, who uses Vista Business for business right? And even if it was for business purposes, who works after 6pm? Yes, a 24 hour turnaround email is the PERFECT solution. *That&#8217;s sarcasm Microsoft!*</p>
<p>I must admit, I was able to &#8220;chat&#8221; with a Microsoft rep. He was a tremendous help providing me with a link to the webpage I initiated the &#8220;chat&#8221; from, that also contained the support email address. He also ensured me Microsoft would respond to my email within the next 24 hours and he informed me that the email support is absolutely FREE! Can you believe it!? Bless my lucky stars, it&#8217;s FREE! *That&#8217;s sarcasm again Microsoft!* Free&#8230; humph. Give me a break. I should be billing Microsoft my time spent dealing with WGA.</p>
<p>If it wasn&#8217;t for Visual Studio Microsoft would have one less developer. Hell, maybe I&#8217;ll migrate over to <a href="http://www.mono-project.com/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.mono-project.com');">Mono</a> and run Linux and OSX.</p>
]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/windows-genuine-false-positive/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>I&#8217;m crushing over Drobo!</title>
		<link>http://dustyreagan.com/im-crushing-over-drobo/</link>
		<comments>http://dustyreagan.com/im-crushing-over-drobo/#comments</comments>
		<pubDate>Sat, 23 Jun 2007 01:00:00 +0000</pubDate>
		<dc:creator>Dusty</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[IT & Administration]]></category>

		<guid isPermaLink="false">http://dev.dustyreagan.com/?p=33</guid>
		<description><![CDATA[I&#8217;m in love with Data Robotics, Inc. no hassle data redundancy device, Drobo. I&#8217;ve been kicking around the idea of building my own RAID 5 network file server to store all of my music, videos, pics, and et cetera for a couple of years now. But that, of course, is no easy task, nor is [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m in love with <a href="http://www.drobo.com/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.drobo.com');">Data Robotics, Inc.</a> no hassle data redundancy device, Drobo. I&#8217;ve been kicking around the idea of building my own <a href="http://en.wikipedia.org/wiki/RAID" onclick="javascript:pageTracker._trackPageview ('/outbound/en.wikipedia.org');">RAID 5</a> network file server to store all of my music, videos, pics, and et cetera for a couple of years now. But that, of course, is no easy task, nor is it easy on the pocket book. And now here comes Drobo to my rescue!</p>
<p>You&#8217;ve got 7 minutes to spare right? Check out this YouTube video featuring Drobo.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/7sENCMKXBUc&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/7sENCMKXBUc&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p>So I&#8217;m dropping the &#8220;build my own RAID 5 network server&#8221; idea. Now I want to get a Drobo and new <a href="http://www.linksys.com/servlet/Satellite?c=L_Product_C2&amp;childpagename=US%2FLayout&amp;cid=1162354643512&amp;pagename=Linksys%2FCommon%2FVisitorWrapper&amp;lid=4351276789B06" onclick="javascript:pageTracker._trackPageview ('/outbound/www.linksys.com');">wireless Linksys router with USB storage support</a>. Although, I&#8217;ve heard a rumor that Data Robotics, Inc. is planning on coming out with a new Drobo with built in network support later this fall or early next year. I&#8217;m not sure I can wait that long. This thing is just too cool.Oh, I heard about the Drobo and this YouTube video on <a href="http://www.twit.tv/TWiT" onclick="javascript:pageTracker._trackPageview ('/outbound/www.twit.tv');">TWiT</a>. Great Podcast.</p>
]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/im-crushing-over-drobo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My new MacBook OR How to manually eject a CD from your MacBook Pro</title>
		<link>http://dustyreagan.com/my-new-macbook-or-how-to-manually-eject/</link>
		<comments>http://dustyreagan.com/my-new-macbook-or-how-to-manually-eject/#comments</comments>
		<pubDate>Fri, 16 Mar 2007 23:16:00 +0000</pubDate>
		<dc:creator>Dusty</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[IT & Administration]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[MacBook Pro]]></category>

		<guid isPermaLink="false">http://dev.dustyreagan.com/?p=30</guid>
		<description><![CDATA[I just bought my first Mac. It&#8217;s a 2.33 Ghz Intel Core 2 Duo MacBook Pro 15inch model. It has taken me a little bit of time to get use to, but I’m starting to get the hang of it after I plugged in my favorite 2 button cordless mouse. Let me tell you, coming [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">I just bought my first Mac. It&#8217;s a 2.33 Ghz Intel Core 2 Duo MacBook Pro 15inch model. It has taken me a little bit of time to get use to, but I’m starting to get the hang of it after I plugged in my favorite 2 button cordless mouse. Let me tell you, coming from a Windows background, right-click makes all the difference in the world.</p>
<p>Anyways. I&#8217;m working on setting up Windows XP using Boot Camp. Then I plan to use Parallels to quickly switch between OSX and my Boot Camp partition of Windows XP. By using a Boot Camp partition instead of a pure Parallels virtual machine, I can boot directly into Windows if I need more resources for playing games or whatnot.</p>
<p>To do all of this I had to <a href="http://www.winsupersite.com/showcase/windowsxp_sp2_slipstream.asp" onclick="javascript:pageTracker._trackPageview ('/outbound/www.winsupersite.com');">slipstream my old copy of Windows XP with Service Pack 2</a><strong>.</strong> This requires creating a bootable CD. I thought I did everything correctly, but when Boot Camp Assistant restarted my Mac to install Windows, my Mac hung on boot-up. Turns out my CD burning software didn&#8217;t have all the features I needed. So now my Mac is stuck trying to load a boot CD that is incapable of booting. How the hell do I get the CD out to get back into OSX!? There is no manual mechanism to eject a CD on the MacBook Pro.</p>
<p><strong>The Payoff</strong><br />
Do a hard restart. Then click and hold down the mouse button while the system boots up. Continue to hold down the mouse button until the CD ejects.</p>
<p class="MsoNormal">Totally intuitive. Not sure why I didn’t immediately think of that. <img src='http://dustyreagan.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> <o></o></p>
]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/my-new-macbook-or-how-to-manually-eject/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>OvertWhoIs.com &#8211; Domain name research minus the spying part!</title>
		<link>http://dustyreagan.com/overtwhoiscom-domain-name-research/</link>
		<comments>http://dustyreagan.com/overtwhoiscom-domain-name-research/#comments</comments>
		<pubDate>Tue, 27 Feb 2007 15:08:00 +0000</pubDate>
		<dc:creator>Dusty</dc:creator>
				<category><![CDATA[IT & Administration]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Whois]]></category>

		<guid isPermaLink="false">http://dev.dustyreagan.com/?p=27</guid>
		<description><![CDATA[In the past I have been worried about checking the availability of some of the domain names I have thought of. Can I actually trust the registrar to not purchase the domain name I&#8217;m checking on if I don&#8217;t buy it immediately? Apparently this topic is more popular than I once thought. I found this [...]]]></description>
			<content:encoded><![CDATA[<p>In the past I have been worried about checking the availability of some of the domain names I have thought of. Can I actually trust the registrar to not purchase the domain name I&#8217;m checking on if I don&#8217;t buy it immediately? Apparently this topic is more popular than I once thought. I found this blog post on Digg recently <a href="http://www.dailydomainer.com/200775-domain-tasting-monitoring-searches.html" onclick="javascript:pageTracker._trackPageview ('/outbound/www.dailydomainer.com');">Who Is Monitoring Your Domain Searches?</a></p>
<p>In an attempt to fix this problem I set out to make a domain research tool that people can trust. My solution? Use an open source whois script and give the web users directory browsing rights to the site. This way the users can verify that their searches are not being monitored by looking through the source code.</p>
<p>Check it out here at <a href="http://www.overtwhois.com/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.overtwhois.com');">http://www.overtwhois.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/overtwhoiscom-domain-name-research/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Need to keep your computer up and running 24/7? Then don&#8217;t patch Windows.</title>
		<link>http://dustyreagan.com/need-to-keep-your-computer-up-and/</link>
		<comments>http://dustyreagan.com/need-to-keep-your-computer-up-and/#comments</comments>
		<pubDate>Thu, 20 Apr 2006 03:05:00 +0000</pubDate>
		<dc:creator>Dusty</dc:creator>
				<category><![CDATA[IT & Administration]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://dev.dustyreagan.com/?p=13</guid>
		<description><![CDATA[I can&#8217;t believe this recent Windows patch fiasco. I recently scored a side-gig at a local business with about 30 computers and no internal IT person. My task is simple, tune the desktops and fix all the problems that come with aging computers.
Well this recent round of Windows automatic updates managed to hose at least [...]]]></description>
			<content:encoded><![CDATA[<p>I can&#8217;t believe this recent Windows patch fiasco. I recently scored a side-gig at a local business with about 30 computers and no internal IT person. My task is simple, tune the desktops and fix all the problems that come with aging computers.</p>
<p>Well this recent round of Windows automatic updates managed to hose at least 4 of my computers! These machines are running Windows 2000 Professional with PCAnywhere installed. Apparently this last round of patches triggered something that caused PCAnywhere to interfere with Windows control of the display drivers. When you click the &#8220;Settings&#8221; tab in the &#8220;Display Properties&#8221; dialog box you get a &#8220;Stop&#8221; error in the VGA.dll. I managed to find a solution to the problem <a href="http://support.microsoft.com/?kbid=290114&amp;sd=RMVP" onclick="javascript:pageTracker._trackPageview ('/outbound/support.microsoft.com');">here</a>. This support article was written in 2003. It&#8217;s very strange that these computers have been running just fine with PCAnywhere and suddenly, after this recent patch, they succumb to an issue discovered circa 2003.</p>
<p>This is totally unacceptable. My reputation with this company is being threatened due to Microsoft&#8217;s flub. And I have found myself in a position where I have to defend Microsoft and my decision to keep these machines up-to-date and patched. I&#8217;m tempted to setup Window Patch Manager and wait to install patches a few weeks after they&#8217;re released. I know there are probably many other professionals with the same thought.</p>
]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/need-to-keep-your-computer-up-and/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
