<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE rss [<!ENTITY % HTMLlat1 PUBLIC "-//W3C//ENTITIES Latin 1 for XHTML//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml-lat1.ent">]>
<rss version="2.0" xml:base="http://www.geekwisdom.com/dyn">
<channel>
 <title>Geek(Wisdom).com - Systems Administration</title>
 <link>http://www.geekwisdom.com/dyn/taxonomy/term/24/0</link>
 <description></description>
 <language>en</language>
<item>
 <title>Extracting distinct e-mails from a large text file</title>
 <link>http://www.geekwisdom.com/dyn/node/201</link>
 <description>&lt;code &gt;perl -wne&#039;while(/[\w\.\-]+@[\w\.\-]+\w+/g){print &quot;$&amp;amp;\n&quot;}&#039; BigFileContainingEmails.txt | sort -u &amp;gt; output.txt&lt;/code&gt;</description>
 <category domain="http://www.geekwisdom.com/dyn/taxonomy/term/22">Programming/Architecture</category>
 <category domain="http://www.geekwisdom.com/dyn/taxonomy/term/24">Systems Administration</category>
 <pubDate>Fri, 05 Sep 2008 12:51:10 -0600</pubDate>
</item>
<item>
 <title>Check out my awesome video tutorials!</title>
 <link>http://www.geekwisdom.com/dyn/node/199</link>
 <description>I currently make how-to videos on computer related topics. Check out my videos at either&lt;br &gt;
&lt;a href=&quot;http://youtube.com/user/wartex8&quot;&gt;Youtube&lt;/a&gt; or &lt;a href=&quot;http://revver.com/u/wartex8&quot;&gt;Revver&lt;/a&gt;</description>
 <category domain="http://www.geekwisdom.com/dyn/taxonomy/term/23">Operating Systems</category>
 <category domain="http://www.geekwisdom.com/dyn/taxonomy/term/21">Security/Privacy</category>
 <category domain="http://www.geekwisdom.com/dyn/taxonomy/term/24">Systems Administration</category>
 <pubDate>Mon, 12 May 2008 14:07:37 -0600</pubDate>
</item>
<item>
 <title>/bin/rm: Argument list too long</title>
 <link>http://www.geekwisdom.com/dyn/node/197</link>
 <description>Do this instead:
&lt;code &gt;find . -name &#039;*&#039; | xargs rm&lt;/code&gt;</description>
 <category domain="http://www.geekwisdom.com/dyn/taxonomy/term/24">Systems Administration</category>
 <pubDate>Thu, 06 Dec 2007 08:44:58 -0700</pubDate>
</item>
<item>
 <title>High Availability Web Services Using HAProxy</title>
 <link>http://www.geekwisdom.com/dyn/node/187</link>
 <description>&lt;p&gt;I was recently tasked with increasing the up time of my employer&#039;s main Web site. The site uses a content management system that lives on two Windows/IIS servers. (I know, the system was purchased before I was hired.) One server is for making changes to content (design-time server) and the other is the public web site (run-time server). The design-time server has a complete copy of the site which is replicated to the run-time server. Unfortunately the run-time server has a habit of refusing to serve pages at the most inopportune times, usually when I&#039;m on vacation or somewhere without a computer.&lt;/p&gt;
</description>
 <category domain="http://www.geekwisdom.com/dyn/taxonomy/term/24">Systems Administration</category>
 <pubDate>Thu, 09 Nov 2006 12:36:23 -0700</pubDate>
</item>
<item>
 <title>Butt Kicking Chair</title>
 <link>http://www.geekwisdom.com/dyn/node/184</link>
 <description>&lt;p&gt;A couple of years ago I was sitting in one of those mind numbing meetings about stupid users or some such thing when I began to doodle and hit upon an idea. Wouldn&#039;t it be cool if all of our users sat in specially designed (or retrofitted) chairs that were capable of producing a shot to the sitter&#039;s posterior. The idea called for a chair, a boot, a lever, an actuator, a small computer with a network connection (wired or wireless), and some custom software. The computer would provide a network interface that would allow an administrator or help desk person to send a request to the chair and the person sitting in it would get a single kick in the pants. The idea for the interface later morphed into a web page and/or XML-RPC interface that listened to requests from authorized administrators which would trigger the butt kicking as well as various presets (single kick, small whooping, smack down, death by boot, etc).&lt;/p&gt;
</description>
 <category domain="http://www.geekwisdom.com/dyn/taxonomy/term/27">Electronics</category>
 <category domain="http://www.geekwisdom.com/dyn/taxonomy/term/24">Systems Administration</category>
 <pubDate>Thu, 27 Jul 2006 07:23:28 -0600</pubDate>
</item>
<item>
 <title>Sending Cache-control Headers Using Apache 2.x and mod_expires</title>
 <link>http://www.geekwisdom.com/dyn/cache-control2</link>
 <description>&lt;p&gt;About a year ago I wrote about how use &lt;a href=&quot;http://www.geekwisdom.com/dyn/cache-control1&quot;&gt;mod_header with Apache 1.3x to send Cache-control headers&lt;/a&gt;. It worked so well that I want to configure my Apache 2.x servers to send the same headers. It&#039;s even simpler with Apache 2.x since mod_expires is included in most default installs. Here&#039;s what I did.&lt;/p&gt;
&lt;p&gt;I added a configuration directive for the main server configuration (inside the Directory block) which sends the Cache-control header for common graphics.&lt;/p&gt;
</description>
 <category domain="http://www.geekwisdom.com/dyn/taxonomy/term/24">Systems Administration</category>
 <pubDate>Wed, 29 Mar 2006 10:44:42 -0700</pubDate>
