<?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>rishel.org &#187; Linux</title>
	<atom:link href="http://rishel.org/category/geek-stuff/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://rishel.org</link>
	<description>My inane ramblings.  Or acerbic wit.  Take your pick.</description>
	<lastBuildDate>Mon, 26 Apr 2010 07:07:46 +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>Proliant Blade running RHEL5, you&#8217;ll need a cma.log rotation script</title>
		<link>http://rishel.org/2008/08/28/proliant-blade-running-rhel5-youll-need-a-cmalog-rotation-script/</link>
		<comments>http://rishel.org/2008/08/28/proliant-blade-running-rhel5-youll-need-a-cmalog-rotation-script/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 12:02:17 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://rishel.org/2008/08/28/proliant-blade-running-rhel5-youll-need-a-cmalog-rotation-script/</guid>
		<description><![CDATA[No one seems to have written a log rotation script for the Proliant Support Pack logs that are stored in /var/spool/compaq/cma.log, so I thought I&#8217;d throw mine up here in case someone else needs one.  put this in a file called &#8220;cma&#8221; in /etc/logrotate.d/

/var/spool/compaq/cma.log {
    compress
    missingok
  [...]]]></description>
			<content:encoded><![CDATA[<p>No one seems to have written a log rotation script for the Proliant Support Pack logs that are stored in /var/spool/compaq/cma.log, so I thought I&#8217;d throw mine up here in case someone else needs one.  put this in a file called &#8220;cma&#8221; in /etc/logrotate.d/<br />
<code><br />
/var/spool/compaq/cma.log {<br />
    compress<br />
    missingok<br />
    size=100M<br />
    postrotate<br />
        /sbin/service hpasm restart 2> /dev/null > /dev/null || true<br />
    endscript<br />
}<br />
</code><br />
That&#8217;s it.  this will be picked up by the daily cronjobs and keep things from getting messy.  if you want to test your config without doing any changes, run <code>logrotate -d /etc/logrotate.conf</code> which will output the work it plans on doing. If your big log hasn&#8217;t rotated in that example, run <code>logrotate -f /etc/logrotate.conf</code> which force the job to run.  those 6 gigs of logs are now a tidy 39 megs.</p>
]]></content:encoded>
			<wfw:commentRss>http://rishel.org/2008/08/28/proliant-blade-running-rhel5-youll-need-a-cmalog-rotation-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mysqld failing to load after changing default locations</title>
		<link>http://rishel.org/2007/08/07/mysqld-failing-to-load-after-changing-default-locations/</link>
		<comments>http://rishel.org/2007/08/07/mysqld-failing-to-load-after-changing-default-locations/#comments</comments>
		<pubDate>Tue, 07 Aug 2007 18:00:25 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://rishel.org/2007/08/07/mysqld-failing-to-load-after-changing-default-locations/</guid>
		<description><![CDATA[I just solved a problem at work that google was no help with.  I&#8217;m posting this in hopes some other poor soul who has the same problem finds this post.  After an OS re-install (Red Hat Enterprise Linux AS 4) we were changing the default location of data used for application into a [...]]]></description>
			<content:encoded><![CDATA[<p>I just solved a problem at work that google was no help with.  I&#8217;m posting this in hopes some other poor soul who has the same problem finds this post.  After an OS re-install (Red Hat Enterprise Linux AS 4) we were changing the default location of data used for application into a different filesystem mounted to /obscure/location/work/uses/ in that directory, each application has it&#8217;s own folder, and then automounts to /apps/appname.   We setup /apps/mysql and edited /etc/my.cnf to point everything but /var/run/mysqld/mysqld.pid to this new location.  Makes sense, right?  But now, mysql won&#8217;t start.  statur reports:<br />
<code>#service mysqld status<br />
mysqld dead but subsys locked</code></p>
<p>in course of investigation, I check /var/log/messages and see something like:<br />
<code><br />
Jan 6 01:23:27 localhost kernel: audit(1105003407.183:0): avc: denied { append } for pid=12380 exe=/usr/sbin/mysqld path=/var/lib/mysql/localhost.localdomain.err dev=sda1 ino=3450322 scontext=root:system_r:mysqld_t tcontext=root:object_r:var_lib_t tclass=file</code></p>
<p>this error message will lead you down a trail of dispair.  If you&#8217;re having the same problem I did, <strong>ignore</strong> this error message.</p>
<p>The reason the startup scripts are failing is that something is hardcoded to look for the mysql files in /var/lib/mysql.  A symlink to /apps/mysql:<br />
<code><br />
ln -s /apps/mysql/ /var/lib/</code></p>
<p>and mysql starts up without problem.</p>
<p>Now, if someone could explain why mysql client or startup scripts fails to read /etc/my.cnf correctly, I&#8217;d love to hear it.</p>
]]></content:encoded>
			<wfw:commentRss>http://rishel.org/2007/08/07/mysqld-failing-to-load-after-changing-default-locations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu from Dell &#8220;Day 2&#8243; impressions</title>
		<link>http://rishel.org/2007/07/17/ubuntu-from-dell-day-2-impressions/</link>
		<comments>http://rishel.org/2007/07/17/ubuntu-from-dell-day-2-impressions/#comments</comments>
		<pubDate>Tue, 17 Jul 2007 18:33:41 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://rishel.org/2007/07/17/ubuntu-from-dell-day-2-impressions/</guid>
		<description><![CDATA[As mentioned earlier, Meg&#8217;s new computer is a Dell with Ubuntu Linux pre-installed.   Overall, we&#8217;re still happy with the system, but I wanted to mention a few &#8220;gotchas&#8221; i&#8217;ve found since being able to poke around the system a bit more.   
First, Meg&#8217;s system came with a widescreen monitor.   [...]]]></description>
			<content:encoded><![CDATA[<p>As <a href="http://rishel.org/2007/06/08/ubuntu-from-dell-first-impressions/">mentioned earlier</a>, Meg&#8217;s new computer is a <a href="http://direct2dell.com/one2one/archive/category/1021.aspx">Dell with Ubuntu Linux pre-installed</a>.   Overall, we&#8217;re still happy with the system, but I wanted to mention a few &#8220;gotchas&#8221; i&#8217;ve found since being able to poke around the system a bit more.   </p>
<p>First, Meg&#8217;s system came with a widescreen monitor.   X windows was only configured with one 16:9 resolution choice, so if Meg want&#8217;s to reduce the resolution, everything is stretched out.   I know if this is a fairly simple xorg.conf fix, and Meg&#8217;s gotten used to the 1680&#215;1050 resolution, so it hasn&#8217;t been a big deal.</p>
<p>Secondly, in an effort to conserve power, I enabled power management so the system would suspend after after an hour of activity.   Most of the time, this works.  Every few times, it doesn&#8217;t recover correctly and needs to be shutdown before coming back up.   Other times, the network connection is unable to get a DHCP lease.  I&#8217;ve turned this off to stop irritating Meg until I can get it to work more consistently. </p>
<p>Meg is busy taking grad classes and her only complaint about OpenOffice.org is the lack &#8220;WordArt&#8221; as seen in Microsoft Word.   I&#8217;ll have to see if the Format > FontWork option does the trick for her.</p>
<p>Overall, I&#8217;m still very impressed.   The screen resolution is a minor nit-pick, and I&#8217;m not even sure if that level of polish exists on the windows side of the world.  Suspend or hibernate don&#8217;t work correctly on my own (older) system, so that fact that it works most of the time is still a good sign.  </p>
]]></content:encoded>
			<wfw:commentRss>http://rishel.org/2007/07/17/ubuntu-from-dell-day-2-impressions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu from Dell, first impressions</title>
		<link>http://rishel.org/2007/06/08/ubuntu-from-dell-first-impressions/</link>
		<comments>http://rishel.org/2007/06/08/ubuntu-from-dell-first-impressions/#comments</comments>
		<pubDate>Fri, 08 Jun 2007 17:40:21 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://rishel.org/2007/06/08/ubuntu-from-dell-first-impressions/</guid>
		<description><![CDATA[I order a new computer for Meg as her IDE controller appears to be flaking out.  I decided to order one of the new Dells with Ubuntu pre-installed.  On first boot up, I was asked to agree to the Terms and Conditions.  This was before even the OS loaded, must be a [...]]]></description>
			<content:encoded><![CDATA[<p>I order a new computer for Meg as her IDE controller appears to be flaking out.  I decided to order one of the new <a href="http://direct2dell.com/one2one/archive/2007/05/24/15994.aspx">Dells with Ubuntu pre-installed</a>.  On first boot up, I was asked to agree to the Terms and Conditions.  This was before even the OS loaded, must be a BIOS thing.   Once though this screen, Ubuntu 7.04 booted up, I created a user account for Meg and myself and we were up and running.   I did an synaptic update and started to explore the system.  Everything but my printer just worked.  USB drives, Sound,  flash installed right into firefox, no extra fiddling needed.</p>
<p>Extra work with the printer was to be expected and I was able to easily get it running with the <a href="http://downloads.lexmark.com/cgi-perl/downloads.cgi?ccs=229:1:0:389:0:0&#038;searchLang=en&#038;os_group=Redhat&#038;target=">lexmark driver</a> and the <a href="http://ubuntuforums.org/showthread.php?t=83456&#038;highlight=lexmark">directions from ubuntu forums</a>.  Dell did a good job on their  blog explaining that they are only going to recommend certain printers.  One odd thing was that the sales page for the linux systems didn&#8217;t let me select a printer at all.  I guess they are still ramping up the system and determining which printers would be best to offer.</p>
<p>It was pretty neat to unpack a new Dell PC and only have this one CD in the box:<a href='http://rishel.org/wp-content/uploads/2007/06/scan.png' title='Ubuntu'><img src='http://rishel.org/wp-content/uploads/2007/06/scan.png' alt='Ubuntu' /></a></p>
<p>I&#8217;m going to let Meg play with Ubuntu a bit, but I think we may end up switching back to Kubuntu, as that&#8217;s what she&#8217;s more familiar with.   I do have an XP CD sitting here as a backup in case she decides Open Office can&#8217;t handle her powerpoint needs or something else.  I might try the <a href="https://help.ubuntu.com/community/WindowsXPUnderQemuHowTo">Qemu > rdesktop trick</a> if she decides this is needed.</p>
]]></content:encoded>
			<wfw:commentRss>http://rishel.org/2007/06/08/ubuntu-from-dell-first-impressions/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Warwalking</title>
		<link>http://rishel.org/2005/09/25/warwalking/</link>
		<comments>http://rishel.org/2005/09/25/warwalking/#comments</comments>
		<pubDate>Mon, 26 Sep 2005 01:16:35 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://rishel.org/2005/09/25/warwalking/</guid>
		<description><![CDATA[Meg and I took the dog and my laptop for a walk around the neighborhood tonight.  I found 18 wireless networks, 15 of which were unsecured.  5 of which were named &#8220;linksys&#8221;  it&#8217;s enough that the thought of cancelling my cable service and mooching from the neighbors stayed in my mind more [...]]]></description>
			<content:encoded><![CDATA[<p>Meg and I took the dog and my laptop for a walk around the neighborhood tonight.  I found 18 wireless networks, 15 of which were unsecured.  5 of which were named &#8220;linksys&#8221;  it&#8217;s enough that the thought of cancelling my cable service and mooching from the neighbors stayed in my mind more than briefly.  I&#8217;ll have to get me a GPS usb dongle so I can track down who has these access points.</p>
]]></content:encoded>
			<wfw:commentRss>http://rishel.org/2005/09/25/warwalking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bluetooth DUN</title>
		<link>http://rishel.org/2005/05/16/bluetooth-dun/</link>
		<comments>http://rishel.org/2005/05/16/bluetooth-dun/#comments</comments>
		<pubDate>Mon, 16 May 2005 13:42:42 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Quickies]]></category>

		<guid isPermaLink="false">http://rishel.org/?p=156</guid>
		<description><![CDATA[This is more a note to myself, as I want to remember this link on setting up Bluetooth DUN in Gentoo.   I just need to figure out where my USB Bluetooth dongle got to&#8230;
]]></description>
			<content:encoded><![CDATA[<p>This is more a note to myself, as I want to remember this link on setting up <a href="http://alexvalentine.org/blog/?p=105">Bluetooth DUN</a> in Gentoo.   I just need to figure out where my USB Bluetooth dongle got to&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://rishel.org/2005/05/16/bluetooth-dun/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t Buy Netgear WG511 To Use With Linux</title>
		<link>http://rishel.org/2005/03/23/dont-buy-netgear-wg511-to-use-with-linux/</link>
		<comments>http://rishel.org/2005/03/23/dont-buy-netgear-wg511-to-use-with-linux/#comments</comments>
		<pubDate>Wed, 23 Mar 2005 16:26:07 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://rishel.org/?p=141</guid>
		<description><![CDATA[So, I recently bought the netgear wg511 card from newegg.  The reviews on newegg are glowing for this card, and how well supported it is in Linux.   My package arrived yesterday, and I tried to get it setup with the prism54 driver.  Turns out, I received version 2 of the card, [...]]]></description>
			<content:encoded><![CDATA[<p>So, I recently bought the <a href="http://www.newegg.com/app/ViewProductDesc.asp?description=33-150-004&#038;depa=0">netgear wg511 card from newegg</a>.  The reviews on newegg are glowing for this card, and how well supported it is in Linux.   My package arrived yesterday, and I tried to get it setup with the <a href="http://prism54.org/">prism54 driver</a>.  Turns out, I received version 2 of the card, which uses the Marvell chipset, and the only way i&#8217;m going to get it running is with the <a href="http://ndiswrapper.sourceforge.net/">ndiswrapper project</a> that lets me use the windows driver, but that just feels dirty.  Plus, I&#8217;d really like to support a business that uses a chipset supported by linux.    So full of hate right now.</p>
]]></content:encoded>
			<wfw:commentRss>http://rishel.org/2005/03/23/dont-buy-netgear-wg511-to-use-with-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t Piss off DrunkenBatman</title>
		<link>http://rishel.org/2005/03/03/dont-piss-of-drunkenbatman/</link>
		<comments>http://rishel.org/2005/03/03/dont-piss-of-drunkenbatman/#comments</comments>
		<pubDate>Thu, 03 Mar 2005 13:50:48 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[Humor]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://rishel.org/?p=133</guid>
		<description><![CDATA[One of my favorite blogs, DrunkenBlog, just wrote up a horrible prank he pulled on an old friend.   This is what he does to friends.  I wonder what he does to his enemies.
]]></description>
			<content:encoded><![CDATA[<p>One of my favorite blogs, DrunkenBlog, just wrote up <a href="http://www.drunkenblog.com/drunkenblog-archives/000491.html">a horrible prank</a> he pulled on an old friend.   This is what he does to friends.  I wonder what he does to his enemies.</p>
]]></content:encoded>
			<wfw:commentRss>http://rishel.org/2005/03/03/dont-piss-of-drunkenbatman/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Brain Dump</title>
		<link>http://rishel.org/2005/02/18/brain-dump/</link>
		<comments>http://rishel.org/2005/02/18/brain-dump/#comments</comments>
		<pubDate>Fri, 18 Feb 2005 23:04:12 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Fitness]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Home Ownership]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://rishel.org/?p=127</guid>
		<description><![CDATA[I haven&#8217;t written anything in a while but don&#8217;t have anything worthy of a blog entry of it&#8217;s own.  Here comes a brain dump: 

Spent Valentine&#8217;s weekend in Philly with Meg.  We went to Dave &#038; Buster&#8217;s (which was totally Meg&#8217;s idea, not that I protested) on Saturday and to The Philadelphia Museum [...]]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t written anything in a while but don&#8217;t have anything worthy of a blog entry of it&#8217;s own.  Here comes a brain dump: <span id="more-127"></span></p>
<ul>
<li>Spent Valentine&#8217;s weekend <a href="http://gophila.com/">in Philly</a> with Meg.  We went to <a href="http://daveandbusters.com/">Dave &#038; Buster&#8217;s</a> (which was totally Meg&#8217;s idea, not that I protested) on Saturday and to <a href="http://www.philamuseum.org">The Philadelphia Museum of Art </a>on Sunday after staying at the <a href="http://www.wyndham.com/hotels/PHLFP/main.wnt">Wyndham Hotel</a> nearby.  On Valentine&#8217;s Day I sent Meg <a href="http://www.witf.org">a dozen roses</a> at work.  She received a few death threats from jealous old ladies at work, so I got that going for me.  </li>
<li>I&#8217;ve been sick since Wednesday night.  What started as a tickle in my throat progressed to a nasty sore throat by Thursday  morning.   This rapidly changed into a runny nose that wouldn&#8217;t quit.   Today,  my nose is still a snot faucet, and I think it may be turning into a sinus infection.  If I&#8217;m not better after some serious &#8220;stay in bed and drink lots of juice&#8221; this weekend, I&#8217;ll be hitting up a doc for some antibiotics, I guess.  Anyone know if this <a href="http://www.airbornehealth.com/">Airborne</a> stuff <a href="http://www.howardstern.com">Stern</a> has been shilling actually works?</li>
<li>On a related note, I&#8217;ve been really bad about going to <a href="http://www.yorkcoymca.org/">the Y</a> and working out, but this head cold sure isn&#8217;t going to allow that.  I don&#8217;t have as much of an excuse for the slacking before this past weekend though.  If you don&#8217;t see an update Monday or Tuesday of next week about me going to the gym, yell at me, ok?</li>
<li>I want to find <a href="http://linuxwifi.com/modules/wiwimod/?page=DeviceList">a good Wifi card for my laptop that will work in linux</a>.    Looks like support for 802.11b is pretty stabilized, but things are more up in the air for 802.11g.  Any one have a recommendation of a card they&#8217;ve found that works well?  Maybe a combo card?  802.11a would be nice too, but entirely unnecessary.   I&#8217;d really like <a href="http://www.kismetwireless.net/cards.shtml">one that works with Kismet</a> too, so I can get my wardrivin&#8217; on.</li>
<li>My palm is still broken, but Meg took it by Circuit City today, where it was purchased from, and they said I still have a warranty, but I need to do some digging to find all the paperwork.   That is going to prove to be quite the exercise, I&#8217;m sure.  Paperwork is so overrated.  I think I&#8217;d give up my left testicle (always been a favorite of mine) if I could never have to deal with marking dead tree with dark pigment in the vague shape of the iconographs that map out the sounds of my name, and have to file away, and remember the location of, said marked dead tree fragments to presentation at a later date.  Why can&#8217;t I just get by with fingerprints, DNA swabs, retina scans and the ever present pan-opticon records of transnational corporations/governments to keep track of this crap?
<p><em>**Deep Breath** Ok, maybe not my left testicle.   Maybe Wyatt&#8217;s left testicle.  He&#8217;s not using &#8216;em.  (oooh! Burn!  Made sweeter by sheer randomness! (I was gonna say Ben, but he&#8217;s started to use his, or something.( more parentheticals! (wee!)))) </em></li>
<li>My Dad and I have been trying to fix* the leak in our upstairs bathroom, but it still leaks a little, so there is still a hole in the downstairs ceiling, and a new, nicely cut hole with a door in the bedroom wall opposite the bathroom.  I don&#8217;t think Meg&#8217;s very happy with the &#8220;improvements.&#8221;<br />
<em><br />
*That means I&#8217;ve been doing a lot of flashlight holding.  Except I can&#8217;t find my rechargeable flashlight.  Who took it?</em></li>
<li>staying at work to finish blog entries is crazy talk.  I&#8217;m outta here.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://rishel.org/2005/02/18/brain-dump/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>&#8220;A Free Groupware system, that&#8217;s an awesome idea&#8221;</title>
		<link>http://rishel.org/2005/02/16/a-free-groupware-system-thats-an-awesome-idea/</link>
		<comments>http://rishel.org/2005/02/16/a-free-groupware-system-thats-an-awesome-idea/#comments</comments>
		<pubDate>Wed, 16 Feb 2005 16:39:28 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Humor]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://rishel.org/2005/02/16/a-free-groupware-system-thats-an-awesome-idea/</guid>
		<description><![CDATA[jwz just wrote about the new Hula pen groupware from Novell.  and he does a good job of explaining why Open groupware doesn&#8217;t scratch any itches.  or in other words:
So I said, narrow the focus. Your &#8220;use case&#8221; should be, there&#8217;s a 22 year old college student living in the dorms. How will [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jwz.org">jwz</a> just wrote about <a href="http://hula-project.org/index.php/Hula_Server">the new Hula pen groupware from Novell</a>.  and he does a good job of explaining why Open groupware doesn&#8217;t scratch any itches.  or in other words:</p>
<blockquote><p>So I said, narrow the focus. Your &#8220;use case&#8221; should be, there&#8217;s a 22 year old college student living in the dorms. How will this software get him laid? </p>
<p>That got me a look like I had just sprouted a third head, but bear with me, because I think that it&#8217;s not only crude but insightful. &#8220;How will this software get my users laid&#8221; should be on the minds of anyone writing social software (and these days, almost all software is social software). </p>
<p>&#8220;Social software&#8221; is about making it easy for people to do other things that make them happy: meeting, communicating, and hooking up.
</p></blockquote>
<p>Go <a href="http://www.livejournal.com/users/jwz/444651.html">give it a read</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://rishel.org/2005/02/16/a-free-groupware-system-thats-an-awesome-idea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
