<?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>Matthew&#039;s Weblog &#187; Tips and Tricks</title>
	<atom:link href="http://mps.blog.webplumbers.com/category/tips-and-tricks/feed/" rel="self" type="application/rss+xml" />
	<link>http://mps.blog.webplumbers.com</link>
	<description>Technical notes and societal musings</description>
	<lastBuildDate>Sat, 18 Sep 2010 05:09:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Broke a zone with a CNAME at the root</title>
		<link>http://mps.blog.webplumbers.com/2010/01/18/broke-a-zone-with-a-cname-at-the-root/</link>
		<comments>http://mps.blog.webplumbers.com/2010/01/18/broke-a-zone-with-a-cname-at-the-root/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 07:10:17 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://mps.blog.webplumbers.com/?p=404</guid>
		<description><![CDATA[&#8230;which it turns out is illegal.
&#8230;.you can&#8217;t have a CNAME be the same as a zone    name, since a zone has at least an SOA record (and, arguably, at least    one NS record as well), and the CNAME can&#8217;t co-exist with it. Just use    an A [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230;which it turns out <a href="http://www.reedmedia.net/misc/dns/errors.html">is illegal</a>.</p>
<blockquote><p>&#8230;.you can&#8217;t have a CNAME be the same as a zone    name, since a zone has at least an SOA record (and, arguably, at least    one NS record as well), and the CNAME can&#8217;t co-exist with it. Just use    an A record and be happy.</p></blockquote>
<p>and that defeats the purpose of me not having to maintain multiple 2nd level domain name IPs with CNAMEs.  But now I&#8217;m older and wiser&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://mps.blog.webplumbers.com/2010/01/18/broke-a-zone-with-a-cname-at-the-root/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customizing a Wordpress blog</title>
		<link>http://mps.blog.webplumbers.com/2009/08/14/customizing-a-wordpress-blog/</link>
		<comments>http://mps.blog.webplumbers.com/2009/08/14/customizing-a-wordpress-blog/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 05:37:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://mps.blog.webplumbers.com/?p=396</guid>
		<description><![CDATA[So, I finally bit the bullet and customized a blog instance for my wife&#8217;s choirs.  Since I could use widgets, it was OK, but the hypothetical ease and the reality were two separate things.  She wanted to have the main page only show one category of posts, so I had to go searching until I [...]]]></description>
			<content:encoded><![CDATA[<p>So, I finally bit the bullet and customized a blog instance for my wife&#8217;s choirs.  Since I could use widgets, it was OK, but the hypothetical ease and the reality were two separate things.  She wanted to have the main page only show one category of posts, so I had to go searching until I found out you have to <a href="http://wordpress.org/support/topic/233033">edit the index.php in your theme</a>, adding:</p>
<p><code>&lt;?php query_posts ($query_string . '&amp;cat=20'); ?&gt;</code></p>
<p>before The Loop, and then that part worked.  Next, she wanted other categories to show as lists in the sidebar.  There&#8217;s a great plugin called &#8216;<a href="http://picandocodigo.net/programacion/wordpress/list-category-posts-wordpress-plugin-english/">List Category Posts</a>&#8216; that will do that on a page, post, or sidebar&#8230; sort of.  The widget implementation doesn&#8217;t update correctly, and it only allows one instance to be in the sidebar.  Of course, I needed more.  Thankfully, it also respects ShortCode&#8230; but I didn&#8217;t know what the f8#^*$ that was.  After a few quick Googles, I found that you can add shortcode in posts and pages&#8230; wheee!  I wanted it in the sidebar, so then found <a href="http://englishmike.net/2008/07/07/wordpress-quick-tips-3adding-a-shortcode-to-a-sidebar-widget/">a tutorial on how to get shortcode working in the sidebar text widget</a>.  Not bad, you just edit your theme&#8217;s functions.php and insert this line in a safe spot:</p>
<p><code>add_filter('widget_text', 'do_shortcode');</code></p>
<p>Then you add a text widget and it Just Works.  Brilliant.  Far better than completely hacking the theme, which was what I expected would be required.  Bravo, Wordpress!</p>
]]></content:encoded>
			<wfw:commentRss>http://mps.blog.webplumbers.com/2009/08/14/customizing-a-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Documentation I always have to re-find</title>
		<link>http://mps.blog.webplumbers.com/2009/05/11/documentation-i-always-have-to-re-find/</link>
		<comments>http://mps.blog.webplumbers.com/2009/05/11/documentation-i-always-have-to-re-find/#comments</comments>
		<pubDate>Mon, 11 May 2009 20:40:17 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://mps.blog.webplumbers.com/?p=379</guid>
		<description><![CDATA[Using rsync over ssh
Linux, Clocks, and Time
Apache Module mod_rewrite
Apache Virtual Host documentation (version 1.3 doc)
Berkeley Internet Name Domain (BIND): /etc/named.conf
]]></description>
			<content:encoded><![CDATA[<p><a href="http://oreilly.com/pub/h/38"><span class="hdr3">Using rsync over ssh</span></a></p>
<p><a href="http://www.linuxsa.org.au/tips/time.html">Linux, Clocks, and Time</a></p>
<p><a href="http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html">Apache Module mod_rewrite</a></p>
<p><a href="http://httpd.apache.org/docs/1.3/vhosts/">Apache Virtual Host documentation (version 1.3 doc)</a></p>
<p><a href="http://www.redhat.com/docs/manuals/linux/RHL-9-Manual/ref-guide/s1-bind-namedconf.html">Berkeley Internet Name Domain (BIND): /etc/named.conf</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mps.blog.webplumbers.com/2009/05/11/documentation-i-always-have-to-re-find/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Server management tools to consider</title>
		<link>http://mps.blog.webplumbers.com/2009/05/11/server-management-tools-to-consider/</link>
		<comments>http://mps.blog.webplumbers.com/2009/05/11/server-management-tools-to-consider/#comments</comments>
		<pubDate>Mon, 11 May 2009 16:53:00 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://mps.blog.webplumbers.com/?p=377</guid>
		<description><![CDATA[killer monitoring apps [infoworld.com]
slashdot discussion on blinkenlights


Cacti [cacti.net].
Ntop [ntop.org].
Nagios [nagios.org].
MRTG [oetiker.ch].

Sending Apache httpd Logs to Syslog
myqlBind2/iDNS
Capistrano
Comparison of issue tracking systems
New LinuxCOE helps admins customize distros
]]></description>
			<content:encoded><![CDATA[<p><a title="infoworld.com" rel="nofollow" href="http://www.infoworld.com/article/08/11/24/48TC-open-monitoring_1.html">killer monitoring apps</a> [infoworld.com]</p>
<p><a href="http://ask.slashdot.org/article.pl?sid=08/11/26/232206&amp;from=rss">slashdot discussion on blinkenlights<br />
</a></p>
<div class="commentBody">
<div id="comment_body_25905363"><a title="cacti.net" href="http://www.cacti.net/">Cacti</a> [cacti.net].<br />
<a title="ntop.org" href="http://www.ntop.org/">Ntop</a> [ntop.org].<br />
<a title="nagios.org" href="http://www.nagios.org/">Nagios</a> [nagios.org].<br />
<a title="oetiker.ch" href="http://oss.oetiker.ch/mrtg/">MRTG</a> [oetiker.ch].</div>
</div>
<p><a href="http://www.oreillynet.com/pub/a/sysadmin/2006/10/12/httpd-syslog.html">Sending Apache httpd Logs to Syslog</a></p>
<p><a href="http://venus.openisp.net:8000/openisp/mysqlBind">myqlBind2/iDNS</a></p>
<p><a href="http://www.capify.org/getting-started/basics/">Capistrano</a></p>
<p><a href="http://en.wikipedia.org/wiki/Comparison_of_issue_tracking_systems">Comparison of issue tracking systems</a></p>
<p><a href="http://www.linux.com/feature/114335">New LinuxCOE helps admins customize distros</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mps.blog.webplumbers.com/2009/05/11/server-management-tools-to-consider/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mishmash of articles &#8211; Part II</title>
		<link>http://mps.blog.webplumbers.com/2009/05/10/mishmash-of-articles-part-ii/</link>
		<comments>http://mps.blog.webplumbers.com/2009/05/10/mishmash-of-articles-part-ii/#comments</comments>
		<pubDate>Sun, 10 May 2009 19:30:44 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Environment]]></category>
		<category><![CDATA[Family]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://mps.blog.webplumbers.com/?p=353</guid>
		<description><![CDATA[Management Tips: Gen X vs. Gen Y
Ten Ways to Use LinkedIn &#124; Guy Kawasaki

Welcome to Executor
A multi purpose launcher and more advanced and customizable freeware windows run replacement and more&#8230;
Bye-Bye, BPA
BPA/Phthalate-Free Shopping List
Now that we&#8217;re reading lots more about BPA and its low-level bad effects, we&#8217;re figuring out how to get our plastics to be [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogs.payscale.com/content/2007/09/payscale---mana.html">Management Tips: Gen X vs. Gen Y</a></p>
<p><a href="http://blog.linkedin.com/2007/07/25/ten-ways-to-use/">Ten Ways to Use LinkedIn</a> | Guy Kawasaki</p>
<div style="height: 100px">
<h2><a href="http://executor.dk/">Welcome to Executor</a></h2>
<p>A multi purpose launcher and more advanced and customizable freeware windows run replacement and more&#8230;</p></div>
<p><a href="http://greenerpenny.blogspot.com/2007/08/bye-bye-bpa.html">Bye-Bye, BPA</a><br />
BPA/Phthalate-Free Shopping List<br />
Now that we&#8217;re reading lots more about BPA and its low-level bad effects, we&#8217;re figuring out how to get our plastics to be non-BPA</p>
<p><a href="http://www.thoughtcrime.org/software/sslstrip/index.html">sslstrip</a> &#8211; transparently hijack HTTP traffic on a network, watch for HTTPS links and redirects, then map those links into either look-alike HTTP links or homograph-similar HTTPS links</p>
<h3><a href="http://www.joelonsoftware.com/items/2009/03/09.html">How do you learn to be a Program Manager</a>?</h3>
<p>Mostly, becoming a program manager is about learning: learning about technology, learning about people, and learning how to be effective in a political organization. A good program manager combines an engineer’s approach to designing technology with a politician’s ability to build consensus and bring people together.</p>
]]></content:encoded>
			<wfw:commentRss>http://mps.blog.webplumbers.com/2009/05/10/mishmash-of-articles-part-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting my command line aliases working in Mac</title>
		<link>http://mps.blog.webplumbers.com/2008/11/21/getting-my-command-line-aliases-working-in-mac/</link>
		<comments>http://mps.blog.webplumbers.com/2008/11/21/getting-my-command-line-aliases-working-in-mac/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 06:15:15 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://mps.blog.webplumbers.com/?p=341</guid>
		<description><![CDATA[found the key at http://www.osxfaq.com/tips/unix-tricks/week105/wednesday.ws for why it wasn&#8217;t reading my .bashrc file&#8230;
and ~/.bash_profile [or ~/.profile] should source ~/.bashrc:
source ~/.bashrc
which made it work!
They also had tricks to make X windows start login shells instead of non-login&#8230; http://www.osxfaq.com/tips/unix-tricks/week105/tuesday.ws
]]></description>
			<content:encoded><![CDATA[<p>found the key at http://www.osxfaq.com/tips/unix-tricks/week105/wednesday.ws for why it wasn&#8217;t reading my .bashrc file&#8230;</p>
<p style="padding-left: 30px">and ~/.bash_profile [or ~/.profile] should source ~/.bashrc:</p>
<p style="padding-left: 30px"><tt>source ~/.bashrc</tt></p>
<p>which made it work!</p>
<p>They also had tricks to make X windows start login shells instead of non-login&#8230; http://www.osxfaq.com/tips/unix-tricks/week105/tuesday.ws</p>
]]></content:encoded>
			<wfw:commentRss>http://mps.blog.webplumbers.com/2008/11/21/getting-my-command-line-aliases-working-in-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using X from Ubuntu server on Mac laptop</title>
		<link>http://mps.blog.webplumbers.com/2008/11/21/using-x-from-ubuntu-server-on-mac-laptop/</link>
		<comments>http://mps.blog.webplumbers.com/2008/11/21/using-x-from-ubuntu-server-on-mac-laptop/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 05:34:24 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mps.blog.webplumbers.com/?p=339</guid>
		<description><![CDATA[&#8230;was far easier than I expected.  I thought I was going to have to add all kinds of switches or settings, either on the client or server, but no.
$ ssh -p port -X mylogin@myserver.com
$ fwbuilder &#38;
and I was running.  Now that&#8217;s how I like it.  But, just in case it was hard, I had references:
http://www.cyberciti.biz/faq/linux-unix-tunneling-xwindows-securely-over-ssh/
http://www.vanemery.com/Linux/XoverSSH/X-over-SSH2.html
http://www.faqs.org/docs/Linux-mini/Remote-X-Apps.html
]]></description>
			<content:encoded><![CDATA[<p>&#8230;was far easier than I expected.  I thought I was going to have to add all kinds of switches or settings, either on the client or server, but no.</p>
<pre>$ ssh -p port -X mylogin@myserver.com
$ fwbuilder &amp;</pre>
<p>and I was running.  Now that&#8217;s how I like it.  But, just in case it was hard, I had references:</p>
<p>http://www.cyberciti.biz/faq/linux-unix-tunneling-xwindows-securely-over-ssh/<br />
http://www.vanemery.com/Linux/XoverSSH/X-over-SSH2.html<br />
http://www.faqs.org/docs/Linux-mini/Remote-X-Apps.html</p>
]]></content:encoded>
			<wfw:commentRss>http://mps.blog.webplumbers.com/2008/11/21/using-x-from-ubuntu-server-on-mac-laptop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Random cleanup baloney</title>
		<link>http://mps.blog.webplumbers.com/2008/09/11/random-cleanup-baloney/</link>
		<comments>http://mps.blog.webplumbers.com/2008/09/11/random-cleanup-baloney/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 21:11:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://mps.blog.webplumbers.com/?p=337</guid>
		<description><![CDATA[Open Source Laptop tracking system &#8211; Aedona
Some funny options for unlocked computers for your coworkers&#8230;
Problems with the Community Broadband Act and its lock-in to the established players
]]></description>
			<content:encoded><![CDATA[<p>Open Source Laptop tracking system &#8211; <a href="http://adeona.cs.washington.edu/">Aedona</a></p>
<p>Some <a href="http://www.codinghorror.com/blog/archives/000997.html">funny options for unlocked computers</a> for your coworkers&#8230;</p>
<p><a href="http://arstechnica.com/news.ars/post/20070803-community-broadband-act-would-overturn-bans-on-municipal-broadband.html">Problems with the Community Broadband Act</a> and its lock-in to the established players</p>
]]></content:encoded>
			<wfw:commentRss>http://mps.blog.webplumbers.com/2008/09/11/random-cleanup-baloney/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Holy MVPMC Moly</title>
		<link>http://mps.blog.webplumbers.com/2007/10/28/holy-mvpmc-moly/</link>
		<comments>http://mps.blog.webplumbers.com/2007/10/28/holy-mvpmc-moly/#comments</comments>
		<pubDate>Mon, 29 Oct 2007 02:53:42 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Linux Misc]]></category>
		<category><![CDATA[MythTV]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mps.blog.webplumbers.com/2007/10/28/holy-mvpmc-moly/</guid>
		<description><![CDATA[Wow, I was putting together my MythTV machine and it was OK until I had to get my remote front-end working.  Because of the WAF, I selected a small machine &#8211; the Hauppage MediaMVP.  What I didn&#8217;t recognize was that the documentation for getting it running&#8230; umm&#8230; stinks.  Or at least is [...]]]></description>
			<content:encoded><![CDATA[<p>Wow, I was putting together my MythTV machine and it was OK until I had to get my remote front-end working.  Because of the <a href="http://www.wordspy.com/words/wifeacceptancefactor.asp">WAF</a>, I selected a small machine &#8211; the Hauppage MediaMVP.  What I didn&#8217;t recognize was that the documentation for getting it running&#8230; umm&#8230; stinks.  Or at least is severely misleading (http://www.mvpmc.org/ mvpmc-HOWTO-singlehtml.html, not linked so you don&#8217;t try and use it. I should have noticed when it used software 13 versions old.).  Or is really hard to find.  So here&#8217;s my trials and tribulations and fixes, for anyone who is doing it.</p>
<p>Add to Ubuntu (Feisty Fawn) to get the mvpmc code loaded:</p>
<blockquote><p>apt-get install atftpd tftp<br />
mkdir /tftpboot<br />
chmod a+rwx /tftpboot<br />
export TFTPBOOT=/tftpboot<br />
cd /tftpboot/<br />
wget http://downloads.sourceforge.net/mvpmc/dongle.bin.mvpmc-0.3.3?modtime=1169 586056&amp;big_mirror=0<br />
ln -s dongle.bin.mvpmc dongle.bin.mvpmc-0.3.3<br />
ln -s dongle.bin.mvpmc-0.3.3 dongle.bin.mvpmc</p></blockquote>
<p>but then I was shocked to find that while the config files for inetd were created, there was no inetd.  So&#8230;</p>
<blockquote><p>apt-get install xinetd tcpd<br />
apt-get install nfs-common nfs-kernel-server<br />
cd /etc<br />
e exports<br />
ls /media/hdb1/mythtv/recordings/<br />
/etc/init.d/nfs-kernel-server start<br />
/etc/init.d/nfs-common start<br />
update-rc.d nfs-kernel-server defaults</p></blockquote>
<p>and then it wouldn&#8217;t read the config file.  Time to add the setting to have xinetd use inetd.conf&#8230;</p>
<blockquote><p>e /etc/init.d/xinetd<br />
add in flag: -inetd_compat</p></blockquote>
<p>I learned that the instructions on mvpmc.org are pretty specific to the first generation of the machine, the H1.  However, those aren&#8217;t made any more&#8230; and once I got into trouble, each piece turned out to be challenges with the version.  I&#8217;ve got an H3.  For that, you need a special service that whispers magic incantations into the ear of the MVP.  It also needs a <a href="http://mvpmc.wikispaces.com/hxhowto">significantly different guide</a>&#8230; and after <a href="http://knoppmythwiki.org/index.php?page=MediaMVP_LinuxHOWTO">searching</a> and <a href="http://whypaythemtodoitforyou.blogspot.com/2007/09/mythdora-media-mvp-rev-h3-configuration.html">searching (has VLC notes for future)</a> and <a href="http://www.jpsdomain.org/jp/mythtv.txt">searching</a> (supersweet detail, enough to choke on and more, which also gave me the link to&#8230;) I finally stumbled across on <a href="http://mvpmc.wikispaces.com/">http://mvpmc.wikispaces.com/</a> and started getting more progress on <a href="http://mvpmc.wikispaces.com/mythtv">MythTV setup</a>&#8230; well, almost&#8230;</p>
<blockquote><p>e mvpboot.pl</p></blockquote>
<p>and I then went spelunking into <a href="http://mvpmc.wikispaces.com/mvpboot">mvpboot</a>.pl and <a href="http://mvpmc.wikispaces.com/mvprelay">mvprelay</a>.c -</p>
<blockquote><p>perl -MCPAN -e shell<br />
install Net::Interface<br />
apt-get install initrd-tools gcc<br />
dd if=dongle.bin.mvpmc-0.3.3 of=dongle.bin.ver bs=1 count=40 skip=5</p></blockquote>
<p>So once again I&#8217;m thrilled by Debian/Ubuntu and their dependencies&#8230; as well as the prompts (when you run a nonexistent program, Ubuntu now suggests packages to install that provide the command you&#8217;re trying to use&#8230; very cool).  But I hate how I rely on them, because I thought once I actually installed GCC that it would work.  I finally was googling and found I was still <a href="http://ubuntuforums.org/showthread.php?t=439057">missing one big piece</a>:</p>
<blockquote><p>apt-get install build-essential</p></blockquote>
<p>and now all the compilation stuff worked and Perl was happy.  Argh!</p>
<p>I then started fighting my drive definitions&#8230; I had partitioned my three drives in a marvelous way, redundancy for the OS and big space for the media:</p>
<blockquote><p>Mirrors on drive 1 and 2:</p>
<ul>
<li>100mb &#8211; /boot</li>
<li>2gb &#8211; swap</li>
<li>28gb &#8211; /</li>
</ul>
<p>One big XFS drive (3) for media:</p>
<ul>
<li>400gb &#8211; /media</li>
</ul>
</blockquote>
<p>except it appears Ubuntu uses /media for its mount space, and somehow my brain didn&#8217;t register that.  So when the folder was there, I thought it would have my big space&#8230; but no.  Fought with fstab a while and eventually got it so the last drive moved to /mediafiles and all started working.</p>
<p>Now the shiny stuff.  MVPMC can <a href="http://www.mvpmc.org/%7Emvallevand/mvpmc-HOWTO-stream.html">stream music</a> from a central server, too&#8230;</p>
<blockquote><p>apt-get install slimserver</p></blockquote>
<p>and it didn&#8217;t work that well when I put it in.  All I could get was a statement from Live365 that I wasn&#8217;t logged in.  Shockingly, when I went to the <a href="http://wiki.slimdevices.com/index.cgi?BeginnersGuide">SlimServer instructions</a> and did some basic configuration <img src='http://mps.blog.webplumbers.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  it worked.  Who&#8217;da thunk it?  I also had to chmod 777 to get it to read the media&#8230; I&#8217;ll clean that up later.</p>
<p>Other MythTV bits:</p>
<blockquote><p>apt-get install mythweb mythmusic mythvideo mythplugins ogle mplayerapt-get install vlc videolan-doc</p></blockquote>
<p>Followed the <a href="http://mvpmc.wikispaces.com/vlc">instructions on setting up vlc</a>. It also said I needed mpslave to use aacPlus or Real Audio streams&#8230; right now I don&#8217;t need that bad enough to do the work.  It&#8217;s not working yet, so I&#8217;ll have to poke it more later.</p>
<p>What remains?  Glad you asked&#8230;</p>
<ul>
<li>For some reason the <a href="http://www.cyberciti.biz/faq/howto-setup-linux-lan-card-find-out-full-duplex-half-speed-or-mode/">network connection is running at 10mb Half Duplex</a>.  Since it happens with other computers on that drop I think it&#8217;s a switch or wire problem.</li>
<li>mplayer on my mvpmc only shows streaming radio successfully from live365 and the other XML is having parsing errors.</li>
<li>slimserver is cataloguing AAC files from iTunes but not playing them, even the unencrypted ones</li>
<li>I have to set up playlists and my local radio stations as m3u links so we can use them also&#8230; should be easy, just has to be done&#8230;</li>
<li>I want to get the ReplayTV and Filesystems menu items to not display, which should be doable according to the <a href="http://mvpmc.wikispaces.com/commandline">commandline argument writeup</a> but it somehow isn&#8217;t.</li>
<li>Live TV isn&#8217;t running yet (but we almost never watch live TV so I don&#8217;t care much)</li>
<li>Get VLC <a href="http://mvpmc.wikispaces.com/vlc">working</a></li>
<li>Clean up the /mediafiles/music chmod 777 hack</li>
<li>Oh yeah, and getting it working with remote systems so I can drive the other two TVs.  I&#8217;m going to see if I can get my hands on an <a href="http://apple.com/appletv">AppleTV </a>to get a <a href="http://www.mythtv.org/wiki/index.php/Installing_MythTV_on_an_AppleTV">richer interface for the Myth frontend and still have iTunes playback work</a> for the stereo&#8230; that might be better for music playing.  Not to mention then it will have HDMI or composite video which would be very good if we upgrade our TVs anytime in our life&#8230; sigh.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://mps.blog.webplumbers.com/2007/10/28/holy-mvpmc-moly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu server without starting X</title>
		<link>http://mps.blog.webplumbers.com/2007/10/24/ubuntu-server-without-starting-x/</link>
		<comments>http://mps.blog.webplumbers.com/2007/10/24/ubuntu-server-without-starting-x/#comments</comments>
		<pubDate>Thu, 25 Oct 2007 06:19:07 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mps.blog.webplumbers.com/2007/10/24/ubuntu-server-without-starting-x/</guid>
		<description><![CDATA[I wanted to have my server with X installed but not starting, and found a handy tool rcconf from a discussion about how to keep X from running automatically.&#160; It handles the startup alterations for you, kind of like chkconfig in redhat.
Technorati Tags: ubuntu, xwindows, rcconf
]]></description>
			<content:encoded><![CDATA[<p>I wanted to have my server with X installed but not starting, and found a handy tool rcconf from <a href="http://ubuntuforums.org/archive/index.php/t-8430.html">a discussion about how to keep X from running automatically</a>.&nbsp; It handles the startup alterations for you, kind of like chkconfig in redhat.</p>
<p>Technorati Tags: <a href="http://technorati.com/tag/ubuntu" rel="tag">ubuntu</a>, <a href="http://technorati.com/tag/xwindows" rel="tag">xwindows</a>, <a href="http://technorati.com/tag/rcconf" rel="tag">rcconf</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mps.blog.webplumbers.com/2007/10/24/ubuntu-server-without-starting-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

