<?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>dicianno.org/blog &#187; gentoo</title>
	<atom:link href="http://dicianno.org/blog/category/gentoo/feed/" rel="self" type="application/rss+xml" />
	<link>http://dicianno.org/blog</link>
	<description>notes about computers and lifestyle</description>
	<lastBuildDate>Thu, 04 Feb 2010 21:09:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Prefix Portage v. Aquamacs v. aspell</title>
		<link>http://dicianno.org/blog/2008/11/12/prefix-portage-v-aquamacs-v-aspell/</link>
		<comments>http://dicianno.org/blog/2008/11/12/prefix-portage-v-aquamacs-v-aspell/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 02:49:14 +0000</pubDate>
		<dc:creator>armando</dc:creator>
				<category><![CDATA[gentoo]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://www.dicianno.org/blog/?p=72</guid>
		<description><![CDATA[I come from a heavy Gentoo background in GNU/Linux land, so on OS X, I prefer Prefix Portage.  YMMV, but I think it&#8217;s a great environment.  I mainly use it to install the few extra UNIX utilities that don&#8217;t ship with OS X.
Wanting to get spell checking working, I read the Emacs Wiki, [...]]]></description>
			<content:encoded><![CDATA[<p>I come from a heavy Gentoo background in GNU/Linux land, so on OS X, I prefer Prefix Portage.  YMMV, but I think it&#8217;s a great environment.  I mainly use it to install the few extra UNIX utilities that don&#8217;t ship with OS X.</p>
<p>Wanting to get spell checking working, I read the Emacs Wiki, and thought all I had to do was install aspell.  I even added my prefix portage paths to my Preferences.el file:</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1"><span class="br0">&#40;</span>setenv <span class="st0">&quot;PATH&quot;</span> <span class="br0">&#40;</span>concat <span class="st0">&quot;/Library/Gentoo/bin&quot;</span> path-separator <span class="br0">&#40;</span>getenv <span class="st0">&quot;PATH&quot;</span><span class="br0">&#41;</span><span class="br0">&#41;</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#40;</span>setenv <span class="st0">&quot;PATH&quot;</span> <span class="br0">&#40;</span>concat <span class="st0">&quot;/Library/Gentoo/sbin&quot;</span> path-separator <span class="br0">&#40;</span>getenv <span class="st0">&quot;PATH&quot;</span><span class="br0">&#41;</span><span class="br0">&#41;</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#40;</span>setenv <span class="st0">&quot;PATH&quot;</span> <span class="br0">&#40;</span>concat <span class="st0">&quot;/Library/Gentoo/usr/bin&quot;</span> path-separator <span class="br0">&#40;</span>getenv <span class="st0">&quot;PATH&quot;</span><span class="br0">&#41;</span><span class="br0">&#41;</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#40;</span>setenv <span class="st0">&quot;PATH&quot;</span> <span class="br0">&#40;</span>concat <span class="st0">&quot;/Library/Gentoo/usr/sbin&quot;</span> path-separator <span class="br0">&#40;</span>getenv <span class="st0">&quot;PATH&quot;</span><span class="br0">&#41;</span><span class="br0">&#41;</span><span class="br0">&#41;</span></div>
</li>
</ol>
</div>
<p>While the above <strong>did</strong> change my path, it didn&#8217;t make spellcheck work.  The following code did:</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1"><span class="co1">;; spelling</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="br0">&#40;</span>eval-after-load <span class="st0">&quot;ispell&quot;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="br0">&#40;</span><span class="kw1">progn</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="br0">&#40;</span><span class="kw1">setq</span> ispell-dictionary <span class="st0">&quot;en&quot;</span></div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ispell-silently-savep t<span class="br0">&#41;</span><span class="br0">&#41;</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#40;</span>setq-default ispell-program-<span class="kw1">name</span> <span class="st0">&quot;/Library/Gentoo/usr/bin/aspell&quot;</span><span class="br0">&#41;</span></div>
</li>
</ol>
</div>
<p>The peculiar thing is that I had to specify the full path to aspell, and not just &#8220;aspell&#8221; with the above PATH additions.  Very strange; I&#8217;m no Lisp programmer (yet!), so any suggestions would be appreciated.</p>
]]></content:encoded>
			<wfw:commentRss>http://dicianno.org/blog/2008/11/12/prefix-portage-v-aquamacs-v-aspell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>erlang</title>
		<link>http://dicianno.org/blog/2007/11/27/erlang-2/</link>
		<comments>http://dicianno.org/blog/2007/11/27/erlang-2/#comments</comments>
		<pubDate>Tue, 27 Nov 2007 23:32:03 +0000</pubDate>
		<dc:creator>armando</dc:creator>
				<category><![CDATA[cli]]></category>
		<category><![CDATA[erlang]]></category>
		<category><![CDATA[gentoo]]></category>

		<guid isPermaLink="false">http://www.dicianno.org/blog/2007/11/27/erlang-2/</guid>
		<description><![CDATA[For some reason, the Gentoo install of erlang put the man pages into man sections that ended in &#8220;erl&#8221;.  For example, instead a directory named man3 for the 3rd man page section, it&#8217;s man3erl.
I wrote a quick alias erlman that only searches these erlang man page sections.
~/.bashrc



&#160;


alias erlman=&#34;man -S 1erl:3erl:4erl:6erl&#34;


&#160;



]]></description>
			<content:encoded><![CDATA[<p>For some reason, the Gentoo install of erlang put the man pages into man sections that ended in &#8220;erl&#8221;.  For example, instead a directory named <tt>man3</tt> for the 3rd man page section, it&#8217;s <tt>man3erl</tt>.</p>
<p>I wrote a quick alias <tt>erlman</tt> that only searches these erlang man page sections.</p>
<p><tt>~/.bashrc</tt></p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw3">alias</span> <span class="re2">erlman=</span><span class="st0">&quot;man -S 1erl:3erl:4erl:6erl&quot;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://dicianno.org/blog/2007/11/27/erlang-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSL support for Apache in my prefix-portage overlay</title>
		<link>http://dicianno.org/blog/2007/06/21/ssl-support-for-apache-in-my-prefix-portage-overlay/</link>
		<comments>http://dicianno.org/blog/2007/06/21/ssl-support-for-apache-in-my-prefix-portage-overlay/#comments</comments>
		<pubDate>Thu, 21 Jun 2007 14:53:21 +0000</pubDate>
		<dc:creator>armando</dc:creator>
				<category><![CDATA[gentoo]]></category>
		<category><![CDATA[obt]]></category>

		<guid isPermaLink="false">http://www.dicianno.org/blog/2007/06/21/untitled/</guid>
		<description><![CDATA[I&#8217;m working on getting our Rails-based app, at work (OBT &#8211; obtech.net), working with SSL.
Since we all use OSX as our main dev boxen here, as well as Gentoo Linux machines, I long ago started hacking and helping on the Gentoo-Alt Prefix Portage project, so that I could help create one software repository we all [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m working on getting our Rails-based app, at work (OBT &#8211; <a href="http://www.obtech.net/">obtech.net</a>), working with SSL.</p>
<p>Since we all use OSX as our main dev boxen here, as well as Gentoo Linux machines, I long ago started hacking and helping on the Gentoo-Alt <a href="http://www.gentoo.org/proj/en/gentoo-alt/prefix/index.xml">Prefix Portage</a> project, so that I could help create one software repository we all use here.  I found it very time consuming, before hand, to help other devs install and configure pieces of software every time they needed something &#8212; they&#8217;re not n00bs or anything, just UNIX CLI stuff isn&#8217;t their usual cup of tea.</p>
<p>I&#8217;m in the process of (re-)becoming an official Gentoo developer, focusing on Prefix Portage this time (last time was GNUstep).  Until that goes through, I have a prefix-portage overlay, which is accessible through <code>layman</code>, or you can use SVN to check it out at <a href="http://www.dicianno.org/svn/PrefixPortage/branches/overlay-fafhrd/">http://www.dicianno.org/svn/PrefixPortage/branches/overlay-fafhrd/</a>.</p>
<p>So, to summarize the point of this post, shortly, I got SSL support working in the Apache ebuild that was already in my overlay, at least on OSX.  So, get to it!</p>
]]></content:encoded>
			<wfw:commentRss>http://dicianno.org/blog/2007/06/21/ssl-support-for-apache-in-my-prefix-portage-overlay/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MacBook Pro: run a little cooler, save batter power with ati-config</title>
		<link>http://dicianno.org/blog/2006/06/24/macbook-pro-run-a-little-cooler-save-batter-power-with-ati-config/</link>
		<comments>http://dicianno.org/blog/2006/06/24/macbook-pro-run-a-little-cooler-save-batter-power-with-ati-config/#comments</comments>
		<pubDate>Sat, 24 Jun 2006 17:01:17 +0000</pubDate>
		<dc:creator>armando</dc:creator>
				<category><![CDATA[gentoo]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.dicianno.org/2006/06/24/macbook-pro-run-a-little-cooler-save-batter-power-with-ati-config/</guid>
		<description><![CDATA[So you probably discovered that your MacBook Pro runs about as hot as the corona of the Sun.
If you&#8217;re at my blog here, you probably run some GNU / Linux distro.  Just a guess.
If you&#8217;re running a GNU / Linux distro, there&#8217;s a good chance you installed the binary ATI drivers and associated tools, [...]]]></description>
			<content:encoded><![CDATA[<p>So you probably discovered that your MacBook Pro runs about as hot as the corona of the Sun.</p>
<p>If you&#8217;re at my blog here, you probably run some GNU / Linux distro.  Just a guess.</p>
<p>If you&#8217;re running a GNU / Linux distro, there&#8217;s a good chance you installed the binary ATI drivers and associated tools, even though it makes your soul bleed.</p>
<p>So, if you have <tt>ati-config</tt> you can do the following:</p>
<div class="code"># ati-config &#8211;list-powerstates<br />
core/mem     [flags]<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
1: 128/135 MHz  [low voltage]<br />
* 2: 311/297 MHz  [performance mode, default state]<br />
3: 311/297 Mhz</div>
<p>Once you get the number to use, likely same as above with &#8216;1&#8242;, you can do</p>
<div class="code"># ati-config &#8211;set-powerstate=1 &#8211;effective=now</div>
<p>You can also use <tt>--effective=startup</tt> to have this saved in your X config file.  Personally, I like to be able to change it on the fly.</p>
]]></content:encoded>
			<wfw:commentRss>http://dicianno.org/blog/2006/06/24/macbook-pro-run-a-little-cooler-save-batter-power-with-ati-config/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>spamassassin: make it work!</title>
		<link>http://dicianno.org/blog/2006/06/16/spamassassin-make-it-work/</link>
		<comments>http://dicianno.org/blog/2006/06/16/spamassassin-make-it-work/#comments</comments>
		<pubDate>Fri, 16 Jun 2006 21:17:56 +0000</pubDate>
		<dc:creator>armando</dc:creator>
				<category><![CDATA[cli]]></category>
		<category><![CDATA[gentoo]]></category>

		<guid isPermaLink="false">http://www.dicianno.org/2006/06/16/spamassassin-make-it-work/</guid>
		<description><![CDATA[I emerged spamassassin, which installed the spamd server, and the spamc client, with which to talk to the server.
However, the logs were complaing TELL commands have not been enabled.  It seems that SPAMD_OPTS in /etc/conf.d/spamd is missing the -l (&#8211;allow-tell) option.
Adding the above -l to SPAMD_OPTS allowed spamc to talk to spamd and make [...]]]></description>
			<content:encoded><![CDATA[<p>I emerged spamassassin, which installed the <tt>spamd</tt> server, and the <tt>spamc</tt> client, with which to talk to the server.</p>
<p>However, the logs were complaing <tt>TELL commands have not been enabled</tt>.  It seems that SPAMD_OPTS in <tt>/etc/conf.d/spamd</tt> is missing the -l (&#8211;allow-tell) option.</p>
<p>Adding the above <tt>-l</tt> to SPAMD_OPTS allowed spamc to talk to spamd and make it start learning.</p>
]]></content:encoded>
			<wfw:commentRss>http://dicianno.org/blog/2006/06/16/spamassassin-make-it-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DVD movie playback trouble</title>
		<link>http://dicianno.org/blog/2006/04/30/dvd-movie-playback-trouble/</link>
		<comments>http://dicianno.org/blog/2006/04/30/dvd-movie-playback-trouble/#comments</comments>
		<pubDate>Sun, 30 Apr 2006 19:02:23 +0000</pubDate>
		<dc:creator>armando</dc:creator>
				<category><![CDATA[gentoo]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.dicianno.org/2006/04/30/dvd-movie-playback-trouble/</guid>
		<description><![CDATA[I added a short section to the 5670 howto page describing a small, but scary issue regarding DVD movie playback.  Basically, the region code was never set, so I used the regionset utility to set a region code.  This enabled DVD movie playback to continue as I was used to.
]]></description>
			<content:encoded><![CDATA[<p>I added a short section to the 5670 howto page describing a small, but scary issue regarding DVD movie playback.  Basically, the region code was never set, so I used the <tt>regionset</tt> utility to set a region code.  This enabled DVD movie playback to continue as I was used to.</p>
]]></content:encoded>
			<wfw:commentRss>http://dicianno.org/blog/2006/04/30/dvd-movie-playback-trouble/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sleep works!</title>
		<link>http://dicianno.org/blog/2006/04/28/sleep-works/</link>
		<comments>http://dicianno.org/blog/2006/04/28/sleep-works/#comments</comments>
		<pubDate>Fri, 28 Apr 2006 14:02:57 +0000</pubDate>
		<dc:creator>armando</dc:creator>
				<category><![CDATA[gentoo]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.dicianno.org/2006/04/28/sleep-works/</guid>
		<description><![CDATA[I didn&#8217;t expect suspend-to-ram / sleep to work, since I was very suspicious of the binary ATI drivers, and honestly, they don&#8217;t seem to have the best reputation.  More notes to follow on the main 5670 page&#8230;
]]></description>
			<content:encoded><![CDATA[<p>I didn&#8217;t expect suspend-to-ram / sleep to work, since I was very suspicious of the binary ATI drivers, and honestly, they don&#8217;t seem to have the best reputation.  More notes to follow on the main 5670 page&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://dicianno.org/blog/2006/04/28/sleep-works/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>acer5670 page somewhat useful now</title>
		<link>http://dicianno.org/blog/2006/04/27/acer5670-page-somewhat-useful-now/</link>
		<comments>http://dicianno.org/blog/2006/04/27/acer5670-page-somewhat-useful-now/#comments</comments>
		<pubDate>Thu, 27 Apr 2006 21:42:01 +0000</pubDate>
		<dc:creator>armando</dc:creator>
				<category><![CDATA[gentoo]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.dicianno.org/2006/04/27/acer5670-page-somewhat-useful-now/</guid>
		<description><![CDATA[If anyone else wants info regarding Gentoo (or another distro) on the Acer Aspire 5670, the page has been updated to the point where it is somewhat useful.  Included is my kernel config and xorg.conf.
]]></description>
			<content:encoded><![CDATA[<p>If anyone else wants info regarding Gentoo (or another distro) on the Acer Aspire 5670, the <a href="http://www.dicianno.org/acer-aspire-5670-v-gentoo/">page</a> has been updated to the point where it is somewhat useful.  Included is my kernel config and xorg.conf.</p>
]]></content:encoded>
			<wfw:commentRss>http://dicianno.org/blog/2006/04/27/acer5670-page-somewhat-useful-now/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing Gentoo on Acer Aspire 5670</title>
		<link>http://dicianno.org/blog/2006/04/23/installing-gentoo-on-acer-aspire-5670/</link>
		<comments>http://dicianno.org/blog/2006/04/23/installing-gentoo-on-acer-aspire-5670/#comments</comments>
		<pubDate>Sun, 23 Apr 2006 20:05:20 +0000</pubDate>
		<dc:creator>armando</dc:creator>
				<category><![CDATA[gentoo]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.dicianno.org/2006/04/23/installing-gentoo-on-acer-aspire-5670/</guid>
		<description><![CDATA[I&#8217;ll be keeping a journal of my installation and usage experiences of Gentoo on my Acer Aspire 5670. I purchased the 5670 in early February, and mainly used it as a Windows gaming machine until now. ATI released on 4/12/06 a new version of their proprietary drivers that support the X1400 graphics chip in this [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll be keeping a journal of my installation and usage experiences of Gentoo on my Acer Aspire 5670. I purchased the 5670 in early February, and mainly used it as a Windows gaming machine until now. ATI released on 4/12/06 a new version of their proprietary drivers that support the X1400 graphics chip in this laptop, so I am hopeful that my experiences of using this laptop&#8217;s full feature set is quite likely.</p>
<p><a href="http://www.dicianno.org/acer-aspire-5670-v-gentoo/">Read about the install process, configuration files, and my general experiences.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dicianno.org/blog/2006/04/23/installing-gentoo-on-acer-aspire-5670/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

