<?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>BassKozz</title>
	<atom:link href="http://basskozz.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://basskozz.wordpress.com</link>
	<description>My Computer Problems and Solutions (sometimes)</description>
	<lastBuildDate>Sat, 07 Jan 2012 23:16:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='basskozz.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>BassKozz</title>
		<link>http://basskozz.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://basskozz.wordpress.com/osd.xml" title="BassKozz" />
	<atom:link rel='hub' href='http://basskozz.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Advanced Shutdown Script &#8211; Part 2 (check for running services)</title>
		<link>http://basskozz.wordpress.com/2009/02/04/advanced-shutdown-script-part-2-check-for-running-services/</link>
		<comments>http://basskozz.wordpress.com/2009/02/04/advanced-shutdown-script-part-2-check-for-running-services/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 16:29:43 +0000</pubDate>
		<dc:creator>basskozz</dc:creator>
				<category><![CDATA[NAS]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[crontab]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Power Saving]]></category>

		<guid isPermaLink="false">http://basskozz.wordpress.com/2009/02/04/advanced-shutdown-script-part-2-check-for-services/</guid>
		<description><![CDATA[I&#8217;ve updated my &#8220;Advanced Shutdown Script&#8221; to now check for running services/processes before shutting down, this way the script will check and see if I a set of services are running or not, and if so exit.&#160; The reason why I wanted to have this feature is because my NAS box runs backups and I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basskozz.wordpress.com&amp;blog=389632&amp;post=37&amp;subd=basskozz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve updated my &#8220;<a href="http://basskozz.wordpress.com/2009/02/03/advanced-shutdown-script-powersaving/">Advanced Shutdown Script</a>&#8221; to now check for running services/processes before shutting down, this way the script will check and see if I a set of services are running or not, and if so exit.&nbsp; The reason why I wanted to have this feature is because my NAS box runs backups and I wouldn&#8217;t want it to shutdown while running a backup. Thanks to this page: <a href="http://www.anyexample.com/linux_bsd/bash/check_if_program_is_running_with_bash_shell_script.xml">Check if program is running with bash shell script</a><br />It wasn&#8217;t hard to implement&#8230;<br />So here it is:<br />
<blockquote><font color="#ff0000"><font face="Courier New">#!/bin/sh<br />###<br /># 2/4/09<br /># adv-shutdown.sh<br /># Advanced Shutdown Script<br /># Ref &#8211; http://basskozz.wordpress.com/2009/02/04/advanced-shutdown-script-part-2-check-for-services/<br />###</p>
<p>SERVICE_LIST=&#8217;mysecurebackup&#8217;<br />IP_LIST=&#8217;</font></font><font color="#ff0000" face="Courier New">192.168.1.101 192.168.1.102 192.168.1.103 192.168.1.104</font><font color="#ff0000"><font face="Courier New">&#8216;</p>
<p>for SERVICE&nbsp; in $SERVICE_LIST; do<br />&nbsp;&nbsp; if ps ax | grep -v grep | grep $SERVICE &gt; /dev/null<br />&nbsp;&nbsp; then<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; echo &#8220;$SERVICE service is running: $(date)&#8221; &gt;&gt; /home/user/scripts/adv-shutdown.log<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; exit<br />&nbsp;&nbsp; else<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; echo &#8220;$SERVICE is NOT running: $(date)&#8221; &gt;&gt; /home/user/scripts/adv-shutdown.log<br />&nbsp;&nbsp; fi<br />done</p>
<p>ALIVE=0<br />for IP&nbsp; in $IP_LIST; do<br />&nbsp;&nbsp; ping -q -c1 -w5 $IP<br />&nbsp;&nbsp; if [ $? -eq 0 ]; then<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ALIVE=1<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; echo &#8220;$IP is alive: $(date)&#8221; &gt;&gt; /home/user/scripts/adv-shutdown.log<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; break<br />&nbsp;&nbsp; fi<br />done</p>
<p>if [ $ALIVE -eq 0 ]; then<br />&nbsp;&nbsp; echo &#8220;***ShutDown***&nbsp; $(date)&#8221; &gt;&gt; /home/user/scripts/adv-shutdown.log<br />&nbsp;&nbsp; echo &#8220;###########################&#8221; &gt;&gt; /home/user/scripts/adv-shutdown.log<br />&nbsp;&nbsp; /sbin/shutdown -h now<br />fi<br /></font></font></p></blockquote>
<p>see also: <a href="http://pastebin.com/f4e400c22">http://pastebin.com/f4e400c22</a></p>
<p>You can put any number of services in the &#8220;SERVICE_LIST&#8221; variable separated by a space and it will check if any of them are running. i.e.:<br />
<blockquote><font color="#ff0000"><font face="Courier New">SERVICE_LIST=&#8217;program1 program2 program3&#8242;</font></font></p></blockquote>
<p>My backup program is called &#8220;mysecurebackup&#8221; so I only have that one in there right now.<br />Now I don&#8217;t need two separate lines in my &#8216;sudo crontab&#8217; because the script will check and see if a backup is running, so my sudo crontab looks like this now:<br />
<blockquote><font color="#ff0000" face="Courier New"># Run Advanced Shutdown script every 10minutes between 1-5:50am everyday</font><br /><font color="#ff0000" face="Courier New">0,10,20,30,40,50 01-05 * * * /home/user/scripts/adv-shutdown.sh</font></p></blockquote>
<p>Now to get back to work on a WOL script to power my NAS box up in the morning, stay tuned&#8230;</p>
<p></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/basskozz.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/basskozz.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/basskozz.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/basskozz.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/basskozz.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/basskozz.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/basskozz.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/basskozz.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/basskozz.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/basskozz.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/basskozz.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/basskozz.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/basskozz.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/basskozz.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basskozz.wordpress.com&amp;blog=389632&amp;post=37&amp;subd=basskozz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://basskozz.wordpress.com/2009/02/04/advanced-shutdown-script-part-2-check-for-running-services/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/782d6170767beea468383e84c7e24c1a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">basskozz</media:title>
		</media:content>
	</item>
		<item>
		<title>Advanced Shutdown Script &#8211; Powersaving</title>
		<link>http://basskozz.wordpress.com/2009/02/03/advanced-shutdown-script-powersaving/</link>
		<comments>http://basskozz.wordpress.com/2009/02/03/advanced-shutdown-script-powersaving/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 20:04:53 +0000</pubDate>
		<dc:creator>basskozz</dc:creator>
				<category><![CDATA[NAS]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[crontab]]></category>
		<category><![CDATA[halt]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Power Saving]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[shutdown]]></category>

		<guid isPermaLink="false">http://basskozz.wordpress.com/2009/02/03/advanced-shutdown-script-powersaving/</guid>
		<description><![CDATA[My NAS box is a power-hungry beast (Ubuntu 8.10 &#8211; p4 3ghz 4GB ram, 3x250gb RAID5, 200gb OS), and while I know I could go out and buy a readymade NAS, what would be the fun in that?, and I could also build a VIA or ATOM based system to do simple NAS tasks and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basskozz.wordpress.com&amp;blog=389632&amp;post=30&amp;subd=basskozz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My NAS box is a power-hungry beast (Ubuntu 8.10 &#8211; p4 3ghz 4GB ram, 3x250gb RAID5, 200gb OS), and while I know I could go out and buy a readymade NAS, what would be the fun in that?, and I could also build a VIA or ATOM based system to do simple NAS tasks and replace the power-hungry p4, that would cost money, and I am trying to pinch-a-penny in these economic times&#8230;</p>
<p>So I usually leave the NAS box on 24/7 but I am starting to feel bad about that, and my electricity bill is making me feel it<br />But I need to leave the NAS on at night because it is my media server for my TV&#8217;s (XBMC)&#8230;<br />So I created 2 crontab lines:<br />
<blockquote><font color="#ff0000"><font face="Courier New"># Weekdays<br />30 02 * * 1-5 /sbin/shutdown -h now<br /># Weekends<br />30 04 * * 6-7 /sbin/shutdown -h now</font></font></p></blockquote>
<p>This is great, I just turn the NAS on in the morning when I need it&#8230; but this isn&#8217;t the optimal setting because I usually go to sleep well before 2:30am on weeknights and before 4:30am on weekends, however there are a few nights that I stay up past my bedtime <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' />   So I wanted to account for that in crontab.  But on average I would have to say I usually go to sleep about 2-3hrs before these times.</p>
<p>So I gots-ta-thinkin and I figured that there must be a better way to handle this with a script, and after a quick question to Linux Questions: <a href="http://www.linuxquestions.org/questions/linux-general-1/need-help-creating-an-advanced-shutdown-script-for-power-saving-701727/"><strong>Need help creating an advanced shutdown script for power-saving?</strong></a></p>
<p>And I got my answer and here is my new <b>adv-shutdown.sh</b> script:<br />
<blockquote><font color="#ff0000"><font face="Courier New">#!/bin/sh</font><br /><font face="Courier New">###<br /></font><font face="Courier New"># 2/3/09<br /># adv-shutdown.sh<br /></font><font face="Courier New"># Advanced Shutdown Script</font><br /><font face="Courier New"># Ref &#8211; http://basskozz.wordpress.com/2009/02/03/advanced-shutdown-script-powersaving/</font><br /><font face="Courier New">###</font></p>
<p><font face="Courier New">IP_LIST=&#8217;192.168.1.101 </font><font face="Courier New">192.168.1.102 </font><font face="Courier New">192.168.1.103 </font><font face="Courier New">192.168.1.104</font><font face="Courier New">&#8216;</font></p>
<p><font face="Courier New">ALIVE=0</font><br /><font face="Courier New">for IP&nbsp; in $IP_LIST; do</font><br /><font face="Courier New">&nbsp;&nbsp; ping -q -c1 -w5 $IP</font><br /><font face="Courier New">&nbsp;&nbsp; if [ $? -eq 0 ]; then</font><br /><font face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ALIVE=1</font><br /><font face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; echo &#8220;$IP is alive: $(date)&#8221; &gt;&gt; /home/user/scripts/adv-shutdown.log</font><br /><font face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; break</font><br /><font face="Courier New">&nbsp;&nbsp; fi</font><br /><font face="Courier New">done</font></p>
<p><font face="Courier New">if [ $ALIVE -eq 0 ]; then</font><br /><font face="Courier New">&nbsp;&nbsp; echo &#8220;***ShutDown***&nbsp; $(date)&#8221; &gt;&gt; /home/user/scripts/adv-shutdown.log</font><br /><font face="Courier New">&nbsp;&nbsp; echo &#8220;###########################&#8221; &gt;&gt; /home/user/scripts/adv-shutdown.log</font><br /><font face="Courier New">&nbsp;&nbsp; /sbin/shutdown -h now</font><br /><font face="Courier New">fi</font></font></p></blockquote>
<p>see also: <a href="http://pastebin.com/f3777e743">http://pastebin.com/f3777e743</a></p>
<p>Simply place this script in your /home/user/scripts directory (if &#8216;scripts&#8217; directory doesn&#8217;t exist &#8216;mkdir scripts&#8217; from your home directory) replace the IP_LIST ip addresses to match your own (leave a space in-between ip addresses), and replace all of the paths from &#8216;user&#8217; to your local user account name, and remember to grant execute permissions by issuing &#8220;<font face="Courier New">sudo chmod +x adv-shutdown.sh</font>&#8220;.<br />This script will keep a log of shutdown tries in /home/user/scripts/adv-shutdown.log<br />Now just add this to the root crontab by running &#8216;<font face="Courier New">sudo crontab -e</font>&#8216; and enter the following:<br />
<blockquote><font face="Courier New"><font color="#ff0000">###<br /># 2/3/09<br /># Advanced Shutdown Script <br /># http://basskozz.wordpress.com/2009/02/03/advanced-shutdown-script-powersaving/<br />###<br /># Run Advanced Shutdown script every 10minutes between 1-5:50am Mon,Tues,Wed,Fri,Sat,Sun <br />0,10,20,30,40,50 01-05 * * 1,2,3,5,6,7 /home/user/scripts/adv-shutdown.sh<br /># Run Advanced Shutdown script every 10minutes between 2-5:50am Thurs (S3 Backup Night)<br />0,10,20,30,40,50 02-05 * * 4 /home/user/scripts/adv-shutdown.sh</font><br /></font></p></blockquote>
<p>see also: <a href="http://pastebin.com/f585c9b3c">http://pastebin.com/f585c9b3c</a></p>
<p>I created two lines here because my NAS box backs up to <a href="http://aws.amazon.com/s3/">Amazon S3</a> on Thursday nights, so I wanted to give it a little more time to work.</p>
<p><b>UPDATE &#8211; new script</b>:<a href="http://basskozz.wordpress.com/2009/02/04/advanced-shutdown-script-part-2-check-for-running-services/" rel="bookmark" title="Advanced Shutdown Script - Part 2 (check for running&nbsp;services)">Advanced Shutdown Script &#8211; Part 2 (check for running&nbsp;services)</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/basskozz.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/basskozz.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/basskozz.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/basskozz.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/basskozz.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/basskozz.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/basskozz.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/basskozz.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/basskozz.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/basskozz.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/basskozz.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/basskozz.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/basskozz.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/basskozz.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basskozz.wordpress.com&amp;blog=389632&amp;post=30&amp;subd=basskozz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://basskozz.wordpress.com/2009/02/03/advanced-shutdown-script-powersaving/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/782d6170767beea468383e84c7e24c1a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">basskozz</media:title>
		</media:content>
	</item>
		<item>
		<title>How to setup a RAID5 software (mdadm) array w/ email notifications via Gmail &#8211; the easy way</title>
		<link>http://basskozz.wordpress.com/2008/12/07/how-to-setup-a-raid5-software-mdadm-array-w-email-notifications-via-gmail-the-easy-way/</link>
		<comments>http://basskozz.wordpress.com/2008/12/07/how-to-setup-a-raid5-software-mdadm-array-w-email-notifications-via-gmail-the-easy-way/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 20:12:26 +0000</pubDate>
		<dc:creator>basskozz</dc:creator>
				<category><![CDATA[exim4]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[mdadm]]></category>
		<category><![CDATA[NAS]]></category>
		<category><![CDATA[raid]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://basskozz.wordpress.com/2008/12/07/how-to-setup-a-raid5-software-mdadm-array-w-email-notifications-via-gmail-the-easy-way/</guid>
		<description><![CDATA[Long title I know&#8230; So I finally setup a NAS using Ubuntu Intrepid (8.10) Desktop, at first I was looking into using a pre-built solution such as FreeNAS or Openfiler but that limited the boxes ability to do other things (like serving up webpages using LAMP, etc.) besides I like having a Desktop GUI that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basskozz.wordpress.com&amp;blog=389632&amp;post=25&amp;subd=basskozz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Long title I know&#8230;<br />
So I finally setup a NAS using Ubuntu Intrepid (8.10) Desktop, at first I was looking into using a pre-built solution such as <a href="http://www.freenas.org">FreeNAS</a> or <a href="http://www.openfiler.com">Openfiler</a> but that limited the boxes ability to do other things (like serving up webpages using LAMP, etc.) besides I like having a Desktop GUI that I can play with if things go wrong.&nbsp; So after <a href="http://ubuntuforums.org/showthread.php?t=1001925">figuring out what version of Ubuntu to use</a> (Hardy for it&#8217;s LTS or Intrepid for latest and greatest) I decided on Intrepid.</p>
<p><u>My setup:</u><br />
<b>MoBo:</b> <a href="http://www.intel.com/support/motherboards/desktop/D865GBF/" target="_blank">Intel D865GBF Desktop Board</a><br />
<b>CPU:</b> P4 3.0Ghz<br />
<b>RAM:</b> 4x1GB G.Skill Sticks<br />
<b>VIDEO:</b> FX5200 AGP card<br />
<b>IDE1:</b> Seagate 250GB (ST380013A)<br />
<b>IDE2:</b> Maxtor 250GB (Diamond Max Plus9)<br />
<b>SATA1:</b> Western Digital 320GB (WD3200JD-22KLB0)<br />
<b>SATA2:</b> Seagate 200GB (ST300822AS) &#8211; <b><i>***UBUNTU INSTALLED ON THIS ONE***</i></b></p>
<p>So I will be using IDE1,IDE2, &amp; SATA1 for my RAID5 Array.</p>
<p>After a <a href="http://ubuntuforums.org/showthread.php?t=999112">quick shout</a> to the Ubuntu Community I found this wonderfully simple guide on setting up a RAID5 array using mdadm: <a href="http://bfish.xaedalus.net/?p=188">http://bfish.xaedalus.net/?p=188</a></p>
<p>I did however run into one problem with the guide:</p>
<blockquote><p>sudo mdadm &#8211;detail &#8211;scan &gt;&gt; /etc/mdadm/mdadm.conf</p></blockquote>
<p>Which adds the following to my <i>mdadm.conf</i> file:</p>
<blockquote><p>ARRAY /dev/md0 level=raid5 num-devices=3 metadata=00.90 UUID=13f95aef:9c364189:75b10d3a:87a53e2f</p></blockquote>
<p>but after I&#8217;ve added that to the <i>mdadm.conf</i> and when I run the following:</p>
<blockquote><p> sudo mdadm &#8211;examine &#8211;scan<br />
mdadm: metadata format 00.90 unknown, ignored.<br />
ARRAY /dev/md0 level=raid5 num-devices=3 UUID=13f95aef:9c364189:75b10d3a:87a53e2f
</p></blockquote>
<p>Notice: <b>mdadm: metadata format 00.90 unknown, ignored.</b><br />
So I had to remove &#8220;<b>metadata=00.90</b>&#8221; from my <i>mdadm.conf</i> file and I no longer get that message.<br />
Anyone know why the <i><b>metadata</b></i> entry isn&#8217;t working?</p>
<p><big><big>And now on to setting up email notifications via Gmail &#8211; The easy way&#8230;</big></big></p>
<p>After spending literally hours trying to get postfix working and running into problems getting the SSL CA certificates working I gave up on postfix all together and started looking for an alternative, and after a few google searches I found one: <a href="http://www.manu-j.com/blog/wordpress-exim4-ubuntu-gmail-smtp/75/">http://www.manu-j.com/blog/wordpress-exim4-ubuntu-gmail-smtp/75/</a></p>
<p>This guide walks you thru setting up exim4 to work with Gmail, and it works perfectly, the only problem I ran into with this guide was that you need to comment out the whole &#8220;login:&#8221; section of <i>/etc/exim4/exim4.conf.template</i> like so:</p>
<blockquote><p>
#Commented out so that Gmail&#8217;s Public_name can equal &#8220;LOGIN&#8221;<br />
#login:<br />
#  driver = plaintext<br />
#  public_name = LOGIN<br />
#.ifndef AUTH_CLIENT_ALLOW_NOTLS_PASSWORDS<br />
  # Return empty string if not non-TLS AND looking up $host in passwd-file<br />
  # yields a non-empty string; fail otherwise.<br />
#  client_send = &#8220;&lt;; ${if and{\<br />
#                          {!eq{$tls_cipher}{}}\<br />
#                          {!eq{PASSWDLINE}{}}\<br />
#                         }\<br />
#                      {}fail}\<br />
#                 ; ${extract{1}{::}{PASSWDLINE}}\<br />
#                ; ${sg{PASSWDLINE}{\\N([^:]+:)(.*)\\N}{\\$2}}&#8221;<br />
#.else<br />
  # Return empty string if looking up $host in passwd-file yields a<br />
  # non-empty string; fail otherwise.<br />
#  client_send = &#8220;&lt;; ${if !eq{PASSWDLINE}{}\<br />
#                      {}fail}\<br />
#                 ; ${extract{1}{::}{PASSWDLINE}}\<br />
#                ; ${sg{PASSWDLINE}{\\N([^:]+:)(.*)\\N}{\\$2}}&#8221;<br />
#.endif<br />
#####################################################<br />
### end auth/30_exim4-config_examples<br />
#####################################################
</p></blockquote>
<p>Now simply edit your <i>/etc/mdadm/mdadm.conf</i> file to read:</p>
<blockquote><p># instruct the monitoring daemon where to send mail alerts<br />
MAILADDR {YourEmailAddress_Where-you-want-mdadm-notifications-sent@email.com}
</p></blockquote>
<p>Now you should be all set give it a test by running:</p>
<blockquote><p>sudo mdadm &#8211;monitor &#8211;scan &#8211;test</p></blockquote>
<p>And you should have an email within minutes <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/basskozz.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/basskozz.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/basskozz.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/basskozz.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/basskozz.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/basskozz.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/basskozz.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/basskozz.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/basskozz.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/basskozz.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/basskozz.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/basskozz.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/basskozz.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/basskozz.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basskozz.wordpress.com&amp;blog=389632&amp;post=25&amp;subd=basskozz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://basskozz.wordpress.com/2008/12/07/how-to-setup-a-raid5-software-mdadm-array-w-email-notifications-via-gmail-the-easy-way/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/782d6170767beea468383e84c7e24c1a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">basskozz</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu has problems with power saving (muti-display)</title>
		<link>http://basskozz.wordpress.com/2008/09/29/ubuntu-has-problems-with-power-saving-muti-display/</link>
		<comments>http://basskozz.wordpress.com/2008/09/29/ubuntu-has-problems-with-power-saving-muti-display/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 04:09:57 +0000</pubDate>
		<dc:creator>basskozz</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Bug]]></category>
		<category><![CDATA[DPMS]]></category>
		<category><![CDATA[Dual Monitor]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[Gnome-Power-Manager]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Multi-Display]]></category>
		<category><![CDATA[Multi-Head]]></category>
		<category><![CDATA[Power Management]]></category>
		<category><![CDATA[Power Saving]]></category>

		<guid isPermaLink="false">http://basskozz.wordpress.com/?p=19</guid>
		<description><![CDATA[Using Ubuntu 8.04.1 (up to date)
I have a dual monitor setup, and I recently switched from "Separate X-Sessions" to a "TwinView" and now my monitors won't go into standby/sleep (power saving) state.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basskozz.wordpress.com&amp;blog=389632&amp;post=19&amp;subd=basskozz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Using Ubuntu 8.04.1 (up to date)<br />
I have a dual monitor setup, and <a href="http://ubuntuforums.org/showpost.php?p=5818944&amp;postcount=6" target="_blank">I recently switched</a> from &#8220;Separate X-Sessions&#8221; to a &#8220;TwinView&#8221; and now my monitors won&#8217;t go into standby/sleep (power saving) state. I&#8217;ve tried changing the settings in System&gt;Power Management&gt;Display&gt; &#8220;Put display to sleep when inactive for&#8221; but no matter what I set it to (for a time limit) it NEVER goes into sleep mode. I&#8217;ve left the computer on for hours on end, and they never go into sleep. But when I switch from &#8220;TwinView&#8221; to &#8220;Separate X-Screens&#8221; the monitors go to sleep right on time, EVERYTIME.</p>
<p>p.s. I am NOT using Compiz (don&#8217;t know if that makes a difference or not).<br />
System&gt;Preferences&gt;Appearance&gt;Visual Effects = NONE.</p>
<p>Hopefully this will be fixed soon&#8230;</p>
<p><span style="text-decoration:underline;">Checkout the bug reports</span><br />
Ubuntu&#8217;s Launchpad: <a href="https://bugs.launchpad.net/ubuntu/+bug/275308" target="_blank">https://bugs.launchpad.net/ubuntu/+bug/275308</a><br />
Gnome&#8217;s BugZilla: <a href="http://bugzilla.gnome.org/show_bug.cgi?id=554247" target="_blank">http://bugzilla.gnome.org/show_bug.cgi?id=554247</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/basskozz.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/basskozz.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/basskozz.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/basskozz.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/basskozz.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/basskozz.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/basskozz.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/basskozz.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/basskozz.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/basskozz.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/basskozz.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/basskozz.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/basskozz.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/basskozz.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basskozz.wordpress.com&amp;blog=389632&amp;post=19&amp;subd=basskozz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://basskozz.wordpress.com/2008/09/29/ubuntu-has-problems-with-power-saving-muti-display/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/782d6170767beea468383e84c7e24c1a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">basskozz</media:title>
		</media:content>
	</item>
		<item>
		<title>IOGEAR USB Net ShareStation &#8211; Possible Droboshare Replacement?</title>
		<link>http://basskozz.wordpress.com/2008/07/17/iogear-usb-net-sharestation-possible-droboshare-replacement/</link>
		<comments>http://basskozz.wordpress.com/2008/07/17/iogear-usb-net-sharestation-possible-droboshare-replacement/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 05:01:22 +0000</pubDate>
		<dc:creator>basskozz</dc:creator>
				<category><![CDATA[Drobo]]></category>
		<category><![CDATA[Tech Toys]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Print Server]]></category>
		<category><![CDATA[Technology Products]]></category>
		<category><![CDATA[USB]]></category>

		<guid isPermaLink="false">http://basskozz.wordpress.com/?p=7</guid>
		<description><![CDATA[...what about using this as a replacement for the {currently} $200 DroboShare, this is essentially a DroboShare for 1/4 the cost...<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basskozz.wordpress.com&amp;blog=389632&amp;post=7&amp;subd=basskozz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I came across <a title="CrunchGear Review" href="http://www.crunchgear.com/2008/07/10/video-review-iogear-usb-net-sharestation/" target="_blank">a review</a> for a new product called the <a title="USB Net ShareStation" href="http://www.iogear.com/product/GUIP201/" target="_blank">USB Net ShareStation by IOGEAR</a>.  This little toy looks interesting enough, especially considering the fact that it allows one to use a 4port USB Hub to add more devices to your network via USB, this seems like a GREAT product. No more need for USB-&gt;Network print servers, and now I can use my external USB drives via my network.  I am very interested in getting my hands on one of these badboys, and they are currently going for $50 shipped via eBay.</p>
<p><span style="text-decoration:underline;"><strong>Couple of Con&#8217;s:</strong></span></p>
<ol>
<li>1 major downside, it&#8217;s not Linux compatible out-of-the-box, hopefully someone will hack the device drivers to work with Linux soon&#8230; If you know of anyone currently working on this please leave me a comment and let me know.</li>
<li>10/100Base-T port = Not Gigabit Ethernet</li>
</ol>
<p>This got me thinking however what about using this as a replacement for the {currently} <a title="DroboShare" href="http://www.drobostore.com/storefront/part/technotes.do?skuNo=2015437" target="_blank">$200 DroboShare</a>, this is essentially a DroboShare for 1/4 the cost, but would this work with the Drobo?  Then of course this leads to a followup question of performance, which provides more throughput, the DroboShare or the ShareStation?  I realize the DroboShare has a Gigabit ethernet connection, so this will probably be a major drawback, but I am curious to know what real-life experience/benchmarks between the too show&#8230;</p>
<p>Because this product is so new there aren&#8217;t alot of reviews that benchmark the ShareStation, but as I collect more information on this I will add it to this post.  Please if you have any info on this, leave a comment.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/basskozz.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/basskozz.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/basskozz.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/basskozz.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/basskozz.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/basskozz.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/basskozz.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/basskozz.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/basskozz.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/basskozz.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/basskozz.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/basskozz.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/basskozz.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/basskozz.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/basskozz.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/basskozz.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basskozz.wordpress.com&amp;blog=389632&amp;post=7&amp;subd=basskozz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://basskozz.wordpress.com/2008/07/17/iogear-usb-net-sharestation-possible-droboshare-replacement/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/782d6170767beea468383e84c7e24c1a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">basskozz</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Ubuntu on a OLPC Xo &#8211; Part 1</title>
		<link>http://basskozz.wordpress.com/2008/07/10/installing-ubuntu-on-a-olpc-xo-part-1/</link>
		<comments>http://basskozz.wordpress.com/2008/07/10/installing-ubuntu-on-a-olpc-xo-part-1/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 15:01:59 +0000</pubDate>
		<dc:creator>basskozz</dc:creator>
				<category><![CDATA[OLPC]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Xo]]></category>
		<category><![CDATA[Xubuntu]]></category>
		<category><![CDATA[Xorg]]></category>

		<guid isPermaLink="false">http://basskozz.wordpress.com/2008/07/10/installing-ubuntu-on-a-olpc-xo-part-1/</guid>
		<description><![CDATA[Well thanks to the Ubuntu On OLPC XO wiki page I was able to successfully install Ubuntu on my OLPC. I did however run into a few hitches. 1. Wireless Internet Connection The wiki page doesn&#8217;t make reference to how to setup WEP wireless connection, it only mentions WPA (NETWORKING) so I had to do [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basskozz.wordpress.com&amp;blog=389632&amp;post=5&amp;subd=basskozz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well thanks to the <a href="http://wiki.laptop.org/go/Ubuntu_On_OLPC_XO">Ubuntu On OLPC XO</a> wiki page I was able to successfully install Ubuntu on my OLPC.<br />
I did however run into a few hitches.</p>
<p><span style="text-decoration:underline;"><strong><big><big>1. Wireless Internet Connection</big></big></strong></span></p>
<p>The wiki page doesn&#8217;t make reference to how to setup WEP wireless connection, it only mentions <em>WPA </em>(<a href="http://wiki.laptop.org/go/Ubuntu_On_OLPC_XO#NETWORKING"><span class="toctext">NETWORKING</span></a>) so I had to do a bit of research: <a href="http://olpcnews.com/forum/index.php?topic=2967.msg23697#msg23697">How to connect to wireless (WEP) in ubuntu?</a><br />
turns out that the following does the trick: <code><br />
</code></p>
<blockquote><p><code>iwconfig eth1 essid "mySSID" key mywepkey</code><br />
<code>sudo dhclient eth1</code></p></blockquote>
<p>Now I had to figure out how to add this to a startup script so that it would automatically connect to my wireless router upon boot up: <a id="thread_title_854332" href="http://ubuntuforums.org/showthread.php?t=854332">Automatic Wireless Connection (At Startup)?</a><br />
All I had to do was add the following to <em>/etc/network/interfaces</em></p>
<blockquote><p><code># Wireless Connection</code><br />
<code>iface eth1 inet dhcp</code><br />
<code>wireless-key hex-key</code><br />
<code>wireless-essid ssid</code></p>
<p><code>auto eth1</code></p></blockquote>
<p>where <em><strong>hex-key</strong></em> = my WEP hex key &amp; <strong><em>ssid</em></strong> = my routers wireless SSID</p>
<p><span style="text-decoration:underline;"><strong><big><big>2. Mouse Problems<br />
</big></big></strong></span><br />
The<span class="toctext"> </span><a href="http://wiki.laptop.org/go/Customizing_Ubuntu_for_XO#Mouse_problems"><span class="toctext">Customizing Ubuntu for XO</span></a> wiki page explains how to fix the tap-click issue and sensitivity, however the sensitivity issue I am having is that my mouse is too insensitive, My mouse pointer <strong>FLY&#8217;s</strong> across the screen when I move my finger, so instead of using the wiki&#8217;s recommened:<br />
<code>xset m 1/4 0</code><br />
I am using:<br />
<code>xset m 25/20 0</code><br />
and it is much better now.</p>
<p><span style="text-decoration:underline;"><strong><big><big>3. Screen Saver<br />
</big></big></strong></span><br />
The first thing I noticed was there was no screensaver installed, when I went to <em>Settings &gt; Screensaver Settings</em>, I got the following error: <img src="http://i4.photobucket.com/albums/y105/basskozz/OLPC/screensaversettings-error.png" alt="screensaver-settings-error" /><br />
I was able to install <a href="http://www.jwz.org/xscreensaver/" target="_blank">xscreensaver</a>, but I got another error every time I made a change to xscreensaver&#8217;s settings &#8220;<em>Directory does not exist: /usr/share/backgrounds</em><em></em>&#8221; a quick google search and I found a solution: <a href="https://bugs.launchpad.net/ubuntu/+source/xscreensaver/+bug/129769" target="_blank">https://bugs.launchpad.net/ubuntu/+source/xscreensaver/+bug/129769</a><br />
<code>sudo apt-get install screensaver-default-images</code><br />
Fixed <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Part 2 of my setup woe&#8217;s comming soon&#8230;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/basskozz.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/basskozz.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/basskozz.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/basskozz.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/basskozz.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/basskozz.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/basskozz.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/basskozz.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/basskozz.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/basskozz.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/basskozz.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/basskozz.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/basskozz.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/basskozz.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/basskozz.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/basskozz.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basskozz.wordpress.com&amp;blog=389632&amp;post=5&amp;subd=basskozz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://basskozz.wordpress.com/2008/07/10/installing-ubuntu-on-a-olpc-xo-part-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/782d6170767beea468383e84c7e24c1a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">basskozz</media:title>
		</media:content>

		<media:content url="http://i4.photobucket.com/albums/y105/basskozz/OLPC/screensaversettings-error.png" medium="image">
			<media:title type="html">screensaver-settings-error</media:title>
		</media:content>
	</item>
		<item>
		<title>How to move an Outlook 2007 DataFile ?</title>
		<link>http://basskozz.wordpress.com/2008/07/04/how-to-move-an-outlook-2007-datafile/</link>
		<comments>http://basskozz.wordpress.com/2008/07/04/how-to-move-an-outlook-2007-datafile/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 18:46:07 +0000</pubDate>
		<dc:creator>basskozz</dc:creator>
				<category><![CDATA[Office 2007]]></category>
		<category><![CDATA[Outlook 2007]]></category>
		<category><![CDATA[WinXP]]></category>
		<category><![CDATA[data file]]></category>
		<category><![CDATA[datafile]]></category>
		<category><![CDATA[ost]]></category>
		<category><![CDATA[pst]]></category>

		<guid isPermaLink="false">http://basskozz.wordpress.com/?p=3</guid>
		<description><![CDATA[I decided to break free from Google Apps webGUI (a.k.a. Gmail) and start using Outlook to access my Google Apps domain account email. I have an Outlook Profile that contains one Exchange account (Default) and 2 IMAP accounts. I am trying to change the datafile (pst) location for my two IMAP accounts from the default [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basskozz.wordpress.com&amp;blog=389632&amp;post=3&amp;subd=basskozz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I decided to break free from Google Apps webGUI (a.k.a. Gmail) and start using Outlook to access my Google Apps domain account email.</p>
<p><span><span>I have an Outlook Profile that contains one Exchange account (Default) and 2 IMAP accounts.  I am trying to change the datafile (pst) location for my two IMAP accounts from the default (C:\Documents and Settings\User\Local Settings\Application Data\Microsoft\Outlook) to another directory.</span></span></p>
<p>I&#8217;ve tried Google and I&#8217;ve read thru this page: <a title="http://office.microsoft.com/en-us/outlook/HA012308921033.aspx" href="http://office.microsoft.com/en-us/outlook/HA012308921033.aspx">http://office.microsoft.com/en-us/outlook/HA012308921033.aspx</a><br />
But there is a part on that page where I get lost&#8230;<br />
It says:</p>
<blockquote>
<table border="0" width="85%">
<tbody>
<tr>
<td class="quoteTable">
<table border="0" width="100%">
<tbody>
<tr>
<td class="txt4" width="100%" valign="top">
<ol>
<li>In the <strong>Tools</strong> menu, click <strong>Account Settings</strong>.</li>
<li>On the <strong>E-mail</strong> tab, select the new e-mail account, and then click <strong>Change Folder</strong>.</li>
<li>In the <strong>New E-mail Delivery Location</strong> dialog box, select the Inbox of the old .pst file.</li>
</ol>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</blockquote>
<p>But for me there is no &#8220;<span style="font-style:italic;">Change Folder</span>&#8221; or &#8220;<span style="font-style:italic;">New E-mail Delivery Location</span>&#8221; option???</p>
<p>What am I missing?</p>
<p><span style="text-decoration:underline;"><strong>Edit 7-17-08:<br />
</strong></span></p>
<p>I have found a possible solution, but I haven&#8217;t had time to try it out myself, I will post an update when I&#8217;ve confirmed this is working:</p>
<blockquote><p>By default, Outlook places each Offline Folders (.ost) file and Personal Folders (.pst) file that it creates in the %userprofile%\Local Settings\Application Data\Microsoft\Outlook folder. This setting allows you to change the default behavior and store the files in any folder.</p>
<p>Open your registry and find the appropriate key below.</p>
<p>Outlook 2007 &#8211; [HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Outlook]<br />
Outlook 2003 &#8211; [HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Outlook]<br />
Outlook XP &#8211; [HKEY_CURRENT_USER\Software\Microsoft\Office\10.0\Outlook]<br />
Outlook 2000 &#8211; [HKEY_CURRENT_USER\Software\Microsoft\Office\9.0\Outlook]</p>
<p>Create a new REG_EXPAND_SZ (Expandable String) value called &#8216;ForcePSTPath&#8217; and set it to equal the full path of the required personal folder directory (e.g. &#8220;C:\Mailbox&#8221;).</p>
<p>Restart Outlook for the change to take effect. and if this does not work.. try restarting your cmputer aswell.</p></blockquote>
<p>And</p>
<blockquote><p>You can also move the current .pst files to the new location using the following method.</p>
<p>&gt;Open the Outlook.<br />
&gt;Click on File &gt; Data Management File.<br />
&gt;Make a note of the path where the Outlook.pst file is stored or saved.<br />
&gt; Close the Outlook and copy the folder to some other location and then reopen outlook.<br />
&gt; use the same procedure to Add the new pst file from the new location and remove the old PST that is there..</p>
<p>It should work fine.. You can follow any method that you think it is useful..</p></blockquote>
<p>Again, I have not tested the above, so proceed with caution. I will report back when I&#8217;ve had a chance to confirm the above is a working solution. Thanks for your patience.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/basskozz.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/basskozz.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/basskozz.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/basskozz.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/basskozz.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/basskozz.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/basskozz.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/basskozz.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/basskozz.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/basskozz.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/basskozz.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/basskozz.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/basskozz.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/basskozz.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/basskozz.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/basskozz.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basskozz.wordpress.com&amp;blog=389632&amp;post=3&amp;subd=basskozz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://basskozz.wordpress.com/2008/07/04/how-to-move-an-outlook-2007-datafile/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/782d6170767beea468383e84c7e24c1a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">basskozz</media:title>
		</media:content>
	</item>
		<item>
		<title>Linux + Xorg + VMware = trouble</title>
		<link>http://basskozz.wordpress.com/2008/07/04/linux-xorg-vmware-trouble/</link>
		<comments>http://basskozz.wordpress.com/2008/07/04/linux-xorg-vmware-trouble/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 18:45:46 +0000</pubDate>
		<dc:creator>basskozz</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Keyboard]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[VMware Workstation]]></category>
		<category><![CDATA[Xorg]]></category>

		<guid isPermaLink="false">http://basskozz.wordpress.com/?p=4</guid>
		<description><![CDATA[Apparently there is a severe bug that relates to multiple distributions of Linux (I am using Ubuntu) and it has to do with VMware and Xorg. This bug causes the keyboard to go all out of whack when using VMware in full screen mode. As of right now there isn&#8217;t a solution to the problem [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basskozz.wordpress.com&amp;blog=389632&amp;post=4&amp;subd=basskozz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Apparently there is a severe bug that relates to multiple distributions of Linux (I am using Ubuntu) and it has to do with VMware and Xorg.  This bug causes the keyboard to go all out of whack when using VMware in full screen mode. As of right now there isn&#8217;t a solution to the problem but there are a few workarounds:</p>
<ol>
<li>execute &#8216;setxkbmap&#8217; from the terminal</li>
<li>In Ubuntu, Go to Applications &gt; Other &gt; Keyboard Layout, and remove the keyboard layout and then add it back and re-apply</li>
</ol>
<p>Hopefully someone will correct this issue soon.  But for now it seems like everyone is passing the buck (Xorg is blaming VMware, VMware is blaming Linux &amp; Xorg, etc&#8230;)</p>
<p>If anyone has some incite or other work-arounds please post.</p>
<p><strong>Links:<br />
</strong>LaunchPad: <a href="https://bugs.launchpad.net/ubuntu/+source/linux/+bug/195982" target="_blank">https://bugs.launchpad.net/ubuntu/+source/linux/+bug/195982</a><br />
VMware Forums: <a href="http://communities.vmware.com/message/975867" target="_blank">http://communities.vmware.com/message/975867</a><a href="https://bugs.launchpad.net/ubuntu/+source/linux/+bug/195982" target="_blank"></a><br />
Ubuntu Forums Posts:</p>
<ul>
<li><a href="http://ubuntuforums.org/showthread.php?t=812402" target="_blank">SCIM / Keyboard Layout Issues</a></li>
<li><a href="http://ubuntuforums.org/showthread.php?t=729510" target="_blank">Broken Shift &amp; CAPS LOCK keys &#8211; SCIM</a></li>
<li><a href="http://ubuntuforums.org/showthread.php?t=727386" target="_blank">My KVM Breaks Input Devices</a></li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/basskozz.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/basskozz.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/basskozz.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/basskozz.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/basskozz.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/basskozz.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/basskozz.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/basskozz.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/basskozz.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/basskozz.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/basskozz.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/basskozz.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/basskozz.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/basskozz.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/basskozz.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/basskozz.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basskozz.wordpress.com&amp;blog=389632&amp;post=4&amp;subd=basskozz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://basskozz.wordpress.com/2008/07/04/linux-xorg-vmware-trouble/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/782d6170767beea468383e84c7e24c1a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">basskozz</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://basskozz.wordpress.com/2006/09/01/hello-world/</link>
		<comments>http://basskozz.wordpress.com/2006/09/01/hello-world/#comments</comments>
		<pubDate>Fri, 01 Sep 2006 02:36:53 +0000</pubDate>
		<dc:creator>basskozz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basskozz.wordpress.com&amp;blog=389632&amp;post=1&amp;subd=basskozz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to <a href="http://wordpress.com/">WordPress.com</a>. This is your first post. Edit or delete it and start blogging!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/basskozz.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/basskozz.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/basskozz.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/basskozz.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/basskozz.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/basskozz.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/basskozz.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/basskozz.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/basskozz.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/basskozz.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/basskozz.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/basskozz.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/basskozz.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/basskozz.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/basskozz.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/basskozz.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=basskozz.wordpress.com&amp;blog=389632&amp;post=1&amp;subd=basskozz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://basskozz.wordpress.com/2006/09/01/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/782d6170767beea468383e84c7e24c1a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">basskozz</media:title>
		</media:content>
	</item>
	</channel>
</rss>
