Finally got my own blog up

Finally got my own blog up: http://verticalsysadmin.com/blog/ It’ll be about configuration management, documentation, and increasing system administration efficiency.

Cool things I saw at SIGGRAPH 2010 exhibition hall

SIGGGRAPH 2010 Trip Report of Cool Things Aleksey Saw in the Exhibition Hall (Coolest stuff at the top.) – FusionIO had the coolest demo!! 1500 DVD-quality videos streaming from a single Fusion IO (RAM-based) 640 GB drive displayed onto a large virtual screen (composed of 16 – that’s 4×4 large displayes). all 1500 videos were…

Continue reading

Turning perl regular expressions from line noise into documented code

Problem: Sufficiently long regular expressions start to look like line noise and become unmaintainable Solution: Use perl regular expressions with the /x modifier perlre manpage reads: /x Extend your pattern’s legibility by permitting whitespace and comments. These are usually written as “the /x modifier”… The /x modifier itself needs a little more explanation. It tells…

Continue reading

Aleksey at SCALE 8x

Going to SCALE 8x today – I’ll be in the LOPSA booth, PostgreSQL booth and doing FOSS tours. Do I know how to overcommit or what?

Preventing rsync from picking up rsync temp files.

If you have multiple vias in your rsync path (e.g. a -> b -> c) you can use an rsync filter rule to tell rsync: don’t transfer files that have . in the beginning of the filename! –filter ‘- .*’ This way you won’t have rsync temp files (named something like .filename.xxyyzz) from the a…

Continue reading