<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>geekhut dot org &#187; Notes</title>
	<atom:link href="http://geekhut.org/geekhut-dot-org/notes/feed/" rel="self" type="application/rss+xml" />
	<link>http://geekhut.org</link>
	<description>Chock Full of Geeky Goodness</description>
	<lastBuildDate>Thu, 17 Jun 2010 13:06:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=1726</generator>
		<item>
		<title>Setting Up Zend Framework</title>
		<link>http://geekhut.org/2010/04/setting-up-zend-framework/</link>
		<comments>http://geekhut.org/2010/04/setting-up-zend-framework/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 18:27:43 +0000</pubDate>
		<dc:creator>aster1sk</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[geekhut dot org]]></category>
		<category><![CDATA[Absolute Path]]></category>
		<category><![CDATA[Bashrc]]></category>
		<category><![CDATA[Bin Directory]]></category>
		<category><![CDATA[Copy And Paste]]></category>
		<category><![CDATA[Directory Name]]></category>
		<category><![CDATA[Document Root]]></category>
		<category><![CDATA[Export Path]]></category>
		<category><![CDATA[Framework Version]]></category>
		<category><![CDATA[Funner]]></category>
		<category><![CDATA[Mv]]></category>
		<category><![CDATA[Putty]]></category>
		<category><![CDATA[Release Directory]]></category>
		<category><![CDATA[Server Document]]></category>
		<category><![CDATA[Shell Cat]]></category>
		<category><![CDATA[Simplicity]]></category>
		<category><![CDATA[Ssh Client]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[Tar Gz]]></category>
		<category><![CDATA[Tar Zxvf]]></category>
		<category><![CDATA[Zend]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://geekhut.org/?p=1009</guid>
		<description><![CDATA[So it is time to check out Zend Framework seeing how powerful everyone says it is. Setup is a bit annoying in comparison to other &#8220;funner&#8221; frameworks so I am going to document my findings as I learn. Here&#8217;s a guide to getting ZF working on your *nix dev box. Setting up your environment Using [...]]]></description>
			<content:encoded><![CDATA[<p>So it is time to check out Zend Framework seeing how powerful everyone says it is. Setup is a bit annoying in comparison to other &#8220;funner&#8221; frameworks so I am going to document my findings as I learn. Here&#8217;s a guide to getting ZF working on your *nix dev box.</p>
<p><strong>Setting up your environment</strong></p>
<p>Using a SSH client such as Putty &#8211; connect to your web server and create a directory in your users home named &#8220;bin&#8221;</p>
<p><code>$ cd ~<br />
$ mkdir bin<br />
$ cd bin</code></p>
<p>Next we need to download a stable copy of Zend Framework via subversion using the following command :</p>
<p><code>$ svn checkout http://framework.zend.com/svn/framework/standard/branches/release-1.10/</code></p>
<p>If svn (Subversion) is not installed you can download via wget using the following command :</p>
<p><code>$ wget http://framework.zend.com/releases/ZendFramework-1.10.3/ZendFramework-1.10.3-minimal.tar.gz</code></p>
<p>Next we need to untar (decompress) the framework :</p>
<p><code>$ tar -zxvf ZendFramework-1.10.3-minimal.tar.gz</code></p>
<p>Rename the decompressed folder :</p>
<p><code>$ mv ZendFramework-1.10.3-minimal Zend</code></p>
<p>** Note if you used subversion to acquire Zend Framework &#8211; you probably have downloaded the release directory &#8211; use the command above replacing the first argument with the release directory name.</p>
<p>Move the scripts from the Zend/bin directory into the ~/bin directory; make them executable; rename zf.sh to just zf (for simplicity) :</p>
<p><code>$ mv Zend/bin/* .<br />
$ chmod +x zf.sh<br />
$ mv zf.sh zf</code></p>
<p>The next step is to add the zf script to the users include path, this allows us to use the zf command without having to specify the absolute path.  Copy and paste the next 6 lines into your shell :</p>
<p><code>cat &lt;&lt; EOF &gt;&gt; ~/.bashrc<br />
if [ -d ~/bin ] ; then<br />
PATH=~/bin:"\${PATH}"<br />
fi<br />
export PATH<br />
EOF</code></p>
<p>You must now log out and back in to activate this path.  Once you are logged back in you can test the zf command by typing :</p>
<p><code>$ zf show version</code></p>
<p>If you see &#8220;Zend Framework Version: 1.10.3&#8243;  you are ready to start your first project.</p>
<p><strong>Creating your first project</strong></p>
<p>Change to your web server document root, assuming you are using a Debian based server you can find it usually in /var/www (RHEL generally defaults to /var/www/html) :</p>
<p><code>$ cd /var/www</code></p>
<p>Create a project using the following command :</p>
<p><code>$ zf create project &lt;project_name&gt;</code></p>
<p>Where &lt;project_name&gt; is the name of your project in lowercase alpha numeric form (no symbols, spaces, uppercase letters (hyphens and underscores are OK))</p>
<p>Link your Zend library to your projects library directory as such :</p>
<p><code>$ ln -s ~/bin/Zend /var/www/project_name/library</code></p>
<p>Where /var/www is your web server document root and project_name is the name of your project.</p>
<p>If all went well &#8211; point your browser to your web server hostname or IP / your project name / public ( http://example.com/project_name/public ).</p>
<p>That is all for now &#8211; we&#8217;ll get into the actually writing some code next time.  Leave me some comments below!</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgeekhut.org%2F2010%2F04%2Fsetting-up-zend-framework%2F&amp;title=Setting%20Up%20Zend%20Framework&amp;bodytext=So%20it%20is%20time%20to%20check%20out%20Zend%20Framework%20seeing%20how%20powerful%20everyone%20says%20it%20is.%20Setup%20is%20a%20bit%20annoying%20in%20comparison%20to%20other%20%22funner%22%20frameworks%20so%20I%20am%20going%20to%20document%20my%20findings%20as%20I%20learn.%20Here%27s%20a%20guide%20to%20getting%20ZF%20working%20on%20your%20%2Anix%20" title="Digg"><img src="http://geekhut.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fgeekhut.org%2F2010%2F04%2Fsetting-up-zend-framework%2F&amp;title=Setting%20Up%20Zend%20Framework&amp;notes=So%20it%20is%20time%20to%20check%20out%20Zend%20Framework%20seeing%20how%20powerful%20everyone%20says%20it%20is.%20Setup%20is%20a%20bit%20annoying%20in%20comparison%20to%20other%20%22funner%22%20frameworks%20so%20I%20am%20going%20to%20document%20my%20findings%20as%20I%20learn.%20Here%27s%20a%20guide%20to%20getting%20ZF%20working%20on%20your%20%2Anix%20" title="del.icio.us"><img src="http://geekhut.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgeekhut.org%2F2010%2F04%2Fsetting-up-zend-framework%2F&amp;t=Setting%20Up%20Zend%20Framework" title="Facebook"><img src="http://geekhut.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fgeekhut.org%2F2010%2F04%2Fsetting-up-zend-framework%2F&amp;h=Setting%20Up%20Zend%20Framework" title="NewsVine"><img src="http://geekhut.org/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fgeekhut.org%2F2010%2F04%2Fsetting-up-zend-framework%2F&amp;title=Setting%20Up%20Zend%20Framework" title="Reddit"><img src="http://geekhut.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgeekhut.org%2F2010%2F04%2Fsetting-up-zend-framework%2F&amp;title=Setting%20Up%20Zend%20Framework" title="StumbleUpon"><img src="http://geekhut.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="YahooMyWeb"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fgeekhut.org%2F2010%2F04%2Fsetting-up-zend-framework%2F&amp;title=Setting%20Up%20Zend%20Framework&amp;annotation=So%20it%20is%20time%20to%20check%20out%20Zend%20Framework%20seeing%20how%20powerful%20everyone%20says%20it%20is.%20Setup%20is%20a%20bit%20annoying%20in%20comparison%20to%20other%20%22funner%22%20frameworks%20so%20I%20am%20going%20to%20document%20my%20findings%20as%20I%20learn.%20Here%27s%20a%20guide%20to%20getting%20ZF%20working%20on%20your%20%2Anix%20" title="Google Bookmarks"><img src="http://geekhut.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fgeekhut.org%2F2010%2F04%2Fsetting-up-zend-framework%2F&amp;submitHeadline=Setting%20Up%20Zend%20Framework&amp;submitSummary=So%20it%20is%20time%20to%20check%20out%20Zend%20Framework%20seeing%20how%20powerful%20everyone%20says%20it%20is.%20Setup%20is%20a%20bit%20annoying%20in%20comparison%20to%20other%20%22funner%22%20frameworks%20so%20I%20am%20going%20to%20document%20my%20findings%20as%20I%20learn.%20Here%27s%20a%20guide%20to%20getting%20ZF%20working%20on%20your%20%2Anix%20&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://geekhut.org/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fgeekhut.org%2F2010%2F04%2Fsetting-up-zend-framework%2F&amp;title=Setting%20Up%20Zend%20Framework" title="Live"><img src="http://geekhut.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fgeekhut.org%2F2010%2F04%2Fsetting-up-zend-framework%2F&amp;title=Setting%20Up%20Zend%20Framework&amp;source=geekhut+dot+org+Chock+Full+of+Geeky+Goodness&amp;summary=So%20it%20is%20time%20to%20check%20out%20Zend%20Framework%20seeing%20how%20powerful%20everyone%20says%20it%20is.%20Setup%20is%20a%20bit%20annoying%20in%20comparison%20to%20other%20%22funner%22%20frameworks%20so%20I%20am%20going%20to%20document%20my%20findings%20as%20I%20learn.%20Here%27s%20a%20guide%20to%20getting%20ZF%20working%20on%20your%20%2Anix%20" title="LinkedIn"><img src="http://geekhut.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="Pownce"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="Pownce" alt="Pownce" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fgeekhut.org%2F2010%2F04%2Fsetting-up-zend-framework%2F&amp;t=Setting%20Up%20Zend%20Framework" title="MySpace"><img src="http://geekhut.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://geekhut.org/2010/04/setting-up-zend-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Migrating Zimbra Accounts</title>
		<link>http://geekhut.org/2009/07/migrating-zimbra-accounts/</link>
		<comments>http://geekhut.org/2009/07/migrating-zimbra-accounts/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 16:39:35 +0000</pubDate>
		<dc:creator>aster1sk</dc:creator>
				<category><![CDATA[Notes]]></category>
		<category><![CDATA[geekhut dot org]]></category>
		<category><![CDATA[Boxes]]></category>
		<category><![CDATA[Centos]]></category>
		<category><![CDATA[Dag]]></category>
		<category><![CDATA[Dependencies]]></category>
		<category><![CDATA[Email Accounts]]></category>
		<category><![CDATA[Friend Randy]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Hosts]]></category>
		<category><![CDATA[Imap]]></category>
		<category><![CDATA[Old Server]]></category>
		<category><![CDATA[Randy Powell]]></category>
		<category><![CDATA[Repository]]></category>
		<category><![CDATA[Response Issues]]></category>
		<category><![CDATA[Server Response]]></category>
		<category><![CDATA[Sync]]></category>
		<category><![CDATA[Vps]]></category>

		<guid isPermaLink="false">http://geekhut.org/?p=696</guid>
		<description><![CDATA[You may or may not have noticed some uptime / server response issues with geekhut &#8211; this is because we have moved!  Our friend Randy Powell at GSMCall has graciously donated several powerful VPS boxes for geekhut, rappiddev and enumplus (among others) and we could not be happier.  Since I was so pleased with this [...]]]></description>
			<content:encoded><![CDATA[<p>You may or may not have noticed some uptime / server response issues with geekhut &#8211; this is because we have moved!  Our friend Randy Powell at GSMCall has graciously donated several powerful VPS boxes for geekhut, rappiddev and enumplus (among others) and we could not be happier.  Since I was so pleased with this service Randy and I came to an agreement to host all of our clients on a similar VPS box complete with a User Panel I have been tirelessly working on for a few weeks now.</p>
<p>One of the biggest problems switching hosts is migrating email accounts, luckily we use Zimbra and it was extremely simple &#8211; this is how I did it :</p>
<blockquote>
<p style="padding-left: 30px;">imapsync &#8211;nosyncacls &#8211;subscribe &#8211;syncinternaldates &#8211;host1 old.server.tld &#8211;user1 user@domain.tld &#8211;password1 password &#8211;host2 new.server.tld &#8211;user2 user@domain.tld &#8211;password2 password</p>
</blockquote>
<p>IMAP Sync is a wonderful application that can easily be installed on RHEL5 / CentOS using the DAG repository (just google &#8220;DAG&#8221;).  There are three or four Perl dependencies to get it working however once you have everything installed you are ready to import.</p>
<p>This is more or less a note for my own records &#8211; hopefully you will find it useful as well.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgeekhut.org%2F2009%2F07%2Fmigrating-zimbra-accounts%2F&amp;title=Migrating%20Zimbra%20Accounts&amp;bodytext=You%20may%20or%20may%20not%20have%20noticed%20some%20uptime%20%2F%20server%20response%20issues%20with%20geekhut%20-%20this%20is%20because%20we%20have%20moved%21%20%C2%A0Our%20friend%20Randy%20Powell%20at%20GSMCall%20has%20graciously%20donated%20several%20powerful%20VPS%20boxes%20for%20geekhut%2C%20rappiddev%20and%20enumplus%20%28among%20other" title="Digg"><img src="http://geekhut.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fgeekhut.org%2F2009%2F07%2Fmigrating-zimbra-accounts%2F&amp;title=Migrating%20Zimbra%20Accounts&amp;notes=You%20may%20or%20may%20not%20have%20noticed%20some%20uptime%20%2F%20server%20response%20issues%20with%20geekhut%20-%20this%20is%20because%20we%20have%20moved%21%20%C2%A0Our%20friend%20Randy%20Powell%20at%20GSMCall%20has%20graciously%20donated%20several%20powerful%20VPS%20boxes%20for%20geekhut%2C%20rappiddev%20and%20enumplus%20%28among%20other" title="del.icio.us"><img src="http://geekhut.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgeekhut.org%2F2009%2F07%2Fmigrating-zimbra-accounts%2F&amp;t=Migrating%20Zimbra%20Accounts" title="Facebook"><img src="http://geekhut.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fgeekhut.org%2F2009%2F07%2Fmigrating-zimbra-accounts%2F&amp;h=Migrating%20Zimbra%20Accounts" title="NewsVine"><img src="http://geekhut.org/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fgeekhut.org%2F2009%2F07%2Fmigrating-zimbra-accounts%2F&amp;title=Migrating%20Zimbra%20Accounts" title="Reddit"><img src="http://geekhut.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgeekhut.org%2F2009%2F07%2Fmigrating-zimbra-accounts%2F&amp;title=Migrating%20Zimbra%20Accounts" title="StumbleUpon"><img src="http://geekhut.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="YahooMyWeb"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fgeekhut.org%2F2009%2F07%2Fmigrating-zimbra-accounts%2F&amp;title=Migrating%20Zimbra%20Accounts&amp;annotation=You%20may%20or%20may%20not%20have%20noticed%20some%20uptime%20%2F%20server%20response%20issues%20with%20geekhut%20-%20this%20is%20because%20we%20have%20moved%21%20%C2%A0Our%20friend%20Randy%20Powell%20at%20GSMCall%20has%20graciously%20donated%20several%20powerful%20VPS%20boxes%20for%20geekhut%2C%20rappiddev%20and%20enumplus%20%28among%20other" title="Google Bookmarks"><img src="http://geekhut.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fgeekhut.org%2F2009%2F07%2Fmigrating-zimbra-accounts%2F&amp;submitHeadline=Migrating%20Zimbra%20Accounts&amp;submitSummary=You%20may%20or%20may%20not%20have%20noticed%20some%20uptime%20%2F%20server%20response%20issues%20with%20geekhut%20-%20this%20is%20because%20we%20have%20moved%21%20%C2%A0Our%20friend%20Randy%20Powell%20at%20GSMCall%20has%20graciously%20donated%20several%20powerful%20VPS%20boxes%20for%20geekhut%2C%20rappiddev%20and%20enumplus%20%28among%20other&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://geekhut.org/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fgeekhut.org%2F2009%2F07%2Fmigrating-zimbra-accounts%2F&amp;title=Migrating%20Zimbra%20Accounts" title="Live"><img src="http://geekhut.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fgeekhut.org%2F2009%2F07%2Fmigrating-zimbra-accounts%2F&amp;title=Migrating%20Zimbra%20Accounts&amp;source=geekhut+dot+org+Chock+Full+of+Geeky+Goodness&amp;summary=You%20may%20or%20may%20not%20have%20noticed%20some%20uptime%20%2F%20server%20response%20issues%20with%20geekhut%20-%20this%20is%20because%20we%20have%20moved%21%20%C2%A0Our%20friend%20Randy%20Powell%20at%20GSMCall%20has%20graciously%20donated%20several%20powerful%20VPS%20boxes%20for%20geekhut%2C%20rappiddev%20and%20enumplus%20%28among%20other" title="LinkedIn"><img src="http://geekhut.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="Pownce"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="Pownce" alt="Pownce" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fgeekhut.org%2F2009%2F07%2Fmigrating-zimbra-accounts%2F&amp;t=Migrating%20Zimbra%20Accounts" title="MySpace"><img src="http://geekhut.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://geekhut.org/2009/07/migrating-zimbra-accounts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>!important is important!</title>
		<link>http://geekhut.org/2009/06/important-is-important/</link>
		<comments>http://geekhut.org/2009/06/important-is-important/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 11:24:10 +0000</pubDate>
		<dc:creator>aster1sk</dc:creator>
				<category><![CDATA[Notes]]></category>
		<category><![CDATA[geekhut dot org]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Div]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Internet Browsers]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Mind Games]]></category>
		<category><![CDATA[No Doubt]]></category>
		<category><![CDATA[Pixels]]></category>
		<category><![CDATA[Play Games]]></category>
		<category><![CDATA[Saught]]></category>
		<category><![CDATA[Stylesheets]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://geekhut.org/?p=476</guid>
		<description><![CDATA[I have been up all night working on this template for a local business and have been running into some major issues with IE6 (what else is new?).  I have used !important in the past but not as heavily as for this project, sure learned a lot. For those who don&#8217;t know &#8211; creating stylesheets [...]]]></description>
			<content:encoded><![CDATA[<p>I have been up all night working on this template for a local business and have been running into some major issues with IE6 (what else is new?).  I have used !important in the past but not as heavily as for this project, sure learned a lot.</p>
<p>For those who don&#8217;t know &#8211; creating stylesheets that render identically in both Internet Explorer and <em>Good</em> browsers is a saught after talent.  I could get into a whole mess about how yucky it is working with IE but instead you can Google it yourself, someone else has no doubt already written about this much better than I can.</p>
<p>A quick explanation of !important is as follows :</p>
<p>Firefox renders it, Internet Explorer doesn&#8217;t.  For Example :</p>
<p>margin-left:10px !important;</p>
<p>margin-left:5px;</p>
<p>Firefox will push whatever div over 10 pixels while Internet Explorer will get confused, skip the line and render the 5px margin.</p>
<p>It is important to put !important before any other &#8220;contradicting&#8221; statements as it could play mind games and mess you up something awful.</p>
<p>Take a look at the in-progress template and tell me what you think&#8230;</p>
<p><a title="RX Balance" href="http://rxbalance.enumplus.org" target="_blank">http://rxbalance.enumplus.org</a></p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgeekhut.org%2F2009%2F06%2Fimportant-is-important%2F&amp;title=%21important%20is%20important%21&amp;bodytext=I%20have%20been%20up%20all%20night%20working%20on%20this%20template%20for%20a%20local%20business%20and%20have%20been%20running%20into%20some%20major%20issues%20with%20IE6%20%28what%20else%20is%20new%3F%29.%C2%A0%20I%20have%20used%20%21important%20in%20the%20past%20but%20not%20as%20heavily%20as%20for%20this%20project%2C%20sure%20learned%20a%20lot.%0D%0A%0D%0AFor%20" title="Digg"><img src="http://geekhut.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fgeekhut.org%2F2009%2F06%2Fimportant-is-important%2F&amp;title=%21important%20is%20important%21&amp;notes=I%20have%20been%20up%20all%20night%20working%20on%20this%20template%20for%20a%20local%20business%20and%20have%20been%20running%20into%20some%20major%20issues%20with%20IE6%20%28what%20else%20is%20new%3F%29.%C2%A0%20I%20have%20used%20%21important%20in%20the%20past%20but%20not%20as%20heavily%20as%20for%20this%20project%2C%20sure%20learned%20a%20lot.%0D%0A%0D%0AFor%20" title="del.icio.us"><img src="http://geekhut.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgeekhut.org%2F2009%2F06%2Fimportant-is-important%2F&amp;t=%21important%20is%20important%21" title="Facebook"><img src="http://geekhut.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fgeekhut.org%2F2009%2F06%2Fimportant-is-important%2F&amp;h=%21important%20is%20important%21" title="NewsVine"><img src="http://geekhut.org/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fgeekhut.org%2F2009%2F06%2Fimportant-is-important%2F&amp;title=%21important%20is%20important%21" title="Reddit"><img src="http://geekhut.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgeekhut.org%2F2009%2F06%2Fimportant-is-important%2F&amp;title=%21important%20is%20important%21" title="StumbleUpon"><img src="http://geekhut.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="YahooMyWeb"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fgeekhut.org%2F2009%2F06%2Fimportant-is-important%2F&amp;title=%21important%20is%20important%21&amp;annotation=I%20have%20been%20up%20all%20night%20working%20on%20this%20template%20for%20a%20local%20business%20and%20have%20been%20running%20into%20some%20major%20issues%20with%20IE6%20%28what%20else%20is%20new%3F%29.%C2%A0%20I%20have%20used%20%21important%20in%20the%20past%20but%20not%20as%20heavily%20as%20for%20this%20project%2C%20sure%20learned%20a%20lot.%0D%0A%0D%0AFor%20" title="Google Bookmarks"><img src="http://geekhut.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fgeekhut.org%2F2009%2F06%2Fimportant-is-important%2F&amp;submitHeadline=%21important%20is%20important%21&amp;submitSummary=I%20have%20been%20up%20all%20night%20working%20on%20this%20template%20for%20a%20local%20business%20and%20have%20been%20running%20into%20some%20major%20issues%20with%20IE6%20%28what%20else%20is%20new%3F%29.%C2%A0%20I%20have%20used%20%21important%20in%20the%20past%20but%20not%20as%20heavily%20as%20for%20this%20project%2C%20sure%20learned%20a%20lot.%0D%0A%0D%0AFor%20&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://geekhut.org/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fgeekhut.org%2F2009%2F06%2Fimportant-is-important%2F&amp;title=%21important%20is%20important%21" title="Live"><img src="http://geekhut.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fgeekhut.org%2F2009%2F06%2Fimportant-is-important%2F&amp;title=%21important%20is%20important%21&amp;source=geekhut+dot+org+Chock+Full+of+Geeky+Goodness&amp;summary=I%20have%20been%20up%20all%20night%20working%20on%20this%20template%20for%20a%20local%20business%20and%20have%20been%20running%20into%20some%20major%20issues%20with%20IE6%20%28what%20else%20is%20new%3F%29.%C2%A0%20I%20have%20used%20%21important%20in%20the%20past%20but%20not%20as%20heavily%20as%20for%20this%20project%2C%20sure%20learned%20a%20lot.%0D%0A%0D%0AFor%20" title="LinkedIn"><img src="http://geekhut.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="Pownce"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="Pownce" alt="Pownce" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fgeekhut.org%2F2009%2F06%2Fimportant-is-important%2F&amp;t=%21important%20is%20important%21" title="MySpace"><img src="http://geekhut.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://geekhut.org/2009/06/important-is-important/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Duty Free Kicks Ass</title>
		<link>http://geekhut.org/2009/06/duty-free-kicks-ass/</link>
		<comments>http://geekhut.org/2009/06/duty-free-kicks-ass/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 22:08:25 +0000</pubDate>
		<dc:creator>aster1sk</dc:creator>
				<category><![CDATA[Notes]]></category>
		<category><![CDATA[geekhut dot org]]></category>
		<category><![CDATA[Booze]]></category>
		<category><![CDATA[Carton]]></category>
		<category><![CDATA[Cheap]]></category>
		<category><![CDATA[Cigarettes]]></category>
		<category><![CDATA[Crying Shame]]></category>
		<category><![CDATA[Denver Colorado]]></category>
		<category><![CDATA[Duty Free]]></category>
		<category><![CDATA[Free Ass]]></category>
		<category><![CDATA[Free Kicks]]></category>
		<category><![CDATA[Friday Night]]></category>
		<category><![CDATA[Health Conference]]></category>
		<category><![CDATA[Insurance]]></category>
		<category><![CDATA[Kicks Ass]]></category>
		<category><![CDATA[Mai Tai]]></category>
		<category><![CDATA[Marlboro Reds]]></category>
		<category><![CDATA[Mixer]]></category>
		<category><![CDATA[Natural Health]]></category>
		<category><![CDATA[Niagara Falls]]></category>
		<category><![CDATA[Rockies]]></category>
		<category><![CDATA[Sale]]></category>
		<category><![CDATA[Wednesday Evening]]></category>

		<guid isPermaLink="false">http://geekhut.org/?p=473</guid>
		<description><![CDATA[I have been in Denver Colorado for the past week at a natural health conference (I was the IT insurance in case something broke).  It turned out quite well, though I never got to see the rockies &#8211; a crying shame!  Anyway all was not lost, I was able to hit up the duty free [...]]]></description>
			<content:encoded><![CDATA[<p><a accesskey="v" href="http://photos.geekhut.org/images/uncategorized/things/img_0889.JPG"><img class="photos-large" src="http://photos.geekhut.org/thumbs/lrg-653-img_0889.JPG" alt="" /></a></p>
<p>I have been in Denver Colorado for the past week at a natural health conference (I was the IT insurance in case something broke).  It turned out quite well, though I never got to see the rockies &#8211; a crying shame!  Anyway all was not lost, I was able to hit up the duty free in Niagara Falls late Wednesday evening for some wicked deals!</p>
<p>I ended up walking away with a 40oz bottle of rum (with Mai Tai mixer) and a carton of delicious Marlboro Reds for $50 on the dot &#8211; I couldn&#8217;t be happier!  Anyway it is Friday night and time to get full use of my purchases.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgeekhut.org%2F2009%2F06%2Fduty-free-kicks-ass%2F&amp;title=Duty%20Free%20Kicks%20Ass&amp;bodytext=%0D%0A%0D%0AI%20have%20been%20in%20Denver%20Colorado%20for%20the%20past%20week%20at%20a%20natural%20health%20conference%20%28I%20was%20the%20IT%20insurance%20in%20case%20something%20broke%29.%20%C2%A0It%20turned%20out%20quite%20well%2C%20though%20I%20never%20got%20to%20see%20the%20rockies%20-%20a%20crying%20shame%21%20%C2%A0Anyway%20all%20was%20not%20lost%2C%20I%20was" title="Digg"><img src="http://geekhut.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fgeekhut.org%2F2009%2F06%2Fduty-free-kicks-ass%2F&amp;title=Duty%20Free%20Kicks%20Ass&amp;notes=%0D%0A%0D%0AI%20have%20been%20in%20Denver%20Colorado%20for%20the%20past%20week%20at%20a%20natural%20health%20conference%20%28I%20was%20the%20IT%20insurance%20in%20case%20something%20broke%29.%20%C2%A0It%20turned%20out%20quite%20well%2C%20though%20I%20never%20got%20to%20see%20the%20rockies%20-%20a%20crying%20shame%21%20%C2%A0Anyway%20all%20was%20not%20lost%2C%20I%20was" title="del.icio.us"><img src="http://geekhut.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgeekhut.org%2F2009%2F06%2Fduty-free-kicks-ass%2F&amp;t=Duty%20Free%20Kicks%20Ass" title="Facebook"><img src="http://geekhut.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fgeekhut.org%2F2009%2F06%2Fduty-free-kicks-ass%2F&amp;h=Duty%20Free%20Kicks%20Ass" title="NewsVine"><img src="http://geekhut.org/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fgeekhut.org%2F2009%2F06%2Fduty-free-kicks-ass%2F&amp;title=Duty%20Free%20Kicks%20Ass" title="Reddit"><img src="http://geekhut.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgeekhut.org%2F2009%2F06%2Fduty-free-kicks-ass%2F&amp;title=Duty%20Free%20Kicks%20Ass" title="StumbleUpon"><img src="http://geekhut.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="YahooMyWeb"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fgeekhut.org%2F2009%2F06%2Fduty-free-kicks-ass%2F&amp;title=Duty%20Free%20Kicks%20Ass&amp;annotation=%0D%0A%0D%0AI%20have%20been%20in%20Denver%20Colorado%20for%20the%20past%20week%20at%20a%20natural%20health%20conference%20%28I%20was%20the%20IT%20insurance%20in%20case%20something%20broke%29.%20%C2%A0It%20turned%20out%20quite%20well%2C%20though%20I%20never%20got%20to%20see%20the%20rockies%20-%20a%20crying%20shame%21%20%C2%A0Anyway%20all%20was%20not%20lost%2C%20I%20was" title="Google Bookmarks"><img src="http://geekhut.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fgeekhut.org%2F2009%2F06%2Fduty-free-kicks-ass%2F&amp;submitHeadline=Duty%20Free%20Kicks%20Ass&amp;submitSummary=%0D%0A%0D%0AI%20have%20been%20in%20Denver%20Colorado%20for%20the%20past%20week%20at%20a%20natural%20health%20conference%20%28I%20was%20the%20IT%20insurance%20in%20case%20something%20broke%29.%20%C2%A0It%20turned%20out%20quite%20well%2C%20though%20I%20never%20got%20to%20see%20the%20rockies%20-%20a%20crying%20shame%21%20%C2%A0Anyway%20all%20was%20not%20lost%2C%20I%20was&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://geekhut.org/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fgeekhut.org%2F2009%2F06%2Fduty-free-kicks-ass%2F&amp;title=Duty%20Free%20Kicks%20Ass" title="Live"><img src="http://geekhut.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fgeekhut.org%2F2009%2F06%2Fduty-free-kicks-ass%2F&amp;title=Duty%20Free%20Kicks%20Ass&amp;source=geekhut+dot+org+Chock+Full+of+Geeky+Goodness&amp;summary=%0D%0A%0D%0AI%20have%20been%20in%20Denver%20Colorado%20for%20the%20past%20week%20at%20a%20natural%20health%20conference%20%28I%20was%20the%20IT%20insurance%20in%20case%20something%20broke%29.%20%C2%A0It%20turned%20out%20quite%20well%2C%20though%20I%20never%20got%20to%20see%20the%20rockies%20-%20a%20crying%20shame%21%20%C2%A0Anyway%20all%20was%20not%20lost%2C%20I%20was" title="LinkedIn"><img src="http://geekhut.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="Pownce"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="Pownce" alt="Pownce" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fgeekhut.org%2F2009%2F06%2Fduty-free-kicks-ass%2F&amp;t=Duty%20Free%20Kicks%20Ass" title="MySpace"><img src="http://geekhut.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://geekhut.org/2009/06/duty-free-kicks-ass/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing MySQL debian-sys-maint Issues</title>
		<link>http://geekhut.org/2009/02/fixing-mysql-debian-sys-maint-issues/</link>
		<comments>http://geekhut.org/2009/02/fixing-mysql-debian-sys-maint-issues/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 17:51:46 +0000</pubDate>
		<dc:creator>aster1sk</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[geekhut dot org]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://geekhut.org/?p=215</guid>
		<description><![CDATA[Let&#8217;s say you just dumped an entire database and are looking to import it elsewhere, possibly on a new host.  As soon as you install mysql-server on the new box a new password is set for user debian-sys-maint. # mysqldump &#8211;all-databases -u root -p  &#62; dump.sql Once you import this database on the new host [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s say you just dumped an entire database and are looking to import it elsewhere, possibly on a new host.  As soon as you install mysql-server on the new box a new password is set for user debian-sys-maint.</p>
<p># mysqldump &#8211;all-databases -u root -p  &gt; dump.sql</p>
<p>Once you import this database on the new host there is a good chance you will not be able to restart mysql as the debian-sys-maint user account passwords will not match.</p>
<p># mysql -u root -p &lt; dump.sql</p>
<p>So the easiest way to fix this issue is to :</p>
<p>web:~# cat /etc/mysql/debian.cnf </p>
<p># Automatically generated for Debian scripts. DO NOT TOUCH!</p>
<p>[client]</p>
<p>host     = localhost</p>
<p>user     = debian-sys-maint</p>
<p>password = PASSWORD</p>
<p>socket   = /var/run/mysqld/mysqld.sock</p>
<p>[mysql_upgrade]</p>
<p>user     = debian-sys-maint</p>
<p>password = PASSWORD</p>
<p>socket   = /var/run/mysqld/mysqld.sock</p>
<p>basedir  = /usr</p>
<div>Open PHPMyAdmin and click Privileges, then click &#8220;Edit&#8221; on the debian-sys-maint user.  There you can update the password found in the file above (PASSWORD).</div>
<div>Sure hope this helped &#8211; I know how much time I have spent in the past looking for an easy solution.</div>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgeekhut.org%2F2009%2F02%2Ffixing-mysql-debian-sys-maint-issues%2F&amp;title=Fixing%20MySQL%20debian-sys-maint%20Issues&amp;bodytext=Let%27s%20say%20you%20just%20dumped%20an%20entire%20database%20and%20are%20looking%20to%20import%20it%20elsewhere%2C%20possibly%20on%20a%20new%20host.%20%C2%A0As%20soon%20as%20you%20install%20mysql-server%20on%20the%20new%20box%20a%20new%20password%20is%20set%20for%20user%20debian-sys-maint.%0D%0A%0D%0A%23%20mysqldump%20--all-databases%20-u%20root%20" title="Digg"><img src="http://geekhut.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fgeekhut.org%2F2009%2F02%2Ffixing-mysql-debian-sys-maint-issues%2F&amp;title=Fixing%20MySQL%20debian-sys-maint%20Issues&amp;notes=Let%27s%20say%20you%20just%20dumped%20an%20entire%20database%20and%20are%20looking%20to%20import%20it%20elsewhere%2C%20possibly%20on%20a%20new%20host.%20%C2%A0As%20soon%20as%20you%20install%20mysql-server%20on%20the%20new%20box%20a%20new%20password%20is%20set%20for%20user%20debian-sys-maint.%0D%0A%0D%0A%23%20mysqldump%20--all-databases%20-u%20root%20" title="del.icio.us"><img src="http://geekhut.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgeekhut.org%2F2009%2F02%2Ffixing-mysql-debian-sys-maint-issues%2F&amp;t=Fixing%20MySQL%20debian-sys-maint%20Issues" title="Facebook"><img src="http://geekhut.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fgeekhut.org%2F2009%2F02%2Ffixing-mysql-debian-sys-maint-issues%2F&amp;h=Fixing%20MySQL%20debian-sys-maint%20Issues" title="NewsVine"><img src="http://geekhut.org/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fgeekhut.org%2F2009%2F02%2Ffixing-mysql-debian-sys-maint-issues%2F&amp;title=Fixing%20MySQL%20debian-sys-maint%20Issues" title="Reddit"><img src="http://geekhut.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgeekhut.org%2F2009%2F02%2Ffixing-mysql-debian-sys-maint-issues%2F&amp;title=Fixing%20MySQL%20debian-sys-maint%20Issues" title="StumbleUpon"><img src="http://geekhut.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="YahooMyWeb"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fgeekhut.org%2F2009%2F02%2Ffixing-mysql-debian-sys-maint-issues%2F&amp;title=Fixing%20MySQL%20debian-sys-maint%20Issues&amp;annotation=Let%27s%20say%20you%20just%20dumped%20an%20entire%20database%20and%20are%20looking%20to%20import%20it%20elsewhere%2C%20possibly%20on%20a%20new%20host.%20%C2%A0As%20soon%20as%20you%20install%20mysql-server%20on%20the%20new%20box%20a%20new%20password%20is%20set%20for%20user%20debian-sys-maint.%0D%0A%0D%0A%23%20mysqldump%20--all-databases%20-u%20root%20" title="Google Bookmarks"><img src="http://geekhut.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fgeekhut.org%2F2009%2F02%2Ffixing-mysql-debian-sys-maint-issues%2F&amp;submitHeadline=Fixing%20MySQL%20debian-sys-maint%20Issues&amp;submitSummary=Let%27s%20say%20you%20just%20dumped%20an%20entire%20database%20and%20are%20looking%20to%20import%20it%20elsewhere%2C%20possibly%20on%20a%20new%20host.%20%C2%A0As%20soon%20as%20you%20install%20mysql-server%20on%20the%20new%20box%20a%20new%20password%20is%20set%20for%20user%20debian-sys-maint.%0D%0A%0D%0A%23%20mysqldump%20--all-databases%20-u%20root%20&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://geekhut.org/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fgeekhut.org%2F2009%2F02%2Ffixing-mysql-debian-sys-maint-issues%2F&amp;title=Fixing%20MySQL%20debian-sys-maint%20Issues" title="Live"><img src="http://geekhut.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fgeekhut.org%2F2009%2F02%2Ffixing-mysql-debian-sys-maint-issues%2F&amp;title=Fixing%20MySQL%20debian-sys-maint%20Issues&amp;source=geekhut+dot+org+Chock+Full+of+Geeky+Goodness&amp;summary=Let%27s%20say%20you%20just%20dumped%20an%20entire%20database%20and%20are%20looking%20to%20import%20it%20elsewhere%2C%20possibly%20on%20a%20new%20host.%20%C2%A0As%20soon%20as%20you%20install%20mysql-server%20on%20the%20new%20box%20a%20new%20password%20is%20set%20for%20user%20debian-sys-maint.%0D%0A%0D%0A%23%20mysqldump%20--all-databases%20-u%20root%20" title="LinkedIn"><img src="http://geekhut.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="Pownce"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="Pownce" alt="Pownce" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fgeekhut.org%2F2009%2F02%2Ffixing-mysql-debian-sys-maint-issues%2F&amp;t=Fixing%20MySQL%20debian-sys-maint%20Issues" title="MySpace"><img src="http://geekhut.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://geekhut.org/2009/02/fixing-mysql-debian-sys-maint-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trouble Starting VMWare UI?</title>
		<link>http://geekhut.org/2009/02/trouble-starting-vmware-ui/</link>
		<comments>http://geekhut.org/2009/02/trouble-starting-vmware-ui/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 12:04:41 +0000</pubDate>
		<dc:creator>aster1sk</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[VMWare]]></category>
		<category><![CDATA[geekhut dot org]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://geekhut.org/?p=213</guid>
		<description><![CDATA[So often after installing VMWare on my Debian based hosts I get this error : desktop gregory # vmware /usr/lib/vmware/bin/vmware: /usr/lib/vmware/lib/libgcc_s.so.1/libgcc_s.so.1: version `GCC_3.4&#8242; not found (required by /usr/lib/libcairo.so.2) /usr/lib/vmware/bin/vmware: /usr/lib/vmware/lib/libgcc_s.so.1/libgcc_s.so.1: version `GCC_4.2.0&#8242; not found (required by /usr/lib/libstdc++.so.6) /usr/lib/vmware/bin/vmware: /usr/lib/vmware/lib/libgcc_s.so.1/libgcc_s.so.1: version `GCC_3.4&#8242; not found (required by /usr/lib/libcairo.so.2) /usr/lib/vmware/bin/vmware: /usr/lib/vmware/lib/libgcc_s.so.1/libgcc_s.so.1: version `GCC_4.2.0&#8242; not found (required by /usr/lib/libstdc++.so.6) [...]]]></description>
			<content:encoded><![CDATA[<p>So often after installing VMWare on my Debian based hosts I get this error :</p>
<p>desktop gregory # vmware<br />
/usr/lib/vmware/bin/vmware: /usr/lib/vmware/lib/libgcc_s.so.1/libgcc_s.so.1: version `GCC_3.4&#8242; not found (required by /usr/lib/libcairo.so.2)<br />
/usr/lib/vmware/bin/vmware: /usr/lib/vmware/lib/libgcc_s.so.1/libgcc_s.so.1: version `GCC_4.2.0&#8242; not found (required by /usr/lib/libstdc++.so.6)<br />
/usr/lib/vmware/bin/vmware: /usr/lib/vmware/lib/libgcc_s.so.1/libgcc_s.so.1: version `GCC_3.4&#8242; not found (required by /usr/lib/libcairo.so.2)<br />
/usr/lib/vmware/bin/vmware: /usr/lib/vmware/lib/libgcc_s.so.1/libgcc_s.so.1: version `GCC_4.2.0&#8242; not found (required by /usr/lib/libstdc++.so.6)<br />
/usr/lib/vmware/bin/vmware: /usr/lib/vmware/lib/libgcc_s.so.1/libgcc_s.so.1: version `GCC_3.4&#8242; not found (required by /usr/lib/libcairo.so.2)<br />
/usr/lib/vmware/bin/vmware: /usr/lib/vmware/lib/libgcc_s.so.1/libgcc_s.so.1: version `GCC_4.2.0&#8242; not found (required by /usr/lib/libstdc++.so.6)</p>
<p><strong>You have probably seen this yourself if running any Ubuntu flavored distributions, heres my fix :</strong></p>
<p>desktop gregory # rm /usr/lib/vmware/lib/libgcc_s.so.1/libgcc_s.so.1<br />
desktop gregory # ln -s /usr/lib/gcc/i486-linux-gnu/4.2/libgcc_s.so /usr/lib/vmware/lib/libgcc_s.so.1/libgcc_s.so.1</p>
<p>Now I wil never forget&#8230;</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgeekhut.org%2F2009%2F02%2Ftrouble-starting-vmware-ui%2F&amp;title=Trouble%20Starting%20VMWare%20UI%3F&amp;bodytext=So%20often%20after%20installing%20VMWare%20on%20my%20Debian%20based%20hosts%20I%20get%20this%20error%20%3A%0D%0A%0D%0Adesktop%20gregory%20%23%20vmware%0D%0A%2Fusr%2Flib%2Fvmware%2Fbin%2Fvmware%3A%20%2Fusr%2Flib%2Fvmware%2Flib%2Flibgcc_s.so.1%2Flibgcc_s.so.1%3A%20version%20%60GCC_3.4%27%20not%20found%20%28required%20by%20%2Fusr%2Flib%2Flibcairo.so.2%29%0D%0A%2F" title="Digg"><img src="http://geekhut.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fgeekhut.org%2F2009%2F02%2Ftrouble-starting-vmware-ui%2F&amp;title=Trouble%20Starting%20VMWare%20UI%3F&amp;notes=So%20often%20after%20installing%20VMWare%20on%20my%20Debian%20based%20hosts%20I%20get%20this%20error%20%3A%0D%0A%0D%0Adesktop%20gregory%20%23%20vmware%0D%0A%2Fusr%2Flib%2Fvmware%2Fbin%2Fvmware%3A%20%2Fusr%2Flib%2Fvmware%2Flib%2Flibgcc_s.so.1%2Flibgcc_s.so.1%3A%20version%20%60GCC_3.4%27%20not%20found%20%28required%20by%20%2Fusr%2Flib%2Flibcairo.so.2%29%0D%0A%2F" title="del.icio.us"><img src="http://geekhut.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgeekhut.org%2F2009%2F02%2Ftrouble-starting-vmware-ui%2F&amp;t=Trouble%20Starting%20VMWare%20UI%3F" title="Facebook"><img src="http://geekhut.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fgeekhut.org%2F2009%2F02%2Ftrouble-starting-vmware-ui%2F&amp;h=Trouble%20Starting%20VMWare%20UI%3F" title="NewsVine"><img src="http://geekhut.org/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fgeekhut.org%2F2009%2F02%2Ftrouble-starting-vmware-ui%2F&amp;title=Trouble%20Starting%20VMWare%20UI%3F" title="Reddit"><img src="http://geekhut.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgeekhut.org%2F2009%2F02%2Ftrouble-starting-vmware-ui%2F&amp;title=Trouble%20Starting%20VMWare%20UI%3F" title="StumbleUpon"><img src="http://geekhut.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="YahooMyWeb"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fgeekhut.org%2F2009%2F02%2Ftrouble-starting-vmware-ui%2F&amp;title=Trouble%20Starting%20VMWare%20UI%3F&amp;annotation=So%20often%20after%20installing%20VMWare%20on%20my%20Debian%20based%20hosts%20I%20get%20this%20error%20%3A%0D%0A%0D%0Adesktop%20gregory%20%23%20vmware%0D%0A%2Fusr%2Flib%2Fvmware%2Fbin%2Fvmware%3A%20%2Fusr%2Flib%2Fvmware%2Flib%2Flibgcc_s.so.1%2Flibgcc_s.so.1%3A%20version%20%60GCC_3.4%27%20not%20found%20%28required%20by%20%2Fusr%2Flib%2Flibcairo.so.2%29%0D%0A%2F" title="Google Bookmarks"><img src="http://geekhut.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fgeekhut.org%2F2009%2F02%2Ftrouble-starting-vmware-ui%2F&amp;submitHeadline=Trouble%20Starting%20VMWare%20UI%3F&amp;submitSummary=So%20often%20after%20installing%20VMWare%20on%20my%20Debian%20based%20hosts%20I%20get%20this%20error%20%3A%0D%0A%0D%0Adesktop%20gregory%20%23%20vmware%0D%0A%2Fusr%2Flib%2Fvmware%2Fbin%2Fvmware%3A%20%2Fusr%2Flib%2Fvmware%2Flib%2Flibgcc_s.so.1%2Flibgcc_s.so.1%3A%20version%20%60GCC_3.4%27%20not%20found%20%28required%20by%20%2Fusr%2Flib%2Flibcairo.so.2%29%0D%0A%2F&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://geekhut.org/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fgeekhut.org%2F2009%2F02%2Ftrouble-starting-vmware-ui%2F&amp;title=Trouble%20Starting%20VMWare%20UI%3F" title="Live"><img src="http://geekhut.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fgeekhut.org%2F2009%2F02%2Ftrouble-starting-vmware-ui%2F&amp;title=Trouble%20Starting%20VMWare%20UI%3F&amp;source=geekhut+dot+org+Chock+Full+of+Geeky+Goodness&amp;summary=So%20often%20after%20installing%20VMWare%20on%20my%20Debian%20based%20hosts%20I%20get%20this%20error%20%3A%0D%0A%0D%0Adesktop%20gregory%20%23%20vmware%0D%0A%2Fusr%2Flib%2Fvmware%2Fbin%2Fvmware%3A%20%2Fusr%2Flib%2Fvmware%2Flib%2Flibgcc_s.so.1%2Flibgcc_s.so.1%3A%20version%20%60GCC_3.4%27%20not%20found%20%28required%20by%20%2Fusr%2Flib%2Flibcairo.so.2%29%0D%0A%2F" title="LinkedIn"><img src="http://geekhut.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="Pownce"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="Pownce" alt="Pownce" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fgeekhut.org%2F2009%2F02%2Ftrouble-starting-vmware-ui%2F&amp;t=Trouble%20Starting%20VMWare%20UI%3F" title="MySpace"><img src="http://geekhut.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://geekhut.org/2009/02/trouble-starting-vmware-ui/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Time Machine Over LAN &#8211; Linux AFP</title>
		<link>http://geekhut.org/2009/01/time-machine-over-lan-linux-afp/</link>
		<comments>http://geekhut.org/2009/01/time-machine-over-lan-linux-afp/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 10:17:57 +0000</pubDate>
		<dc:creator>aster1sk</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[geekhut dot org]]></category>
		<category><![CDATA[LAN]]></category>
		<category><![CDATA[Linux AFP]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Time Machine]]></category>

		<guid isPermaLink="false">http://geekhut.org/?p=193</guid>
		<description><![CDATA[I decided to upgrade the old hard drive in my XBOX as it was thrashing exceptionally loud so I sacrificed my Time Machine drive (320GB) and now I wish I didn&#8217;t.  I had to find a quick solution to getting Time Machine backing up once again as my Mac is my primary business device and [...]]]></description>
			<content:encoded><![CDATA[<p>I decided to upgrade the old hard drive in my XBOX as it was thrashing exceptionally loud so I sacrificed my Time Machine drive (320GB) and now I wish I didn&#8217;t.  I had to find a quick solution to getting Time Machine backing up once again as my Mac is my primary business device and I can not afford to lose anything.</p>
<p>My TIBook only has USB 1.1 (12mbps) so it was VERY nice to be able to use ethernet (100mbps) to backup my data.</p>
<p>It was good to see other people were interested in doing this as well &#8211; I am sure it is old news but here are the two tutorials I followed :</p>
<p>This wonderful blogger has created a super easy to follow tutorial for setting up your NAS to support AFP (netatalk)</p>
<p><a href="http://www.kremalicious.com/2008/06/ubuntu-as-mac-file-server-and-time-machine-volume/">HowTo: Make Ubuntu A Perfect Mac File Server And Time Machine Volume [Update6]</a></p>
<p>This one shows you how to easily create a sparseimage to transfer over to your NAS if you continually get &#8220;could not create disc&#8221; errors :</p>
<p><a href="http://www.readynas.com/?p=253">Making Time Machine work with the ReadyNAS</a></p>
<p>Time Machine is an amazing application and adding a network layer on top just increases it&#8217;s value.  I hope you find these links as useful as I did.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgeekhut.org%2F2009%2F01%2Ftime-machine-over-lan-linux-afp%2F&amp;title=Time%20Machine%20Over%20LAN%20-%20Linux%20AFP&amp;bodytext=I%20decided%20to%20upgrade%20the%20old%20hard%20drive%20in%20my%20XBOX%20as%20it%20was%20thrashing%20exceptionally%20loud%20so%20I%20sacrificed%20my%20Time%20Machine%20drive%20%28320GB%29%20and%20now%20I%20wish%20I%20didn%27t.%20%C2%A0I%20had%20to%20find%20a%20quick%20solution%20to%20getting%20Time%20Machine%20backing%20up%20once%20again%20as%20my%20Mac%20" title="Digg"><img src="http://geekhut.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fgeekhut.org%2F2009%2F01%2Ftime-machine-over-lan-linux-afp%2F&amp;title=Time%20Machine%20Over%20LAN%20-%20Linux%20AFP&amp;notes=I%20decided%20to%20upgrade%20the%20old%20hard%20drive%20in%20my%20XBOX%20as%20it%20was%20thrashing%20exceptionally%20loud%20so%20I%20sacrificed%20my%20Time%20Machine%20drive%20%28320GB%29%20and%20now%20I%20wish%20I%20didn%27t.%20%C2%A0I%20had%20to%20find%20a%20quick%20solution%20to%20getting%20Time%20Machine%20backing%20up%20once%20again%20as%20my%20Mac%20" title="del.icio.us"><img src="http://geekhut.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgeekhut.org%2F2009%2F01%2Ftime-machine-over-lan-linux-afp%2F&amp;t=Time%20Machine%20Over%20LAN%20-%20Linux%20AFP" title="Facebook"><img src="http://geekhut.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fgeekhut.org%2F2009%2F01%2Ftime-machine-over-lan-linux-afp%2F&amp;h=Time%20Machine%20Over%20LAN%20-%20Linux%20AFP" title="NewsVine"><img src="http://geekhut.org/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fgeekhut.org%2F2009%2F01%2Ftime-machine-over-lan-linux-afp%2F&amp;title=Time%20Machine%20Over%20LAN%20-%20Linux%20AFP" title="Reddit"><img src="http://geekhut.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgeekhut.org%2F2009%2F01%2Ftime-machine-over-lan-linux-afp%2F&amp;title=Time%20Machine%20Over%20LAN%20-%20Linux%20AFP" title="StumbleUpon"><img src="http://geekhut.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="YahooMyWeb"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fgeekhut.org%2F2009%2F01%2Ftime-machine-over-lan-linux-afp%2F&amp;title=Time%20Machine%20Over%20LAN%20-%20Linux%20AFP&amp;annotation=I%20decided%20to%20upgrade%20the%20old%20hard%20drive%20in%20my%20XBOX%20as%20it%20was%20thrashing%20exceptionally%20loud%20so%20I%20sacrificed%20my%20Time%20Machine%20drive%20%28320GB%29%20and%20now%20I%20wish%20I%20didn%27t.%20%C2%A0I%20had%20to%20find%20a%20quick%20solution%20to%20getting%20Time%20Machine%20backing%20up%20once%20again%20as%20my%20Mac%20" title="Google Bookmarks"><img src="http://geekhut.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fgeekhut.org%2F2009%2F01%2Ftime-machine-over-lan-linux-afp%2F&amp;submitHeadline=Time%20Machine%20Over%20LAN%20-%20Linux%20AFP&amp;submitSummary=I%20decided%20to%20upgrade%20the%20old%20hard%20drive%20in%20my%20XBOX%20as%20it%20was%20thrashing%20exceptionally%20loud%20so%20I%20sacrificed%20my%20Time%20Machine%20drive%20%28320GB%29%20and%20now%20I%20wish%20I%20didn%27t.%20%C2%A0I%20had%20to%20find%20a%20quick%20solution%20to%20getting%20Time%20Machine%20backing%20up%20once%20again%20as%20my%20Mac%20&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://geekhut.org/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fgeekhut.org%2F2009%2F01%2Ftime-machine-over-lan-linux-afp%2F&amp;title=Time%20Machine%20Over%20LAN%20-%20Linux%20AFP" title="Live"><img src="http://geekhut.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fgeekhut.org%2F2009%2F01%2Ftime-machine-over-lan-linux-afp%2F&amp;title=Time%20Machine%20Over%20LAN%20-%20Linux%20AFP&amp;source=geekhut+dot+org+Chock+Full+of+Geeky+Goodness&amp;summary=I%20decided%20to%20upgrade%20the%20old%20hard%20drive%20in%20my%20XBOX%20as%20it%20was%20thrashing%20exceptionally%20loud%20so%20I%20sacrificed%20my%20Time%20Machine%20drive%20%28320GB%29%20and%20now%20I%20wish%20I%20didn%27t.%20%C2%A0I%20had%20to%20find%20a%20quick%20solution%20to%20getting%20Time%20Machine%20backing%20up%20once%20again%20as%20my%20Mac%20" title="LinkedIn"><img src="http://geekhut.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="Pownce"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="Pownce" alt="Pownce" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fgeekhut.org%2F2009%2F01%2Ftime-machine-over-lan-linux-afp%2F&amp;t=Time%20Machine%20Over%20LAN%20-%20Linux%20AFP" title="MySpace"><img src="http://geekhut.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://geekhut.org/2009/01/time-machine-over-lan-linux-afp/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SSH Without A Password</title>
		<link>http://geekhut.org/2009/01/ssh-without-a-password/</link>
		<comments>http://geekhut.org/2009/01/ssh-without-a-password/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 10:38:15 +0000</pubDate>
		<dc:creator>aster1sk</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[geekhut dot org]]></category>
		<category><![CDATA[Keys]]></category>
		<category><![CDATA[Password]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://geekhut.org/?p=172</guid>
		<description><![CDATA[I was getting a bit annoyed configuring so many boxes and having to retype passwords a million times I decided to import my public RSA key and be done with it. Here is a quick how to so you can do the same : On the Client (the box you will be using to connect) [...]]]></description>
			<content:encoded><![CDATA[<p>I was getting a bit annoyed configuring so many boxes and having to retype passwords a million times I decided to import my public RSA key and be done with it.<br />
Here is a quick how to so you can do the same :</p>
<p><strong>On the Client (the box you will be using to connect)</strong><br />
<code><br />
$ ssh-keygen -t dsa -f ~/.ssh/id_dsa -P ''<br />
</code><br />
<strong>On the Server (copy ~/.ssh/id_dsa.pub to this machine)</strong><br />
<code><br />
$ cat id_dsa.pub &gt;&gt; ~/.ssh/authorized_keys<br />
$ chmod 600 ~/.ssh/authorized_keys<br />
</code><br />
<strong>Back on the Client</strong><br />
<code><br />
$ ssh -i ~/.ssh/id_dsa root@&lt;hostname&gt;<br />
</code><br />
<em>Where hostname is the SSH server.</em><br />
You may be asked to put in your password one last time, I do not believe I had to myself.<br />
Now you can just ssh &lt;username&gt;@&lt;hostname&gt; and voila, you are in!</p>
<p>You can imagine how much time this saves me whilst administering ~ 10 boxes.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgeekhut.org%2F2009%2F01%2Fssh-without-a-password%2F&amp;title=SSH%20Without%20A%20Password&amp;bodytext=I%20was%20getting%20a%20bit%20annoyed%20configuring%20so%20many%20boxes%20and%20having%20to%20retype%20passwords%20a%20million%20times%20I%20decided%20to%20import%20my%20public%20RSA%20key%20and%20be%20done%20with%20it.%0D%0AHere%20is%20a%20quick%20how%20to%20so%20you%20can%20do%20the%20same%20%3A%0D%0A%0D%0AOn%20the%20Client%20%28the%20box%20you%20will%20be%20usi" title="Digg"><img src="http://geekhut.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fgeekhut.org%2F2009%2F01%2Fssh-without-a-password%2F&amp;title=SSH%20Without%20A%20Password&amp;notes=I%20was%20getting%20a%20bit%20annoyed%20configuring%20so%20many%20boxes%20and%20having%20to%20retype%20passwords%20a%20million%20times%20I%20decided%20to%20import%20my%20public%20RSA%20key%20and%20be%20done%20with%20it.%0D%0AHere%20is%20a%20quick%20how%20to%20so%20you%20can%20do%20the%20same%20%3A%0D%0A%0D%0AOn%20the%20Client%20%28the%20box%20you%20will%20be%20usi" title="del.icio.us"><img src="http://geekhut.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgeekhut.org%2F2009%2F01%2Fssh-without-a-password%2F&amp;t=SSH%20Without%20A%20Password" title="Facebook"><img src="http://geekhut.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fgeekhut.org%2F2009%2F01%2Fssh-without-a-password%2F&amp;h=SSH%20Without%20A%20Password" title="NewsVine"><img src="http://geekhut.org/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fgeekhut.org%2F2009%2F01%2Fssh-without-a-password%2F&amp;title=SSH%20Without%20A%20Password" title="Reddit"><img src="http://geekhut.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgeekhut.org%2F2009%2F01%2Fssh-without-a-password%2F&amp;title=SSH%20Without%20A%20Password" title="StumbleUpon"><img src="http://geekhut.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="YahooMyWeb"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fgeekhut.org%2F2009%2F01%2Fssh-without-a-password%2F&amp;title=SSH%20Without%20A%20Password&amp;annotation=I%20was%20getting%20a%20bit%20annoyed%20configuring%20so%20many%20boxes%20and%20having%20to%20retype%20passwords%20a%20million%20times%20I%20decided%20to%20import%20my%20public%20RSA%20key%20and%20be%20done%20with%20it.%0D%0AHere%20is%20a%20quick%20how%20to%20so%20you%20can%20do%20the%20same%20%3A%0D%0A%0D%0AOn%20the%20Client%20%28the%20box%20you%20will%20be%20usi" title="Google Bookmarks"><img src="http://geekhut.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fgeekhut.org%2F2009%2F01%2Fssh-without-a-password%2F&amp;submitHeadline=SSH%20Without%20A%20Password&amp;submitSummary=I%20was%20getting%20a%20bit%20annoyed%20configuring%20so%20many%20boxes%20and%20having%20to%20retype%20passwords%20a%20million%20times%20I%20decided%20to%20import%20my%20public%20RSA%20key%20and%20be%20done%20with%20it.%0D%0AHere%20is%20a%20quick%20how%20to%20so%20you%20can%20do%20the%20same%20%3A%0D%0A%0D%0AOn%20the%20Client%20%28the%20box%20you%20will%20be%20usi&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://geekhut.org/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fgeekhut.org%2F2009%2F01%2Fssh-without-a-password%2F&amp;title=SSH%20Without%20A%20Password" title="Live"><img src="http://geekhut.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fgeekhut.org%2F2009%2F01%2Fssh-without-a-password%2F&amp;title=SSH%20Without%20A%20Password&amp;source=geekhut+dot+org+Chock+Full+of+Geeky+Goodness&amp;summary=I%20was%20getting%20a%20bit%20annoyed%20configuring%20so%20many%20boxes%20and%20having%20to%20retype%20passwords%20a%20million%20times%20I%20decided%20to%20import%20my%20public%20RSA%20key%20and%20be%20done%20with%20it.%0D%0AHere%20is%20a%20quick%20how%20to%20so%20you%20can%20do%20the%20same%20%3A%0D%0A%0D%0AOn%20the%20Client%20%28the%20box%20you%20will%20be%20usi" title="LinkedIn"><img src="http://geekhut.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="Pownce"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="Pownce" alt="Pownce" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fgeekhut.org%2F2009%2F01%2Fssh-without-a-password%2F&amp;t=SSH%20Without%20A%20Password" title="MySpace"><img src="http://geekhut.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://geekhut.org/2009/01/ssh-without-a-password/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My GXP2000 is Bricked</title>
		<link>http://geekhut.org/2008/12/bricked-gxp/</link>
		<comments>http://geekhut.org/2008/12/bricked-gxp/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 07:30:07 +0000</pubDate>
		<dc:creator>aster1sk</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[geekhut dot org]]></category>
		<category><![CDATA[Brick]]></category>
		<category><![CDATA[Grandstream]]></category>
		<category><![CDATA[GXP2000]]></category>
		<category><![CDATA[IP Phone]]></category>

		<guid isPermaLink="false">http://geekhut.org/?p=126</guid>
		<description><![CDATA[Actually it isn&#8217;t anymore. I am sure that somewhere hidden deep inside the tubes one may find the solution (not me), I didn&#8217;t feel like wasting that much time &#8211; instead I just called Grandstream. If you are suffering the loss of a beloved GXP as well, do not fret &#8211; geekhut has the fix! [...]]]></description>
			<content:encoded><![CDATA[<p>Actually it isn&#8217;t anymore. I am sure that somewhere hidden deep inside the tubes one may find the solution (not me), I didn&#8217;t feel like wasting that much time &#8211; instead I just called Grandstream.</p>
<div class="wp-caption aligncenter" style="width: 380px"><img title="Brick!" src="http://joephoto.typepad.com/photos/uncategorized/2007/05/20/blog_brick.jpg" alt="A Brick" width="370" height="277" /><p class="wp-caption-text">A Brick (I probably do not have permission to use this)</p></div>
<p>If you are suffering the loss of a beloved GXP as well, do not fret &#8211; geekhut has the fix!</p>
<p><strong>What you need :</strong></p>
<ul>
<li> A router that is not currently serving you data (I used m0n0wall on an old p3) &lt;= we will discuss that later.</li>
<li><a title="Grandstream Firmware" href="http://www.grandstream.com/firmware.html" target="_blank">Firmware</a></li>
<li>Sailor hat, for absolutely no reason</li>
</ul>
<p><strong>Procedure</strong></p>
<ol>
<li>Plug your router in as you normally would, internet access is not needed at this time.</li>
<li>Plug your phone into any one of the LAN ports</li>
<li>Configure your router&#8217;s IP to : <strong>168.75.215.1</strong>, Subnet : 255.255.255.0</li>
<li>Plug a computer into the LAN port of the Phone (it didn&#8217;t seem to work for some reason when I plugged it into the switch&#8230;)</li>
<li>Install a TFTP server on that computer, Windows sure has a lot of shitty ones &#8211; instead I temporarily loaded my tftp.plist (I think i used -f) on my Mac.</li>
<li>Unzip the Firmware you downloaded earlier into your tftpboot directory, Leopard is funky and puts it under /private/tftpboot.</li>
<li>Statically set your Computer (the one plugged in behind the phone with TFTPD) to IP : <strong>168.75.215.188</strong> (same subnet as above.)</li>
<li>Cross your fingers, power cycle your phone &#8211; read the screen carefully.</li>
</ol>
<p>* Things are <strong>strong</strong> because they matter.</p>
<p>I hope you now have a working phone again, you can send your love in comments.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgeekhut.org%2F2008%2F12%2Fbricked-gxp%2F&amp;title=My%20GXP2000%20is%20Bricked&amp;bodytext=Actually%20it%20isn%27t%20anymore.%20I%20am%20sure%20that%20somewhere%20hidden%20deep%20inside%20the%20tubes%20one%20may%20find%20the%20solution%20%28not%20me%29%2C%20I%20didn%27t%20feel%20like%20wasting%20that%20much%20time%20-%20instead%20I%20just%20called%20Grandstream.%0D%0A%0D%0A%0D%0A%0D%0AIf%20you%20are%20suffering%20the%20loss%20of%20a%20beloved%20GXP%20" title="Digg"><img src="http://geekhut.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fgeekhut.org%2F2008%2F12%2Fbricked-gxp%2F&amp;title=My%20GXP2000%20is%20Bricked&amp;notes=Actually%20it%20isn%27t%20anymore.%20I%20am%20sure%20that%20somewhere%20hidden%20deep%20inside%20the%20tubes%20one%20may%20find%20the%20solution%20%28not%20me%29%2C%20I%20didn%27t%20feel%20like%20wasting%20that%20much%20time%20-%20instead%20I%20just%20called%20Grandstream.%0D%0A%0D%0A%0D%0A%0D%0AIf%20you%20are%20suffering%20the%20loss%20of%20a%20beloved%20GXP%20" title="del.icio.us"><img src="http://geekhut.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgeekhut.org%2F2008%2F12%2Fbricked-gxp%2F&amp;t=My%20GXP2000%20is%20Bricked" title="Facebook"><img src="http://geekhut.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fgeekhut.org%2F2008%2F12%2Fbricked-gxp%2F&amp;h=My%20GXP2000%20is%20Bricked" title="NewsVine"><img src="http://geekhut.org/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fgeekhut.org%2F2008%2F12%2Fbricked-gxp%2F&amp;title=My%20GXP2000%20is%20Bricked" title="Reddit"><img src="http://geekhut.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgeekhut.org%2F2008%2F12%2Fbricked-gxp%2F&amp;title=My%20GXP2000%20is%20Bricked" title="StumbleUpon"><img src="http://geekhut.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="YahooMyWeb"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fgeekhut.org%2F2008%2F12%2Fbricked-gxp%2F&amp;title=My%20GXP2000%20is%20Bricked&amp;annotation=Actually%20it%20isn%27t%20anymore.%20I%20am%20sure%20that%20somewhere%20hidden%20deep%20inside%20the%20tubes%20one%20may%20find%20the%20solution%20%28not%20me%29%2C%20I%20didn%27t%20feel%20like%20wasting%20that%20much%20time%20-%20instead%20I%20just%20called%20Grandstream.%0D%0A%0D%0A%0D%0A%0D%0AIf%20you%20are%20suffering%20the%20loss%20of%20a%20beloved%20GXP%20" title="Google Bookmarks"><img src="http://geekhut.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fgeekhut.org%2F2008%2F12%2Fbricked-gxp%2F&amp;submitHeadline=My%20GXP2000%20is%20Bricked&amp;submitSummary=Actually%20it%20isn%27t%20anymore.%20I%20am%20sure%20that%20somewhere%20hidden%20deep%20inside%20the%20tubes%20one%20may%20find%20the%20solution%20%28not%20me%29%2C%20I%20didn%27t%20feel%20like%20wasting%20that%20much%20time%20-%20instead%20I%20just%20called%20Grandstream.%0D%0A%0D%0A%0D%0A%0D%0AIf%20you%20are%20suffering%20the%20loss%20of%20a%20beloved%20GXP%20&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://geekhut.org/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fgeekhut.org%2F2008%2F12%2Fbricked-gxp%2F&amp;title=My%20GXP2000%20is%20Bricked" title="Live"><img src="http://geekhut.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fgeekhut.org%2F2008%2F12%2Fbricked-gxp%2F&amp;title=My%20GXP2000%20is%20Bricked&amp;source=geekhut+dot+org+Chock+Full+of+Geeky+Goodness&amp;summary=Actually%20it%20isn%27t%20anymore.%20I%20am%20sure%20that%20somewhere%20hidden%20deep%20inside%20the%20tubes%20one%20may%20find%20the%20solution%20%28not%20me%29%2C%20I%20didn%27t%20feel%20like%20wasting%20that%20much%20time%20-%20instead%20I%20just%20called%20Grandstream.%0D%0A%0D%0A%0D%0A%0D%0AIf%20you%20are%20suffering%20the%20loss%20of%20a%20beloved%20GXP%20" title="LinkedIn"><img src="http://geekhut.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="Pownce"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="Pownce" alt="Pownce" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fgeekhut.org%2F2008%2F12%2Fbricked-gxp%2F&amp;t=My%20GXP2000%20is%20Bricked" title="MySpace"><img src="http://geekhut.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://geekhut.org/2008/12/bricked-gxp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asterisk Wake Up Call</title>
		<link>http://geekhut.org/2008/12/asterisk-wake-up-call/</link>
		<comments>http://geekhut.org/2008/12/asterisk-wake-up-call/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 18:31:35 +0000</pubDate>
		<dc:creator>aster1sk</dc:creator>
				<category><![CDATA[Asterisk]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[geekhut dot org]]></category>
		<category><![CDATA[Modules]]></category>

		<guid isPermaLink="false">http://geekhut.org/?p=121</guid>
		<description><![CDATA[Back in the day Trixbox bundled an awesome wake up call AGI script however it was removed as the developers thought it to be too much clout. I find this feature to be super useful especially considering my memory is crap, I use it for everything. There are a million how-to&#8217;s out there for those [...]]]></description>
			<content:encoded><![CDATA[<p>Back in the day Trixbox bundled an awesome wake up call AGI script however it was removed as the developers thought it to be too much clout.  I find this feature to be super useful especially considering my memory is crap, I use it for everything.</p>
<p>There are a million how-to&#8217;s out there for those who love dicking around writing your own script, but I don&#8217;t have time for that &#8211; that&#8217;s why I use <a title="WakeUp Module" href="http://www.freepbx.org/trac/browser/contributed_modules/release/wakeup-1.0.tgz?rev=5065&amp;format=raw">this</a>.  I have lost this link so many times, it is definitely worth bookmarking.</p>
<p>All you have to do is upload the tgz to your local modules in FreePBX and then click install / enable &#8211; no coding, no headaches plus it works very well.</p>
<p>There is one step not documented and it pisses a lot of people off &#8211; so if you plan to use this script, run the following as root :<br />
<code><br />
mkdir /tmp/wakeup<br />
chmod 777 -R /tmp/wakeup<br />
chown asterisk:asterisk -R /tmp/wakeup<br />
</code><br />
You now have a hotel quality wake up module &#8211; just dial *62.</p>
<p>Enjoy!</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fgeekhut.org%2F2008%2F12%2Fasterisk-wake-up-call%2F&amp;title=Asterisk%20Wake%20Up%20Call&amp;bodytext=Back%20in%20the%20day%20Trixbox%20bundled%20an%20awesome%20wake%20up%20call%20AGI%20script%20however%20it%20was%20removed%20as%20the%20developers%20thought%20it%20to%20be%20too%20much%20clout.%20%20I%20find%20this%20feature%20to%20be%20super%20useful%20especially%20considering%20my%20memory%20is%20crap%2C%20I%20use%20it%20for%20everything.%0D%0A%0D" title="Digg"><img src="http://geekhut.org/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fgeekhut.org%2F2008%2F12%2Fasterisk-wake-up-call%2F&amp;title=Asterisk%20Wake%20Up%20Call&amp;notes=Back%20in%20the%20day%20Trixbox%20bundled%20an%20awesome%20wake%20up%20call%20AGI%20script%20however%20it%20was%20removed%20as%20the%20developers%20thought%20it%20to%20be%20too%20much%20clout.%20%20I%20find%20this%20feature%20to%20be%20super%20useful%20especially%20considering%20my%20memory%20is%20crap%2C%20I%20use%20it%20for%20everything.%0D%0A%0D" title="del.icio.us"><img src="http://geekhut.org/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgeekhut.org%2F2008%2F12%2Fasterisk-wake-up-call%2F&amp;t=Asterisk%20Wake%20Up%20Call" title="Facebook"><img src="http://geekhut.org/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fgeekhut.org%2F2008%2F12%2Fasterisk-wake-up-call%2F&amp;h=Asterisk%20Wake%20Up%20Call" title="NewsVine"><img src="http://geekhut.org/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fgeekhut.org%2F2008%2F12%2Fasterisk-wake-up-call%2F&amp;title=Asterisk%20Wake%20Up%20Call" title="Reddit"><img src="http://geekhut.org/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fgeekhut.org%2F2008%2F12%2Fasterisk-wake-up-call%2F&amp;title=Asterisk%20Wake%20Up%20Call" title="StumbleUpon"><img src="http://geekhut.org/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="YahooMyWeb"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fgeekhut.org%2F2008%2F12%2Fasterisk-wake-up-call%2F&amp;title=Asterisk%20Wake%20Up%20Call&amp;annotation=Back%20in%20the%20day%20Trixbox%20bundled%20an%20awesome%20wake%20up%20call%20AGI%20script%20however%20it%20was%20removed%20as%20the%20developers%20thought%20it%20to%20be%20too%20much%20clout.%20%20I%20find%20this%20feature%20to%20be%20super%20useful%20especially%20considering%20my%20memory%20is%20crap%2C%20I%20use%20it%20for%20everything.%0D%0A%0D" title="Google Bookmarks"><img src="http://geekhut.org/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fgeekhut.org%2F2008%2F12%2Fasterisk-wake-up-call%2F&amp;submitHeadline=Asterisk%20Wake%20Up%20Call&amp;submitSummary=Back%20in%20the%20day%20Trixbox%20bundled%20an%20awesome%20wake%20up%20call%20AGI%20script%20however%20it%20was%20removed%20as%20the%20developers%20thought%20it%20to%20be%20too%20much%20clout.%20%20I%20find%20this%20feature%20to%20be%20super%20useful%20especially%20considering%20my%20memory%20is%20crap%2C%20I%20use%20it%20for%20everything.%0D%0A%0D&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://geekhut.org/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fgeekhut.org%2F2008%2F12%2Fasterisk-wake-up-call%2F&amp;title=Asterisk%20Wake%20Up%20Call" title="Live"><img src="http://geekhut.org/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fgeekhut.org%2F2008%2F12%2Fasterisk-wake-up-call%2F&amp;title=Asterisk%20Wake%20Up%20Call&amp;source=geekhut+dot+org+Chock+Full+of+Geeky+Goodness&amp;summary=Back%20in%20the%20day%20Trixbox%20bundled%20an%20awesome%20wake%20up%20call%20AGI%20script%20however%20it%20was%20removed%20as%20the%20developers%20thought%20it%20to%20be%20too%20much%20clout.%20%20I%20find%20this%20feature%20to%20be%20super%20useful%20especially%20considering%20my%20memory%20is%20crap%2C%20I%20use%20it%20for%20everything.%0D%0A%0D" title="LinkedIn"><img src="http://geekhut.org/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="Pownce"><img src="http://geekhut.org/wp-content/plugins/sociable/images/" title="Pownce" alt="Pownce" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fgeekhut.org%2F2008%2F12%2Fasterisk-wake-up-call%2F&amp;t=Asterisk%20Wake%20Up%20Call" title="MySpace"><img src="http://geekhut.org/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://geekhut.org/2008/12/asterisk-wake-up-call/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
