RLB3.COM

Aut disce aut discede

Using Top More Efficiently

Posted by rlb3 Tue, 28 Mar 2006 17:48:00 GMT

Here is a good article how to use top better.

Posted in | no comments |

25 Reasons to Convert to Linux

Posted by rlb3 Fri, 10 Feb 2006 01:59:00 GMT

Here is a list of reason to switch to linux. Most of these are ovious but I guess its good spell them out somewhere.

Posted in | no comments |

Windows Supports More Hardware Than Linux, Just Not As Well

Posted by rlb3 Fri, 11 Nov 2005 15:39:00 GMT

Here is an article that I really agree with. He talks about driver support when things go bad.

Posted in | no comments |

RHCE!!!

Posted by rlb3 Sat, 05 Nov 2005 04:23:00 GMT

I passed!!!!!

My number is 804005436217482.

Posted in , | no comments |

USB stick for Authentication

Posted by rlb3 Tue, 04 Oct 2005 17:37:36 GMT

Got this link from Matt.

Posted in | no comments |

Building fastCGI on FC4

Posted by rlb3 Thu, 22 Sep 2005 00:08:00 GMT

This howto we will get fastCGI running with a stock FC4 apache2.

If you don’t have it on you system run as root:

yum install httpd httpd-devel
Next you’ll need download these two files:
http://www.fastcgi.com/dist/fcgi-2.4.1-SNAP-0311112127.tar.gz
http://www.fastcgi.com/dist/mod_fastcgi-2.4.2.tar.gz
tar -zxvf fcgi-2.4.1-SNAP-0311112127.tar.gz
cd fcgi-2.4.2
./configure
make
make install
Once you’ve done that. Add this to /etc/ld.so.conf
/usr/local/lib
Then run:
ldconfig
Now you are read to install mod_fastcgi.
tar -zxvf mod_fastcgi-2.4.2.tar.gz
cd mod_fastcgi-2.4.2
apxs -n mod_fastcgi -i -a -c \
        mod_fastcgi.c fcgi_buf.c \
        fcgi_config.c fcgi_pm.c fcgi_protocol.c fcgi_util.c

This installs the .so file but puts the wrong module name in /etc/httpd/conf/httpd.conf

LoadModule mod_fastcgi_module modules/mod_fastcgi.so
to:
LoadModule fastcgi_module modules/mod_fastcgi.so

Now you are ready to install any fcgi ready program.

no comments |