Archive for February, 2009
I recently needed to configure a CentOS Linux host to use 802.1Q tagged queuing. This turned out to be super easy, and allowed me place the physical server on multiple layer-2 networks. To configure an 802.1Q interface, I first checked the ifcfg-eth0 script for the interface that was planning to participate in 802.1Q: $ cd [...]
While reviewing one of my Linux hosts, I noticed that a bunch of write activity was occurring to one specific file system. I was curious to see what this write activity was, so I started reading up on the Linux inotify framework. Inotify allows you to monitor file system events, and the super useful iwatch [...]
Picked up this neat little trick on command-line-fu. Read any UNIX man page in OS X as a pdf in preview $ man -t <command> | open -f -a preview
Chris Dew wrote up a neat trick on how to recover files if deleted on Linux, yet still open by a process. This works on Solaris as well. =) $:~:uname -a SunOS somehost.com 5.10 Generic_127112-11 i86pc i386 i86pc $:~:echo “sup prefetch.net folks?” > testfile $:~:tail -f testfile & [1] 17134 $:~:rm testfile $:~:ls /proc/17134/fd/ 0 [...]
Ben Rockwood is awesome. If you haven’t had a chance to check out his blog, its a must read for any Solaris Admin. He gave a presentation at the Open Storage Summit about ZFS. (Video Here) Its worth the read / view for some indepth ZFS concepts. Joerg assisted in turning some of this [...]
While transferring a slew of data to one of my Linux boxes a few weeks back, I was curious how many interrupts were being generated each second. To answer my question, I installed the itop utility. Itop displays the number of interrupts per second that occur per device, and provides output similar to top. Here [...]