<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>MOJOTECHBLOG</title>
	<atom:link href="http://mojotechblog.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mojotechblog.wordpress.com</link>
	<description>my technology adventures blog</description>
	<lastBuildDate>Wed, 04 Jan 2012 22:43:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mojotechblog.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>MOJOTECHBLOG</title>
		<link>http://mojotechblog.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mojotechblog.wordpress.com/osd.xml" title="MOJOTECHBLOG" />
	<atom:link rel='hub' href='http://mojotechblog.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Ubuntu 11.10 LTSP</title>
		<link>http://mojotechblog.wordpress.com/2011/12/01/ubuntu-11-10-ltsp/</link>
		<comments>http://mojotechblog.wordpress.com/2011/12/01/ubuntu-11-10-ltsp/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 18:05:44 +0000</pubDate>
		<dc:creator>mojotechblog</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mojotechblog.wordpress.com/?p=227</guid>
		<description><![CDATA[For funsies I wanted to find out how to set up an Ubuntu 11.10 LTSP. The instructions below are what I put together after searching websites, emailing for answers, reading forum posts and trial and error. This works for me on a fresh install of Ubuntu and I hope it works for you if you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mojotechblog.wordpress.com&amp;blog=2874276&amp;post=227&amp;subd=mojotechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For funsies I wanted to find out how to set up an Ubuntu 11.10 LTSP. The instructions below are what I put together after searching websites, emailing for answers, reading forum posts and trial and error. This works for me on a fresh install of Ubuntu and I hope it works for you if you give it a try.</p>
<p>Please note the following items:</p>
<p>I wanted the thin clients to have Unity 2D, so that is why the lts.conf/LDM instructions are in there. My second network card for the internal LTSP network is eth1 &#8211; yours might be different, so change the related entries in /etc/default/isc-dhcp-server and /etc/network/interfaces if needed.</p>
<p>I used 192.168.22.X for my internal LTSP network, but you can have something else entirely like 10.10.22.X for example. If you decide to go with something different please remember to update the /etc/network/interfaces address and /etc/ltsp/dhcpd.conf accordingly.</p>
<p><span style="text-decoration:underline;">INSTALL LTSP IN UBUNTU</span></p>
<p>Open terminal window<br />
- sudo bash &amp; enter password<br />
- apt-get update &amp;&amp; apt-get upgrade -y<br />
- apt-get install ltsp-server-standalone openssh-server<br />
- gedit /etc/default/isc-dhcp-server<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; add eth1 as follows:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; INTERFACES=&#8221;eth1&#8243;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; save and exit<br />
- gedit /etc/network/interfaces<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; add the following under the existing auto lo entry<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; auto eth1<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; iface eth1 inet static<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; address 192.168.22.1<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; netmask 255.255.255.0<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; save and exit<br />
- ifup eth1<br />
- gedit /etc/ltsp/dhcpd.conf<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; change all 192.168.0.X to 192.168.22.X<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I use gedit’s replace function: 168.0 &gt; 168.22<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; save and exit<br />
- /etc/init.d/isc-dhcp-server restart<br />
- ltsp-update-sshkeys<br />
- ltsp-build-client –-arch i386<br />
- /etc/init.d/nbd-server restart<br />
- /etc/init.d/isc-dhcp-server status<br />
- gedit /var/lib/tftpboot/ltsp/i386/lts.conf<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; add the following:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [default]<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LDM_DIRECTX=True<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LDM_SESSION=&#8221;gnome-session &#8211;session=ubuntu-2d&#8221;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; save and exit<br />
- Reboot system for good measure</p>
<p>Click user icon/name top right of ubuntu desktop<br />
- click user accounts<br />
- click unlock (top right of window)<br />
- enter password and authenticate<br />
- click + sign (bottom left) to add new user account<br />
- account type = standard<br />
- full name = tc1 (for thinclient1 &#8211; use whatever you want)<br />
- click create<br />
- click account disabled to right of password<br />
- add password and retype to confirm<br />
- click lock (top right of window)</p>
<p>Hook up thin clients, select network boot, and login</p>
<p>If you can&#8217;t login because client says &#8216;response from server, restarting&#8230;&#8217; try the following:</p>
<p>Open terminal window<br />
- sudo bash &amp; enter password<br />
- ltsp-update-sshkeys<br />
- sudo ltsp-update-image<br />
- /etc/init.d/nbd-server restart<br />
- reboot clients and try to log in</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mojotechblog.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mojotechblog.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mojotechblog.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mojotechblog.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mojotechblog.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mojotechblog.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mojotechblog.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mojotechblog.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mojotechblog.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mojotechblog.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mojotechblog.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mojotechblog.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mojotechblog.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mojotechblog.wordpress.com/227/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mojotechblog.wordpress.com&amp;blog=2874276&amp;post=227&amp;subd=mojotechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mojotechblog.wordpress.com/2011/12/01/ubuntu-11-10-ltsp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc00034c8dd63d8e83b39a667a480e25?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mojotechblog</media:title>
		</media:content>
	</item>
		<item>
		<title>Chrome &#8211; iTunes Launching Issue</title>
		<link>http://mojotechblog.wordpress.com/2011/04/13/chrome-itunes-launching-issue/</link>
		<comments>http://mojotechblog.wordpress.com/2011/04/13/chrome-itunes-launching-issue/#comments</comments>
		<pubDate>Wed, 13 Apr 2011 15:51:38 +0000</pubDate>
		<dc:creator>mojotechblog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mojotechblog.wordpress.com/?p=219</guid>
		<description><![CDATA[I recently ran into the problem that many people have faced&#8230; When I clicked on a &#8216;View In iTunes&#8217; button I checked the box that stated: Remember my choice for all links of this type. I then clicked the &#8216;Do Nothing&#8217; button and BAM &#8211; I could no longer open iTunes through a link in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mojotechblog.wordpress.com&amp;blog=2874276&amp;post=219&amp;subd=mojotechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently ran into the problem that many people have faced&#8230; When I clicked on a &#8216;View In iTunes&#8217; button I checked the box that stated: Remember my choice for all links of this type. I then clicked the &#8216;Do Nothing&#8217; button and BAM &#8211; I could no longer open iTunes through a link in Chrome. I Googled how to correct it, and saw that an extension was created to address and fix the issue, but I still had the problem after installing it. I then found the following instructions:</p>
<p>1) Close Chrome</p>
<p>2) Open \User Name\Library\Application Support\Google\Chrome\Local State in a text editor</p>
<p>3) Look for the line &#8220;itms&#8221;: true,</p>
<p>4) Delete this line and Chrome will prompt you (via the External Protocol Request box) to open iTunes links again</p>
<p>-OR-</p>
<p>5) Change the true to false and iTunes links will open without prompting</p>
<p>**Disclaimer** Remember to save the Local State file after making the change in steps 4 or 5. Don&#8217;t do a save-as or it could change the file type and screw things up.</p>
<p>Since I was using the portable apps version of Chrome the path in step number 2 was \Chrome\Data\profile\Local State. I made the mistake of completely skipping step 1 and tried to edit the file when Chrome was open. I couldn&#8217;t initially understand why the process wasn&#8217;t working after shutting the browser down and starting it back up. The file kept reverting back to its original state. Duh &#8211; everything worked fine once I closed Chrome, made the change, and launched the browser again.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mojotechblog.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mojotechblog.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mojotechblog.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mojotechblog.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mojotechblog.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mojotechblog.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mojotechblog.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mojotechblog.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mojotechblog.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mojotechblog.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mojotechblog.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mojotechblog.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mojotechblog.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mojotechblog.wordpress.com/219/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mojotechblog.wordpress.com&amp;blog=2874276&amp;post=219&amp;subd=mojotechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mojotechblog.wordpress.com/2011/04/13/chrome-itunes-launching-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc00034c8dd63d8e83b39a667a480e25?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mojotechblog</media:title>
		</media:content>
	</item>
		<item>
		<title>MP5 Video Player</title>
		<link>http://mojotechblog.wordpress.com/2009/03/19/mp5-video-player/</link>
		<comments>http://mojotechblog.wordpress.com/2009/03/19/mp5-video-player/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 16:12:39 +0000</pubDate>
		<dc:creator>mojotechblog</dc:creator>
				<category><![CDATA[Electronics]]></category>

		<guid isPermaLink="false">http://mojotechblog.wordpress.com/2009/03/19/mp5-video-player/</guid>
		<description><![CDATA[Due to a limited budget, I have to look for good tech deals on the cheap. I would love to get an iPod Touch, but they are up there in price and I can’t justify spending that much. Therefore, I purchased an MP5 video player off eBay with some extra holiday money. It came from [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mojotechblog.wordpress.com&amp;blog=2874276&amp;post=208&amp;subd=mojotechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Due to a limited budget, I have to look for good tech deals on the cheap. I would love to get an iPod Touch, but they are up there in price and I can’t justify spending that much. Therefore, I purchased an MP5 video player off eBay with some extra holiday money. It came from Hong Kong and was supposed to be able to play a variety of different ‘web’ formats. For under $40 I decided I didn’t have much to lose.</p>
<p><img class="alignnone size-medium wp-image-207" title="MP5 Player" src="http://mojotechblog.files.wordpress.com/2009/03/mp5.jpg?w=300&#038;h=193" alt="MP5 Player" width="300" height="193" /></p>
<p>The first unit I received was defective and couldn’t really play anything. The replacement player they sent is awesome. It is an 8GB unit (expandable to 12GB with SD card), can display 260K of color, has a screen resolution of 400&#215;240 at 3”, and fits perfectly in my palm. While it does play a variety of video formats, you have to be very careful of what codecs the video uses as well as the bitrate.</p>
<p>I became educated very quickly on how these two items work together. Just to make things simple, I now run all my video through the <a href="http://mympxplayer.org/free-open-source-converter-for-rockchip-mpeg4-xvid-players-vt7071.html" target="_blank">viDrop</a> (wickly awesome and free) conversion program and use a modified ‘Generic Rockchip 400&#215;240 High’ preset configuration. It re-encodes the video at the proper resolution using the XVID codec, mirrors the video’s original FPS, and uses a bitrate of 600.</p>
<p>A good thing to remember when re-encoding for this player &#8211; always try to use original video with a higher resolution and higher bitrate than what your end product will have (it will look way better after conversion than going the other direction).</p>
<p>So far the video has ranged from very good to stunning. While I mostly use my player to watch <a href="http://revision3.com/" target="_blank">Revision3</a> shows when I take walks at work, it also plays MP3 files, can display text, has a voice recorder, has a radio tuner, and can be used as a picture viewer.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mojotechblog.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mojotechblog.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mojotechblog.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mojotechblog.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mojotechblog.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mojotechblog.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mojotechblog.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mojotechblog.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mojotechblog.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mojotechblog.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mojotechblog.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mojotechblog.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mojotechblog.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mojotechblog.wordpress.com/208/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mojotechblog.wordpress.com&amp;blog=2874276&amp;post=208&amp;subd=mojotechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mojotechblog.wordpress.com/2009/03/19/mp5-video-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc00034c8dd63d8e83b39a667a480e25?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mojotechblog</media:title>
		</media:content>

		<media:content url="http://mojotechblog.files.wordpress.com/2009/03/mp5.jpg?w=300" medium="image">
			<media:title type="html">MP5 Player</media:title>
		</media:content>
	</item>
		<item>
		<title>Home Webserver Guide</title>
		<link>http://mojotechblog.wordpress.com/2009/02/27/home-webserver-guide/</link>
		<comments>http://mojotechblog.wordpress.com/2009/02/27/home-webserver-guide/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 17:28:03 +0000</pubDate>
		<dc:creator>mojotechblog</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://mojotechblog.wordpress.com/?p=202</guid>
		<description><![CDATA[I recently set up my home server again. I haven’t had it fully functional in quite some time as I’ve playing around with different software packages. This time around I decided to use The Uniform Server as my core and I have been very impressed. I collected a good list of links to the articles [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mojotechblog.wordpress.com&amp;blog=2874276&amp;post=202&amp;subd=mojotechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">I recently set up my home server again. I haven’t had it fully functional in quite some time as I’ve playing around with different software packages. This time around I decided to use The Uniform Server as my core and I have been very impressed. I collected a good list of links to the articles I followed to get everything running. Basically this is how it went in a step-by-step fashion:</p>
<ul>
<li>Signed up for a free DynDNS account and domain</li>
<li>Bought an easy to remember dot com domain name at GoDaddy</li>
<li>Forwarded my GoDaddy domain to my DynDNS domain</li>
<li>Got my Windows XP server machine ready for use</li>
<li>Assigned a static IP address to my XP machine on my home network</li>
<li>Forwarded the right ports on my router to my webserver</li>
<li>Opened up the right ports on my XP machine’s firewall</li>
<li>Downloaded and installed DynDNS’s dynamic IP updater client</li>
<li>Setup and secured The Uniform Server software to host my site</li>
<li>Completed database setup and WordPress install for blogging</li>
</ul>
<p class="MsoNormal">In addition to this, I wanted some advanced functionality. I set up Windows remote desktop so I can access the server from anywhere I have an internet connection. To secure this feature, I also installed OpenSSH. I didn’t realize until later that the SSH software also allowed me to run a secured FTP server for file transfers between machines. Sweet! For those interested, here are the articles I used to accomplish all this:</p>
<p class="MsoNormal"><span><a href="http://tinyurl.com/27l9t6" target="_blank">http://tinyurl.com/27l9t6</a> (Domain Name)</span></p>
<p class="MsoNormal"><span><a href="http://tinyurl.com/5mohge" target="_blank">http://tinyurl.com/5mohge</a> (Router/Firewall)</span></p>
<p class="MsoNormal"><span><a href="http://tinyurl.com/av55ub" target="_blank">http://tinyurl.com/av55ub</a> (The Uniform Server)</span></p>
<p class="MsoNormal"><span><a href="http://tinyurl.com/a9cnt" target="_blank">http://tinyurl.com/a9cnt</a> (WordPress)</span></p>
<p class="MsoNormal"><span><a href="http://tinyurl.com/6y6ym" target="_blank">http://tinyurl.com/6y6ym</a> (Remote Desktop)</span></p>
<p class="MsoNormal"><span><a href="http://tinyurl.com/d67p63" target="_blank">http://tinyurl.com/d67p63</a> (OpenSSH Setup)</span></p>
<p class="MsoNormal"><span><a href="http://tinyurl.com/bgr5f" target="_blank">http://tinyurl.com/bgr5f</a> (OpenSSH SFTP)</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mojotechblog.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mojotechblog.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mojotechblog.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mojotechblog.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mojotechblog.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mojotechblog.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mojotechblog.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mojotechblog.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mojotechblog.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mojotechblog.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mojotechblog.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mojotechblog.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mojotechblog.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mojotechblog.wordpress.com/202/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mojotechblog.wordpress.com&amp;blog=2874276&amp;post=202&amp;subd=mojotechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mojotechblog.wordpress.com/2009/02/27/home-webserver-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc00034c8dd63d8e83b39a667a480e25?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mojotechblog</media:title>
		</media:content>
	</item>
		<item>
		<title>IIS Remote Desktop Connection</title>
		<link>http://mojotechblog.wordpress.com/2009/01/07/iis-remote-desktop-connection/</link>
		<comments>http://mojotechblog.wordpress.com/2009/01/07/iis-remote-desktop-connection/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 18:56:37 +0000</pubDate>
		<dc:creator>mojotechblog</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://mojotechblog.wordpress.com/?p=200</guid>
		<description><![CDATA[My basement network wiring is now functional thanks to a bunch of DIY cabling and a small switch I bought off eBay. This let me get my home server PC up and running. I think I will host another website from it. I have always used a VNC product to connect to my webserver in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mojotechblog.wordpress.com&amp;blog=2874276&amp;post=200&amp;subd=mojotechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My basement network wiring is now functional thanks to a bunch of DIY cabling and a small switch I bought off eBay. This let me get my home server PC up and running. I think I will host another website from it. I have always used a VNC product to connect to my webserver in the past, but this time I decided to try Windows remote connection.</p>
<p>I found a great article by <a href="http://www.microsoft.com/windowsxp/using/networking/expert/northrup_03may16.mspx" target="_blank">Tony Northrup</a> on how to accomplish this task. It easily guides you through setting up the IIS components, changing the web TCP port (if you so desire), router forwarding, firewall exception reminder, and how to connect to a remote desktop. I ran right through it and had my remote connection up and running in no time. Now I can securly access my home server from anywhere the internets are.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mojotechblog.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mojotechblog.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mojotechblog.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mojotechblog.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mojotechblog.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mojotechblog.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mojotechblog.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mojotechblog.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mojotechblog.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mojotechblog.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mojotechblog.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mojotechblog.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mojotechblog.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mojotechblog.wordpress.com/200/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mojotechblog.wordpress.com&amp;blog=2874276&amp;post=200&amp;subd=mojotechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mojotechblog.wordpress.com/2009/01/07/iis-remote-desktop-connection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc00034c8dd63d8e83b39a667a480e25?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mojotechblog</media:title>
		</media:content>
	</item>
		<item>
		<title>Laptop Puppy Linux</title>
		<link>http://mojotechblog.wordpress.com/2009/01/01/laptop-puppy-linux/</link>
		<comments>http://mojotechblog.wordpress.com/2009/01/01/laptop-puppy-linux/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 20:10:57 +0000</pubDate>
		<dc:creator>mojotechblog</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://mojotechblog.wordpress.com/?p=197</guid>
		<description><![CDATA[I have an old laptop that is used for couch surfing and Facebook updating. It can run Windows XP (very slowly) and Xubuntu is just a bit smoother. These both take forever to boot up though as they easily max out the laptop&#8217;s components. I have been searching here and there for a lightweight linux [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mojotechblog.wordpress.com&amp;blog=2874276&amp;post=197&amp;subd=mojotechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have an old laptop that is used for couch surfing and Facebook updating. It can run Windows XP (very slowly) and Xubuntu is just a bit smoother. These both take forever to boot up though as they easily max out the laptop&#8217;s components.</p>
<p>I have been searching here and there for a lightweight linux distro that would recognize my wireless card and respond promptly with the hardware I have. After a few failed attempts with other distros, I reluctantly downloaded the latest (4.1.2) <a title="Puppy Linux Link" href="http://www.puppylinux.com/" target="_blank">Puppy Linux</a> release and was pleasantly surprised.</p>
<p>The live CD booted up quickly (after a few general system questions) and blew me away when I easily configured my wireless card to hook up to my network. The card&#8217;s lights did not turn on, but the connection worked none-the-less. This was a first for me.</p>
<p>I was so impressed that I decided to install Puppy on my HD and boot time took approximately 1 minute &#8211; power button to desktop &#8211; very nice! Opening programs is very snappy and I couldn&#8217;t be happier. Thank you Puppy Linux! I can&#8217;t wait to hop on and cruise Digg stories and chat with my peeps in Facebook!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mojotechblog.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mojotechblog.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mojotechblog.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mojotechblog.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mojotechblog.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mojotechblog.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mojotechblog.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mojotechblog.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mojotechblog.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mojotechblog.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mojotechblog.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mojotechblog.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mojotechblog.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mojotechblog.wordpress.com/197/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mojotechblog.wordpress.com&amp;blog=2874276&amp;post=197&amp;subd=mojotechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mojotechblog.wordpress.com/2009/01/01/laptop-puppy-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc00034c8dd63d8e83b39a667a480e25?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mojotechblog</media:title>
		</media:content>
	</item>
		<item>
		<title>Motherboard Shocker</title>
		<link>http://mojotechblog.wordpress.com/2008/12/17/motherboard-shocker/</link>
		<comments>http://mojotechblog.wordpress.com/2008/12/17/motherboard-shocker/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 19:18:54 +0000</pubDate>
		<dc:creator>mojotechblog</dc:creator>
				<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://mojotechblog.wordpress.com/?p=195</guid>
		<description><![CDATA[At the end of summer my house got a nice jolt of electricity from some nearby lightning. The surge made its way to my Foxconn P35A motherboard and it started to fail. It would shut down at odd times (not a heat issue) and was hard to bring back to life. It finally died a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mojotechblog.wordpress.com&amp;blog=2874276&amp;post=195&amp;subd=mojotechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>At the end of summer my house got a nice jolt of electricity from some nearby lightning. The surge made its way to my Foxconn P35A motherboard and it started to fail. It would shut down at odd times (not a heat issue) and was hard to bring back to life. It finally died a short time ago and I found another Foxconn mobo that fit my needs &#8211; the 45GMX.</p>
<p>During the process of problem solving the failing motherboard issue, I acquired a dual core E2200 processor. I decided to stick that in the new motherboard and completed the surgery last night. Everything went great and when I powered the system up, all I had to do was put the driver CD in the tray and everything loaded back up as normal. Thank the stars I didn&#8217;t have to do an OS reinstall!</p>
<p>I read the 45GMX has some good overclocking potential. With the great luck I had with the P35A  in this area, I can&#8217;t wait to start tinkering with the BIOS.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mojotechblog.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mojotechblog.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mojotechblog.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mojotechblog.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mojotechblog.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mojotechblog.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mojotechblog.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mojotechblog.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mojotechblog.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mojotechblog.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mojotechblog.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mojotechblog.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mojotechblog.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mojotechblog.wordpress.com/195/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mojotechblog.wordpress.com&amp;blog=2874276&amp;post=195&amp;subd=mojotechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mojotechblog.wordpress.com/2008/12/17/motherboard-shocker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc00034c8dd63d8e83b39a667a480e25?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mojotechblog</media:title>
		</media:content>
	</item>
		<item>
		<title>Fluxbox Screen Resolution</title>
		<link>http://mojotechblog.wordpress.com/2008/10/23/fluxbox-screen-resolution/</link>
		<comments>http://mojotechblog.wordpress.com/2008/10/23/fluxbox-screen-resolution/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 19:02:56 +0000</pubDate>
		<dc:creator>mojotechblog</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mojotechblog.wordpress.com/?p=192</guid>
		<description><![CDATA[Now that I have my Fluxbox setup established, I turned my attention to the screen resolution because VirtualBox had it set to low (and didn&#8217;t offer any options to increase it). I wanted it the same size as my Windows XP  screen so I could switch between the large desktops and have it fill all [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mojotechblog.wordpress.com&amp;blog=2874276&amp;post=192&amp;subd=mojotechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Now that I have my Fluxbox setup established, I turned my attention to the screen resolution because VirtualBox had it set to low (and didn&#8217;t offer any options to increase it). I wanted it the same size as my Windows XP  screen so I could switch between the large desktops and have it fill all of my monitor&#8217;s real estate. I know there is a way to modify the xorg.conf file, but I was hoping for something simpler. I found an Ubuntu forum post about using the following method:</p>
<p>/usr/share/applications/ Screen &amp; Graphics (icon)</p>
<p>After you use your file manager to navigate to the applications folder, you click on the Screen &amp; Graphics icon to bring up a  simple GUI. I manually chose a generic LCD that displayed at 1024&#215;768. After I made my selection the system told me I had to reboot or something. I did that and was greeted by my new (larger) screen resolution after I logged in. Sweet!</p>
<p class="MsoPlainText">
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mojotechblog.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mojotechblog.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mojotechblog.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mojotechblog.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mojotechblog.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mojotechblog.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mojotechblog.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mojotechblog.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mojotechblog.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mojotechblog.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mojotechblog.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mojotechblog.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mojotechblog.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mojotechblog.wordpress.com/192/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mojotechblog.wordpress.com&amp;blog=2874276&amp;post=192&amp;subd=mojotechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mojotechblog.wordpress.com/2008/10/23/fluxbox-screen-resolution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc00034c8dd63d8e83b39a667a480e25?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mojotechblog</media:title>
		</media:content>
	</item>
		<item>
		<title>VirtualBox Guest Additions &#8211; Build Essentials</title>
		<link>http://mojotechblog.wordpress.com/2008/10/23/virtualbox-guest-additions-build-essentials/</link>
		<comments>http://mojotechblog.wordpress.com/2008/10/23/virtualbox-guest-additions-build-essentials/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 17:39:44 +0000</pubDate>
		<dc:creator>mojotechblog</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mojotechblog.wordpress.com/?p=190</guid>
		<description><![CDATA[I have been playing with VirtualBox and setting up a minimalist Ubuntu install with the Fluxbox window manager. I did a basic command line install off a live CD, so I ended up with a very small hard drive system foot print &#8211; perfect for adding whatever programs I wanted. I also wanted to install [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mojotechblog.wordpress.com&amp;blog=2874276&amp;post=190&amp;subd=mojotechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have been playing with VirtualBox and setting up a minimalist Ubuntu install with the Fluxbox window manager. I did a basic command line install off a live CD, so I ended up with a very small hard drive system foot print &#8211; perfect for adding whatever programs I wanted.</p>
<p>I also wanted to install the VirtualBox Guest Additions module to get the cool benefits of the seamless interface and mouse integration. When I tried to do this, I received some error message that the system needed the build and header files for my kernel. I first had to find out what kernel I was running and then I had to get the files. This is how I did it&#8230;</p>
<p>In a terminal, I ran the following command which told me I was running kernal 2.6.24-19-generic:</p>
<p>uname -r</p>
<p>I then ran the following command to install the needed files:</p>
<p>sudo aptitude install build-essential kernel-header-2.6.24-19-generic</p>
<p>After the data was downloaded and installed, I tried the Guest Additions again and everything went as smooth as butter. Now I can pop in to and out of my Ubuntu guest with ease.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mojotechblog.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mojotechblog.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mojotechblog.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mojotechblog.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mojotechblog.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mojotechblog.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mojotechblog.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mojotechblog.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mojotechblog.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mojotechblog.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mojotechblog.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mojotechblog.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mojotechblog.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mojotechblog.wordpress.com/190/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mojotechblog.wordpress.com&amp;blog=2874276&amp;post=190&amp;subd=mojotechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mojotechblog.wordpress.com/2008/10/23/virtualbox-guest-additions-build-essentials/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc00034c8dd63d8e83b39a667a480e25?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mojotechblog</media:title>
		</media:content>
	</item>
		<item>
		<title>Fluxbox Wallpaper Flicker</title>
		<link>http://mojotechblog.wordpress.com/2008/10/23/fluxbox-wallpaper-flicker/</link>
		<comments>http://mojotechblog.wordpress.com/2008/10/23/fluxbox-wallpaper-flicker/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 16:17:33 +0000</pubDate>
		<dc:creator>mojotechblog</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mojotechblog.wordpress.com/?p=186</guid>
		<description><![CDATA[This is a reminder to myself&#8230; when setting the wallpaper on a Fluxbox managed Ubuntu system, I need to comment out (#) any line that sets the background to a solid color after my wallpaper line. I kept getting a wallpaper flicker (to black screen) at boot time after I added my image location line [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mojotechblog.wordpress.com&amp;blog=2874276&amp;post=186&amp;subd=mojotechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is a reminder to myself&#8230; when setting the wallpaper on a Fluxbox managed Ubuntu system, I need to comment out (#) any line that sets the background to a solid color after my wallpaper line. I kept getting a wallpaper flicker (to black screen) at boot time after I added my image location line to the startup file (/home/ubuntu/.fluxbox/startup) like so:</p>
<p>fbsetbg -f /home/ubuntu/.fluxbox/backgrounds/debian1600.png</p>
<p>After examining my startup file again, I noticed that there was another command a few lines down from my wallpaper location that set the background color to black like so:</p>
<p>/usr/bin/fbsetroot -solid black</p>
<p>This black background line might have been inserted automagically when I tried to load the wallpaper without the proper program to do so. After the system alerted me to this error, I installed the Eterm package that was required and went about adjusting the startup file without really looking at it. It is now fixed and I have purdy wallpaper!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mojotechblog.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mojotechblog.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mojotechblog.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mojotechblog.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mojotechblog.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mojotechblog.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mojotechblog.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mojotechblog.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mojotechblog.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mojotechblog.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mojotechblog.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mojotechblog.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mojotechblog.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mojotechblog.wordpress.com/186/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mojotechblog.wordpress.com&amp;blog=2874276&amp;post=186&amp;subd=mojotechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mojotechblog.wordpress.com/2008/10/23/fluxbox-wallpaper-flicker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc00034c8dd63d8e83b39a667a480e25?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mojotechblog</media:title>
		</media:content>
	</item>
	</channel>
</rss>
