<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Technology, Music and Everything Else...</title>
	<atom:link href="http://timabbott.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://timabbott.com</link>
	<description>by Tim Abbott CCNA, CCNP</description>
	<lastBuildDate>Wed, 11 Aug 2010 23:21:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on Force 802.11n on Airport Extreme&#8230; by Tim</title>
		<link>http://timabbott.com/networking/force-802-11n-on-airport-extreme/comment-page-1/#comment-803</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Wed, 11 Aug 2010 23:21:37 +0000</pubDate>
		<guid isPermaLink="false">http://timabbott.com/?p=1151#comment-803</guid>
		<description>Anders,

Thanks for visiting.  I&#039;m glad I could help!

-Tim</description>
		<content:encoded><![CDATA[<p>Anders,</p>
<p>Thanks for visiting.  I&#8217;m glad I could help!</p>
<p>-Tim</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Force 802.11n on Airport Extreme&#8230; by Anders</title>
		<link>http://timabbott.com/networking/force-802-11n-on-airport-extreme/comment-page-1/#comment-802</link>
		<dc:creator>Anders</dc:creator>
		<pubDate>Wed, 11 Aug 2010 23:05:08 +0000</pubDate>
		<guid isPermaLink="false">http://timabbott.com/?p=1151#comment-802</guid>
		<description>Thanks for sharing this! Just what I was looking for.</description>
		<content:encoded><![CDATA[<p>Thanks for sharing this! Just what I was looking for.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mac OS X 10.6.4 breaks iChat&#8230;Again&#8230; by Tim</title>
		<link>http://timabbott.com/computers/mac-os-x-10-6-4-breaks-ichat-again/comment-page-1/#comment-792</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Mon, 09 Aug 2010 23:47:49 +0000</pubDate>
		<guid isPermaLink="false">http://timabbott.com/?p=1069#comment-792</guid>
		<description>Hi Ryan,

Thanks for visiting.  If you would have read &lt;a href=&quot;http://timabbott.com/computers/ichat-after-10-6-3-update/&quot; rel=&quot;nofollow&quot;&gt;my other post&lt;/a&gt; about the the 10.6.3 update, you would have learned that the solution didn&#039;t come directly from me, but from the user community at Apple&#039;s forums.  I get a lot of search hits regarding this issue and I thank you for sharing a better way to resolve it.

-Tim</description>
		<content:encoded><![CDATA[<p>Hi Ryan,</p>
<p>Thanks for visiting.  If you would have read <a href="http://timabbott.com/computers/ichat-after-10-6-3-update/" rel="nofollow">my other post</a> about the the 10.6.3 update, you would have learned that the solution didn&#8217;t come directly from me, but from the user community at Apple&#8217;s forums.  I get a lot of search hits regarding this issue and I thank you for sharing a better way to resolve it.</p>
<p>-Tim</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mac OS X 10.6.4 breaks iChat&#8230;Again&#8230; by Ryan</title>
		<link>http://timabbott.com/computers/mac-os-x-10-6-4-breaks-ichat-again/comment-page-1/#comment-791</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Mon, 09 Aug 2010 12:51:23 +0000</pubDate>
		<guid isPermaLink="false">http://timabbott.com/?p=1069#comment-791</guid>
		<description>Sorry man, but this is some pretty bonehead advice to just put out there as the first thing to do without telling people just what it does.  You do realize that the jabberd2.db is the database that (among other things) holds your users rosters right? After just deleting this file everyone will have to reauthorize their contacts, not fun with 10 users...miserable with any more than 10.

A much better way to fix this (and was the way to do it with 10.6.3 by all other OS X admins I know) is as follows...

$sudo serveradmin stop jabber
$sudo mv /var/jabberd/sqlite/jabberd2.db /var/jabberd/sqlite/jabberd2.dbOLD
$sqlite3 /var/jabberd/sqlite/jabberd2.dbOLD .dump &gt; /var/jabberd/sqlite/jabberd2.dump
$sudo sqlite3 /var/jabberd/sqlite/jabberd2.db &lt; /var/jabberd/sqlite/jabberd2.dump
$sudo chown _jabber /var/jabberd/sqlite/jabberd2.db
$sudo serveradmin start jabber

On all the SLS I manage the issue has been corruption of the sqlite db, and doing a dump strips out the bad data.  You will notice that the newly created jabberd2.db file is a few kb smaller than the original.</description>
		<content:encoded><![CDATA[<p>Sorry man, but this is some pretty bonehead advice to just put out there as the first thing to do without telling people just what it does.  You do realize that the jabberd2.db is the database that (among other things) holds your users rosters right? After just deleting this file everyone will have to reauthorize their contacts, not fun with 10 users&#8230;miserable with any more than 10.</p>
<p>A much better way to fix this (and was the way to do it with 10.6.3 by all other OS X admins I know) is as follows&#8230;</p>
<p>$sudo serveradmin stop jabber<br />
$sudo mv /var/jabberd/sqlite/jabberd2.db /var/jabberd/sqlite/jabberd2.dbOLD<br />
$sqlite3 /var/jabberd/sqlite/jabberd2.dbOLD .dump &gt; /var/jabberd/sqlite/jabberd2.dump<br />
$sudo sqlite3 /var/jabberd/sqlite/jabberd2.db &lt; /var/jabberd/sqlite/jabberd2.dump<br />
$sudo chown _jabber /var/jabberd/sqlite/jabberd2.db<br />
$sudo serveradmin start jabber</p>
<p>On all the SLS I manage the issue has been corruption of the sqlite db, and doing a dump strips out the bad data.  You will notice that the newly created jabberd2.db file is a few kb smaller than the original.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic Multipoint VPNs&#8230; by Tim</title>
		<link>http://timabbott.com/networking/dynamic-multipoint-vpns/comment-page-1/#comment-389</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Tue, 06 Jul 2010 11:30:22 +0000</pubDate>
		<guid isPermaLink="false">http://timabbott.com/?p=979#comment-389</guid>
		<description>Thanks!  It&#039;s a great solution that scales well.  What I&#039;ve also found is that the DMVPN hub will be able to detect if the spoke is being NAT&#039;ed.  You can see what I&#039;m referring to using the &quot;sh dmvpn&quot; command.

-Tim</description>
		<content:encoded><![CDATA[<p>Thanks!  It&#8217;s a great solution that scales well.  What I&#8217;ve also found is that the DMVPN hub will be able to detect if the spoke is being NAT&#8217;ed.  You can see what I&#8217;m referring to using the &#8220;sh dmvpn&#8221; command.</p>
<p>-Tim</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic Multipoint VPNs&#8230; by harishchandra Yadav</title>
		<link>http://timabbott.com/networking/dynamic-multipoint-vpns/comment-page-1/#comment-388</link>
		<dc:creator>harishchandra Yadav</dc:creator>
		<pubDate>Tue, 06 Jul 2010 09:50:23 +0000</pubDate>
		<guid isPermaLink="false">http://timabbott.com/?p=979#comment-388</guid>
		<description>Good explanantion of DMVPN. I am aplnning to setup DMVPn with NAT and dual ISP at Hub and Spoke end for redundancy.</description>
		<content:encoded><![CDATA[<p>Good explanantion of DMVPN. I am aplnning to setup DMVPn with NAT and dual ISP at Hub and Spoke end for redundancy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Chopin&#8217;s Prelude No. 4, Op. 28&#8230; by Tim</title>
		<link>http://timabbott.com/music/chopins-prelude-no-4-op-28/comment-page-1/#comment-240</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Mon, 21 Jun 2010 20:48:10 +0000</pubDate>
		<guid isPermaLink="false">http://timabbott.com/?p=803#comment-240</guid>
		<description>It just takes practice and the desire to learn.  I&#039;ve only been playing for 8 months.

-Tim</description>
		<content:encoded><![CDATA[<p>It just takes practice and the desire to learn.  I&#8217;ve only been playing for 8 months.</p>
<p>-Tim</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Chopin&#8217;s Prelude No. 4, Op. 28&#8230; by James Beith</title>
		<link>http://timabbott.com/music/chopins-prelude-no-4-op-28/comment-page-1/#comment-239</link>
		<dc:creator>James Beith</dc:creator>
		<pubDate>Mon, 21 Jun 2010 20:14:36 +0000</pubDate>
		<guid isPermaLink="false">http://timabbott.com/?p=803#comment-239</guid>
		<description>Makes me wish I could play piano.</description>
		<content:encoded><![CDATA[<p>Makes me wish I could play piano.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My iPad Review&#8230; by Tim</title>
		<link>http://timabbott.com/computers/my-ipad-review/comment-page-1/#comment-193</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Fri, 23 Apr 2010 18:23:47 +0000</pubDate>
		<guid isPermaLink="false">http://timabbott.com/?p=752#comment-193</guid>
		<description>I installed the iPad version and played with it a bit.  I must say it is really cool to be able to make notations on the iPad.  Out of curiosity, I downloaded the trial version of MusicReader for Mac to try out the iPad/Mac sync feature.  Unfortunately,  the iPad MusicReader app crashes after a successful sync across the network.  I tried multiple times to no avail.  It&#039;s a good concept though.

-Tim</description>
		<content:encoded><![CDATA[<p>I installed the iPad version and played with it a bit.  I must say it is really cool to be able to make notations on the iPad.  Out of curiosity, I downloaded the trial version of MusicReader for Mac to try out the iPad/Mac sync feature.  Unfortunately,  the iPad MusicReader app crashes after a successful sync across the network.  I tried multiple times to no avail.  It&#8217;s a good concept though.</p>
<p>-Tim</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My iPad Review&#8230; by Tim</title>
		<link>http://timabbott.com/computers/my-ipad-review/comment-page-1/#comment-191</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Thu, 22 Apr 2010 14:08:27 +0000</pubDate>
		<guid isPermaLink="false">http://timabbott.com/?p=752#comment-191</guid>
		<description>Hi Marco,

Thanks for the info.  From what I read on the website, MusicReader sounds like a very cool app for iPad.  One of the things I don&#039;t like about Sheets is that you currently don&#039;t have the ability to add to the library of music the app comes with.  I&#039;m a very big fan of Chopin&#039;s work and some of the pieces I like are missing.  It appears MusicReader has that functionality.

-Tim</description>
		<content:encoded><![CDATA[<p>Hi Marco,</p>
<p>Thanks for the info.  From what I read on the website, MusicReader sounds like a very cool app for iPad.  One of the things I don&#8217;t like about Sheets is that you currently don&#8217;t have the ability to add to the library of music the app comes with.  I&#8217;m a very big fan of Chopin&#8217;s work and some of the pieces I like are missing.  It appears MusicReader has that functionality.</p>
<p>-Tim</p>
]]></content:encoded>
	</item>
</channel>
</rss>
