About me

My name is Rich Jerrido and I am the person behind www.outsidaz.org I am a geek hailing from the city of brotherly love. I started this blog a couple of years back as a dumping place for a lot of working knowledge of mine that I could have available online regardless of where I was. Over time it has evolved into being a full-fledged blog, complete with RSS feeds, comments, and pictures.When I am not hacking on computers for profit, I hack on them for fun.Read more about me »

New Year….New Desktop

New Year….New Desktop Featured Work

Keep in touch

RSS Feed Twitter Facebook Delicious

Subscribe via Email

Archive for the ‘Sysadmin Stuff’ Category


Python web server one liner using the SimpleHTTPServer module

Monday, February 20th, 2012

Sometimes I need a webserver while doing troubleshooting, such as testing firewalls or proxy servers, and installing Apache or Nginx is a bit heavyweight for my tastes (or time). Optimally, I would want something that I can invoke easily, keep in the foreground, and CTRL-C when complete. Luckily, Python includes a simple webserver which gives [...]

Deploying Observium on RHEL6 with SELinux

Thursday, February 9th, 2012

As part of a recent restructuring of my home lab, I have started looking at incorporating some monitoring solutions. Currently, I am a big fan of Munin. But as of recently, I started playing around with Observium, and so far, I like it a lot. This document describes how to setup Observium on a RHEL6 [...]

Tools for the Open Source Road Warrior

Friday, April 8th, 2011

Travelling fairly frequently has caused me to re-evaluate the way that I travel and my workflow. In the process, I’ve learned some new tools, as well as learning new tricks for existing tools that I have. Most of my toolkit is designed around security and backups, since while I am away from 127.0.0.1 ::1, data [...]

Monospaced Heaven

Saturday, October 24th, 2009

For years, I have been searching for a good monospaced font as my professional life revolves around being SSH’d into servers. Many other fonts (Droid Sans Mono, Red Hat’s Liberation, & Lucida Console) have all come close to being my monospaced font of choice, but somehow were quirky enough to not really fit well with [...]

Online Capacity Expansion of an md array and LVM volume group

Tuesday, September 29th, 2009

Being the pirate digital pack-rat that I am, I am perpetually running out of storage capacity. My recent addition to the household has been (yet another) Seagate 1.5TB Barracuda to add to my primary storage array, which consists of 4 more 1.5TB Barracudas in a raid 5 array /dev/md0. On this raid array, I have [...]

Using Gmail and Postfix

Sunday, November 30th, 2008

One of the things I have struggled with for the longest is getting postfix and gmail working together. That is: I wanted to relay mail off my workstation to my gmail account. After googling a million how-to’s that involved setting up a CA and creating certificates for my postfix instance, I started thinking: When I [...]

.bashrc and you – Configuring your shell to be exactly the way you want.

Sunday, September 21st, 2008

One of the coolest things I love about *nix is the ability to customize your shell to be exactly the way you want. One of the first things I do on a new system is to copy over my .bashrc file so that I have all my customizations with me. From Wikipedia When Bash starts, [...]

Tools for Surviving in a Mixed Environment of *nix and Windows

Friday, October 12th, 2007

What’s a *nix admin to do when they are work in a heterogenous environment? Make it like home. On my desk, I have two systems, my company issued and managed laptop, and my Debian Linux admin workstation. Its a pain to use my Windows laptop as it doesn’t have the usual amenities of a *nix, [...]

5 Quick *nix tricks to add to your toolkit.

Thursday, October 11th, 2007

- To remove all the comments and blank lines from a file – /etc/httpd.conf for example. grep -v ‘^#’ /etc/httpd.conf | grep -v ‘^$’ – (Postfix) To extract the message ID’s of all messages going to the example.com domain: grep example.com /var/log/maillog | awk ‘{print $6}’ | cut -c -10 – Create an ISO from [...]