in reply to Newbie Adding Module to Perl

One more thing to add, if you don't have root access you can still install the module by specifying a directory of your choice:
perl Makefile.PL PREFIX=/path-to/your-dir LIB=/path-to/your-dir
Then when you use the module in your code, make sure Perl knows to look in that directory to find the module:
#!/usr/bin/perl -w use lib '/path-to/your-dir'; use Sys::AlarmCall;
-- vek --