</item>
<item>
 <title>Automated Backups of Filemaker Server 6.0 running on Linux</title>
 <link>http://www.geekwisdom.com/dyn/node/166</link>
 <description>&lt;p&gt;When running Filemaker Server 5.5/6.0 on Linux one looses the nice automated backup features which exist in the Windows and Mac versions of the software. It turns out backups can be automated pretty simply by using the PAUSE and RESUME options for fmserverd. I don&#039;t claim to be a super bash scripter but here&#039;s an example script to get you going (keep in mind that this script lacks error handling, use it at your own risk). NOTE: If anyone would like to add error handling and other nifty features please login and post a comment with your suggestions.&lt;/p&gt;
</description>
 <category domain="http://www.geekwisdom.com/dyn/taxonomy/term/24">Systems Administration</category>
 <pubDate>Sat, 27 Aug 2005 21:43:24 -0600</pubDate>
</item>
<item>
 <title>Running Filemaker Server 5.5/6.0 on SuSE 9.3</title>
 <link>http://www.geekwisdom.com/dyn/node/162</link>
 <description>I have recently configured Filemaker Server v5.5/6.0 to run on SuSE 9.3 using the techniques outlined in the How To &quot;&lt;a href=&quot;http://www.giggo.de/publications/fmserver_redhat.html&quot;&gt;HowTo  run Filemaker Server 5.5 on Redhat Linux 7.3, Redhat Linux 9.0 and Redhat Fedora Core 1&lt;/a&gt;&quot; authored by Christof Baumgärtner. The key ends up being the compat-glibc-6.2-2.1.3.2.i386.rpm (glib 2.1 compatibility) libraries. 
Filemaker Server on Linux is a good alternative to server proliferation. Now I can consoludate Filemaker services onto our existing Linux infrastructure without having to buy yet anoth</description>
 <category domain="http://www.geekwisdom.com/dyn/taxonomy/term/24">Systems Administration</category>
 <pubDate>Tue, 02 Aug 2005 22:05:08 -0600</pubDate>
</item>
<item>
 <title>Sending Cache-control Headers Using Apache&#039;s header module</title>
 <link>http://www.geekwisdom.com/dyn/cache-control1</link>
 <description>&lt;p&gt;NOTE: If you&#039;re using Apache 2.x &lt;a href=&quot;http://www.geekwisdom.com/dyn/cache-control2&quot;&gt;go here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I manage a fair number of Apache 1.3x web servers. Most of which are used for virtual hosting. After reading an article by &lt;a href=&quot;http://www.joedog.org&quot;&gt;Jeff Fulmer&lt;/a&gt; in &lt;a href=&quot;http://www.sysadminmag.com&quot;&gt;SysAdmin Magazine&lt;/a&gt; entitled &quot;Save Bandwidth and Increase Performance with Cache-control Response Headers&quot; I decided to configure my Apache servers to use mod_header to send the Cache-control header for graphics files.&lt;/p&gt;
</description>
 <category domain="http://www.geekwisdom.com/dyn/taxonomy/term/24">Systems Administration</category>
 <pubDate>Sat, 12 Feb 2005 13:55:46 -0700</pubDate>
</item>
<item>
 <title>Using Spamassassin with Qmail</title>
 <link>http://www.geekwisdom.com/dyn/node/89</link>
 <description>&lt;p&gt;I&#039;ve been using &lt;a href=&quot;http://www.qmail.org&quot;&gt;Qmail&lt;/a&gt; for some time now and like it quite a bit. I recently configured a new Qmail server and wanted to set it up to use &lt;a href=&quot;http://www.spamassassin.org&quot;&gt;Spamassassin&lt;/a&gt; on a per user basis. I used to use &lt;a href=&quot;http://www.gbnet.net/~jrg/qmail/ifspamh/&quot;&gt;ifspamh&lt;/a&gt; to do this but for some reason it would not work properly on my new server. While I was looking for a fix I came across a &lt;a href=&quot;http://www.magma.com.ni/~jorge/spamassassin.html&quot;&gt;better way&lt;/a&gt;.&lt;/p&gt;
</description>
 <category domain="http://www.geekwisdom.com/dyn/taxonomy/term/24">Systems Administration</category>
 <enclosure url="http://www.geekwisdom.com/dyn/files/safecat-1.12.tar.gz" length="33556" type="application/x-gzip" />
 <pubDate>Sun, 16 Jan 2005 14:53:30 -0700</pubDate>
</item>
<item>
 <title>Killing spam while using the Qmail MTA</title>
 <link>http://www.geekwisdom.com/dyn/node/21</link>
 <description>Chris Hardie&#039;s &lt;a href=&quot;http://www.summersault.com/chris/techno/qmail/qmail-antispam.html&quot;&gt;Qmail Anti-Spam HOWTO&lt;/a&gt; is a good resource.  You will find this to be quite thorough.
Georg Lehner has written &quot;&lt;a href=&quot;http://www.magma.com.ni/~jorge/spamassassin.html&quot;&gt;How to use Spamassassin together with Qmail&lt;/a&gt;.&quot;  In it Georg describes how to setup &lt;a href=&quot;http://www.qmail.org/&quot;&gt;Qmail&lt;/a&gt; with &lt;a href=&quot;http://www.spamassassin.org/&quot;&gt;Spamassassin&lt;/a&gt; to meet your needs.
You should also checkout &lt;a href=&quot;http://razor.sourceforge.net/&quot;&gt;Vipul&#039;s Razor&lt;/a&gt;: Vipul&#039;s Razor is what you now commonly know as SpamNet.</description>
 <category domain="http://www.geekwisdom.com/dyn/taxonomy/term/24">Systems Administration</category>
 <pubDate>Mon, 03 Mar 2003 10:55:32 -0700</pubDate>
</item>
</channel>
</rss>
