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 »
Keep in touch
Subscribe via Email
Archive for the ‘Sysadmin Stuff’ Category
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 [...]
Posted in Linux, Python, Sysadmin Stuff | No Comments »
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 [...]
Posted in Linux, Linux - Red Hat, SELinux, Sysadmin Stuff | 5 Comments »
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 [...]
Posted in Career, Linux, Python, Security, Sysadmin Stuff | 2 Comments »
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 [...]
Posted in Linux, Linux - Fedora, Linux - Redhat, Sysadmin Stuff | No Comments »
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 [...]
Posted in Linux, Linux - Fedora, Linux - Redhat, Sysadmin Stuff | 1 Comment »
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 [...]
Posted in Linux, OpenBSD, Sysadmin Stuff | 3 Comments »
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, [...]
Posted in Linux, OpenBSD, Sysadmin Stuff | No Comments »
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, [...]
Posted in Linux, OpenBSD, Sysadmin Stuff, Windows | 2 Comments »
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 [...]
Posted in Linux, OpenBSD, Sysadmin Stuff | No Comments »