Nagios Checker plugin for Firefox

I’ve started using Nagios Checker plugin for Firefox, which puts a little Nagios status indicator into the bottom right corner of your Firefox status bar. A green “no problem” if there is no problem, or an alert indicator if there are issues. You don’t have to be in your Nagios window or look at it…

Continue reading

Example of using “ulimit” to limit memory usage

ulimit can be used to limit memory utilization (among other things) Here is an example of setting memory usage so low that /bin/ls (which is larger than /bin/cat) no longer works, but /bin/cat still works. $ ls -lh /bin/ls /bin/cat -rwxr-xr-x 1 root root 25K May 24 2008 /bin/cat -rwxr-xr-x 1 root root 88K May…

Continue reading

Self-healing disk arrays from Xiotech.com/Seagate

Roger Kelley from Xiotech presented to UUASC last week on Xiotech’s next-gen storage technology. The basic ideas are: – Xiotech is a spin-off from Seagate and still maintains an R&D relationship with Seagate – The basic disk storage unit from Xiotech is a unit that holds two sealed-in datapacs, each of which holds 10 drives….

Continue reading

Notes on accessing SVN over SSH

Here are my notes how I set up SVN over SSH to an SVN server that had been set up to run SVN as a single user, “svn”. So, we have multiple users on the remote side, all logging in as “svn” on the SVN server side. Authentication is done via a dedicated key-pair, with…

Continue reading

How to read tapes in TAR per frame format

TAR per frame means each TIFF file is written as a separate TAR file onto tape. This is a practice in the entertainment industry. Now, the default tape device (/dev/st0 on Linux) rewinds after each command. Trying to read consecutive files, and rewinding between each read, adds a lot of time. It’s possible to specify…

Continue reading