<?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>101TECH &#187; Unix</title>
	<atom:link href="http://www.101tech.net/category/unix/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.101tech.net</link>
	<description>IT Solutions Done Right!</description>
	<lastBuildDate>Fri, 26 Feb 2010 02:41:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ldap_add: Invalid syntax (21) &#8211; fix</title>
		<link>http://www.101tech.net/2010/01/21/ldap_add-invalid-syntax-21-fix/</link>
		<comments>http://www.101tech.net/2010/01/21/ldap_add-invalid-syntax-21-fix/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 18:08:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Sys Admin]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[LDAP]]></category>

		<guid isPermaLink="false">http://www.101tech.net/?p=334</guid>
		<description><![CDATA[This error was driving me nuts:
ldap_add: Invalid syntax (21)
	additional info: objectClass: value #0 invalid per syntax
despite looking at my ldif a hundred times, until I relized my perl script added white space at the end of the line &#8230;. 
        print "objectClass: top\n";
	print "objectClass: person \n";
	print "objectClass: organizationalPerson [...]]]></description>
		<wfw:commentRss>http://www.101tech.net/2010/01/21/ldap_add-invalid-syntax-21-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Parse a csv file using perl</title>
		<link>http://www.101tech.net/2010/01/21/parse-a-csv-file-using-perl/</link>
		<comments>http://www.101tech.net/2010/01/21/parse-a-csv-file-using-perl/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 18:01:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sys Admin]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[CSV]]></category>
		<category><![CDATA[LDAP]]></category>
		<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://www.101tech.net/?p=330</guid>
		<description><![CDATA[While parsing and converting some CSV files to ldif&#8217;s I needed a perl script, the Test::CSV module is helpful :

    #!/usr/bin/perl
    use strict;
    use warnings;
    use Text::CSV;
    my $file = &#8216;prospects.csv&#8217;;
    my $csv = Text::CSV->new();
   [...]]]></description>
		<wfw:commentRss>http://www.101tech.net/2010/01/21/parse-a-csv-file-using-perl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Centos5: nfs clients get premission denied</title>
		<link>http://www.101tech.net/2009/02/18/centos5-nfs-clients-get-premission-denied/</link>
		<comments>http://www.101tech.net/2009/02/18/centos5-nfs-clients-get-premission-denied/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 13:43:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CentOS]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Sys Admin]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.101tech.net/wordpress/?p=174</guid>
		<description><![CDATA[While working on ny NFS cluster project , I could not mount my nfs exports from clients ( FreBSD &#038; Centos ).
on the FreeBSD client I got these responses :
[udp] server:/data/dir1: Permission denied
on the CentOS client I got these responses:
mount: server:/data/dir1 failed, reason given by server: Permission denied
On the Centos NFS server the logs showed [...]]]></description>
		<wfw:commentRss>http://www.101tech.net/2009/02/18/centos5-nfs-clients-get-premission-denied/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>find whats causing a busy partition in freebsd</title>
		<link>http://www.101tech.net/2009/02/13/find-whats-causing-a-busy-partition-in-freebsd/</link>
		<comments>http://www.101tech.net/2009/02/13/find-whats-causing-a-busy-partition-in-freebsd/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 12:15:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Sys Admin]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.101tech.net/wordpress/2009/02/13/find-whats-causing-a-busy-partition-in-freebsd/</guid>
		<description><![CDATA[trying to umount an nfs or external disk partition and got &#8220;partition busy&#8221; ?
use fstat -f to find out what the hold up &#8230;
-f      Restrict examination to files open in the same file systems as
             the named file [...]]]></description>
		<wfw:commentRss>http://www.101tech.net/2009/02/13/find-whats-causing-a-busy-partition-in-freebsd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install check_mysql_perf on FreeBSD</title>
		<link>http://www.101tech.net/2008/12/18/install-check_mysql_perf-on-freebsd/</link>
		<comments>http://www.101tech.net/2008/12/18/install-check_mysql_perf-on-freebsd/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 20:17:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[Nagios]]></category>
		<category><![CDATA[Sys Admin]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.101tech.net/wordpress/?p=105</guid>
		<description><![CDATA[I recently had to install check_mysql_perf on our nagios server runing FreeBSD.
After a few failed attempts , I contacted the author Gerhard asking for help. Sure enough a few minutes ( !!! ) later he send me a reply back :&#160;
Add the following at the end of the check_mysql_perf.c :&#160;

char* strndup(const char* string, size_t n)
{
 [...]]]></description>
		<wfw:commentRss>http://www.101tech.net/2008/12/18/install-check_mysql_perf-on-freebsd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
