bin
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 661
FindBin 5.8.8
FindBin is a Perl module that can locate directory of original perl script. more>>
FindBin is a Perl module that can locate directory of original perl script.
SYNOPSIS
use FindBin;
use lib "$FindBin::Bin/../lib";
or
use FindBin qw($Bin);
use lib "$Bin/../lib";
Locates the full path to the script bin directory to allow the use of paths relative to the bin directory.
This allows a user to setup a directory tree for some software with directories < root >/bin and < root >/lib, and then the above example will allow the use of modules in the lib directory without knowing where the software tree is installed.
If perl is invoked using the -e option or the perl script is read from STDIN then FindBin sets both $Bin and $RealBin to the current directory.
EXPORTABLE VARIABLES
$Bin - path to bin directory from where script was invoked
$Script - basename of script from which perl was invoked
$RealBin - $Bin with all links resolved
$RealScript - $Script with all links resolved
<<lessSYNOPSIS
use FindBin;
use lib "$FindBin::Bin/../lib";
or
use FindBin qw($Bin);
use lib "$Bin/../lib";
Locates the full path to the script bin directory to allow the use of paths relative to the bin directory.
This allows a user to setup a directory tree for some software with directories < root >/bin and < root >/lib, and then the above example will allow the use of modules in the lib directory without knowing where the software tree is installed.
If perl is invoked using the -e option or the perl script is read from STDIN then FindBin sets both $Bin and $RealBin to the current directory.
EXPORTABLE VARIABLES
$Bin - path to bin directory from where script was invoked
$Script - basename of script from which perl was invoked
$RealBin - $Bin with all links resolved
$RealScript - $Script with all links resolved
Download (12.2MB)
Added: 2007-05-09 License: Perl Artistic License Price:
898 downloads
Algorithm::BinPack 0.5
Algorithm::BinPack is a Perl module that can efficiently pack items into bins. more>>
Algorithm::BinPack is a Perl module that can efficiently pack items into bins.
SYNOPSIS
Algorithm::BinPack efficiently packs items into bins. The bins are given a maximum size, and items are packed in with as little empty space as possible. An example use would be backing up files to CD, while minimizing the number of discs required.
my $bp = Algorithm::BinPack->new(binsize => 4);
$bp->add_item(label => "one", size => 1);
$bp->add_item(label => "two", size => 2);
$bp->add_item(label => "three", size => 3);
$bp->add_item(label => "four", size => 4);
for ($bp->pack_bins) {
print "Bin size: ", $_->{size}, "n";
print " Item: ", $_->{label}, "n" for @{ $_->{items} };
}
METHODS
new
Creates a new Algorithm::BinPack object. The maximum bin size is specified as a named argument binsize, and is required. A fudge factor may be specified as a named argument fudge. If a fudge factor is specified, item sizes will be rounded up to a number divisible by the fudge factor. This can help keep items with similar sizes in order by their labels.
my $bp = Algorithm::BinPack->new(binsize => 4);
my $bp = Algorithm::BinPack->new(binsize => 100, fudge => 10);
add_item
Adds an item to be packed into a bin. Required named arguments are label and size, but any others can be specified, and will be saved. An optional bin argument can be used to manually put an item into the specified bin.
$bp->add_item(label => one, size => 1);
$bp->add_item(label => two, size => 2, desc => The second numeral);
$bp->add_item(label => zero, size => 3, bin => 0);
$bp->add_item(qw(label three size 3));
$bp->add_item(qw(label four size 4 random key));
prefill_bin
(Deprecated method) add_item now knows how to handle the bin argument directly, so this method is redundant.
pack_bins
Packs the items into bins. This method tries to leave as little empty space in each bin as possible. It returns a list of hashrefs with the key size containing the total bin size, and items containing an arrayref holding the items in the bin. Each item is in turn a hashref containing the keys label, size, and any others added to the item. If a fudge factor was used, each item will contain a key fudgesize, which is the size this item was fudged to.
for my $bin ($bp->pack_bins) {
print "Bin size: ", $bin->{size}, "n";
for my $item (@{ $bin->{items} }) {
printf " %-6s %-20sn", $_, $item->{$_} for keys %{ $item };
print " ---n";
}
}
<<lessSYNOPSIS
Algorithm::BinPack efficiently packs items into bins. The bins are given a maximum size, and items are packed in with as little empty space as possible. An example use would be backing up files to CD, while minimizing the number of discs required.
my $bp = Algorithm::BinPack->new(binsize => 4);
$bp->add_item(label => "one", size => 1);
$bp->add_item(label => "two", size => 2);
$bp->add_item(label => "three", size => 3);
$bp->add_item(label => "four", size => 4);
for ($bp->pack_bins) {
print "Bin size: ", $_->{size}, "n";
print " Item: ", $_->{label}, "n" for @{ $_->{items} };
}
METHODS
new
Creates a new Algorithm::BinPack object. The maximum bin size is specified as a named argument binsize, and is required. A fudge factor may be specified as a named argument fudge. If a fudge factor is specified, item sizes will be rounded up to a number divisible by the fudge factor. This can help keep items with similar sizes in order by their labels.
my $bp = Algorithm::BinPack->new(binsize => 4);
my $bp = Algorithm::BinPack->new(binsize => 100, fudge => 10);
add_item
Adds an item to be packed into a bin. Required named arguments are label and size, but any others can be specified, and will be saved. An optional bin argument can be used to manually put an item into the specified bin.
$bp->add_item(label => one, size => 1);
$bp->add_item(label => two, size => 2, desc => The second numeral);
$bp->add_item(label => zero, size => 3, bin => 0);
$bp->add_item(qw(label three size 3));
$bp->add_item(qw(label four size 4 random key));
prefill_bin
(Deprecated method) add_item now knows how to handle the bin argument directly, so this method is redundant.
pack_bins
Packs the items into bins. This method tries to leave as little empty space in each bin as possible. It returns a list of hashrefs with the key size containing the total bin size, and items containing an arrayref holding the items in the bin. Each item is in turn a hashref containing the keys label, size, and any others added to the item. If a fudge factor was used, each item will contain a key fudgesize, which is the size this item was fudged to.
for my $bin ($bp->pack_bins) {
print "Bin size: ", $bin->{size}, "n";
for my $item (@{ $bin->{items} }) {
printf " %-6s %-20sn", $_, $item->{$_} for keys %{ $item };
print " ---n";
}
}
Download (0.004MB)
Added: 2007-05-16 License: Perl Artistic License Price:
891 downloads
BINS photo album 1.1.29
BINS photo album is a fully configurable HTML photo album generator with i18n, UTF-8, and EXIF support. more>> <<less
Download (0.26MB)
Added: 2005-08-26 License: GPL (GNU General Public License) Price:
1523 downloads
mp3info 0.1
mp3info software shows details of an mp3-file on the console. more>>
mp3info software shows details of an mp3-file on the console.
Screendump
folkert@belle:~/Personal/src/mp3info$ mp3info -v -f /data4/mp3/7zuma7 - deep inside - 10 - heroin chic.mp3
mpeg3library version 1.5.4
Number of audio streams: 1
Stream 0:
2 channels and consists of 11455240 samples.
sample rate: 44100, duration: 00:04:19
audio format: MPEG
File indicates that it has no video streams.
id3 v1 tag info
title: Heroin Chic
artist: 7Zuma7
album: Deep Inside...
year: 2000
comment:
track: 10
genre: Metal
Integration in Mutt
Add the following lines to ~/.mailcap:
audio/mp3; /usr/local/bin/mp3info -v -f %s ; copiousoutput
audio/mpeg; /usr/local/bin/mp3info -v -f %s ; copiousoutput
audio/x-mp3; /usr/local/bin/mp3info -v -f %s ; copiousoutput
and add the following lines to ~/.muttrc:
auto_view audio/mp3
auto_view audio/mpeg
auto_view audio/x-mp3
<<lessScreendump
folkert@belle:~/Personal/src/mp3info$ mp3info -v -f /data4/mp3/7zuma7 - deep inside - 10 - heroin chic.mp3
mpeg3library version 1.5.4
Number of audio streams: 1
Stream 0:
2 channels and consists of 11455240 samples.
sample rate: 44100, duration: 00:04:19
audio format: MPEG
File indicates that it has no video streams.
id3 v1 tag info
title: Heroin Chic
artist: 7Zuma7
album: Deep Inside...
year: 2000
comment:
track: 10
genre: Metal
Integration in Mutt
Add the following lines to ~/.mailcap:
audio/mp3; /usr/local/bin/mp3info -v -f %s ; copiousoutput
audio/mpeg; /usr/local/bin/mp3info -v -f %s ; copiousoutput
audio/x-mp3; /usr/local/bin/mp3info -v -f %s ; copiousoutput
and add the following lines to ~/.muttrc:
auto_view audio/mp3
auto_view audio/mpeg
auto_view audio/x-mp3
Download (0.021MB)
Added: 2007-08-10 License: GPL (GNU General Public License) Price:
809 downloads
Bitcoop 0.3
Bitcoop is a peer to peer backup system that enables the storage of files on remote computers. more>>
Bitcoop is a peer to peer backup system that enables the storage of files on remote computers.
The size of files depends on the quantity you wish to share with the other peers. Bitcoop project is intended for server farms that wish to backup data among themselves.
Quick Howto:
To start the server, use the bin/run.sh script, or the bin/bitcoop init script. This has been tested under linux and OS X. A windows port is under way. To build bitcoop, take these steps:
0- Choosse a bootserver among the computers you wish to have in your network, set its IP in the XML file.
1- cd bitccop
2- ant
3- cd native
4- scons
5- mv libBitCoop* ..
6- cd ..
7- edit bcoop.xml
You should have to change pretty much everything in the bcoop.xml file.
8- bin/run.sh
Do this on all the machines you want to use.
How this works
- You run the bitcoop server on each machine that participate on your network.
- You can schedule backups to occur at specified times
- You can use the command line client bin/shell.sh to connect to computers to trigger backups or see some status information.
- The first backup always takes more time since all the files have to be copied. Subsequent backups will be much faster.
<<lessThe size of files depends on the quantity you wish to share with the other peers. Bitcoop project is intended for server farms that wish to backup data among themselves.
Quick Howto:
To start the server, use the bin/run.sh script, or the bin/bitcoop init script. This has been tested under linux and OS X. A windows port is under way. To build bitcoop, take these steps:
0- Choosse a bootserver among the computers you wish to have in your network, set its IP in the XML file.
1- cd bitccop
2- ant
3- cd native
4- scons
5- mv libBitCoop* ..
6- cd ..
7- edit bcoop.xml
You should have to change pretty much everything in the bcoop.xml file.
8- bin/run.sh
Do this on all the machines you want to use.
How this works
- You run the bitcoop server on each machine that participate on your network.
- You can schedule backups to occur at specified times
- You can use the command line client bin/shell.sh to connect to computers to trigger backups or see some status information.
- The first backup always takes more time since all the files have to be copied. Subsequent backups will be much faster.
Download (2.6MB)
Added: 2006-08-23 License: GPL (GNU General Public License) Price:
1157 downloads
HacBurn 0.3.5
HacBurn is a frontend to cdrtools/mpg321/ogg123 written with gtk2-perl. more>>
HacBurn is a frontend to cdrtools/mpg321/ogg123 written with gtk2-perl.
HacBurn is a script written in perl using gtk2-perl. It allows a user to use cdrtools and a couple other console applications in a graphical interface to burn CDs.
It can currently burn iso/bin images and audio discs, it can make iso images and also copy CDs. If you have 2 optical drives on the fly copying is available.
<<lessHacBurn is a script written in perl using gtk2-perl. It allows a user to use cdrtools and a couple other console applications in a graphical interface to burn CDs.
It can currently burn iso/bin images and audio discs, it can make iso images and also copy CDs. If you have 2 optical drives on the fly copying is available.
Download (0.084MB)
Added: 2005-08-02 License: GPL (GNU General Public License) Price:
1545 downloads
pam_login 3.29
pam_login is written specificly for PAM authentication. more>>
pam_login is written specificly for PAM authentication.
This login version is based on the sources from util-linux 2.9s. I have removed all non PAM stuff and added a lot of nice features from the shadow login program. This means, pam_login will read and honour /etc/login.defs.
Random administrative things, such as setting the UID andGID of the tty are performed. The TERM environment variable is preserved, if it exists (other environment variables are preserved if the -p option is used).
Then the HOME, PATH, SHELL, TERM, MAIL and LOGNAME environment variables are set. PATH defaults to /usr/local/bin:/bin:/usr/bin:. for normal users and to /sbin:/bin:/usr/sbin:/usr/bin for root if not other configured.
The users shell is then started. If no shell is specified for the user in /etc/passwd, then /bin/sh is used. If there is no directory specified in /etc/passwd, then / is used (the home directory is checked for the .hushlogin file described above).
Enhancements:
- A lot of bugfixes were done since the last release.
- SELinux and lastlog support was removed in favor of the corresponding PAM modules.
<<lessThis login version is based on the sources from util-linux 2.9s. I have removed all non PAM stuff and added a lot of nice features from the shadow login program. This means, pam_login will read and honour /etc/login.defs.
Random administrative things, such as setting the UID andGID of the tty are performed. The TERM environment variable is preserved, if it exists (other environment variables are preserved if the -p option is used).
Then the HOME, PATH, SHELL, TERM, MAIL and LOGNAME environment variables are set. PATH defaults to /usr/local/bin:/bin:/usr/bin:. for normal users and to /sbin:/bin:/usr/sbin:/usr/bin for root if not other configured.
The users shell is then started. If no shell is specified for the user in /etc/passwd, then /bin/sh is used. If there is no directory specified in /etc/passwd, then / is used (the home directory is checked for the .hushlogin file described above).
Enhancements:
- A lot of bugfixes were done since the last release.
- SELinux and lastlog support was removed in favor of the corresponding PAM modules.
Download (0.17MB)
Added: 2006-01-11 License: BSD License Price:
1381 downloads
pipebench 0.40
pipebench is a utility that shows the status and a benchmark of piped commands. more>>
Pipebench shows the current throughput and amount of data going through a pipe. It can be used to show the progress of a large md5sum process: cat bigfile | pipebench | md5sum.
Pipebench measures the speed of a pipe, by sitting in the middle passing the data along to the next process. Works on at least Linux, OpenBSD, NetBSD, Solaris and x86, Alpha, HPPA, Sparc and Sparc64.
Compiling
Just type make to compile.
Type make install to have pipebench be installed in /usr/local/bin
<<lessPipebench measures the speed of a pipe, by sitting in the middle passing the data along to the next process. Works on at least Linux, OpenBSD, NetBSD, Solaris and x86, Alpha, HPPA, Sparc and Sparc64.
Compiling
Just type make to compile.
Type make install to have pipebench be installed in /usr/local/bin
Download (0.011MB)
Added: 2005-04-12 License: GPL (GNU General Public License) Price:
1656 downloads
gmailsender 1.3
gmailsender is a mono based mail sending application. more>>
gmailsender is a mono based mail sending application.
Use it to send Email through a smtp server (only without authentification) with an optional attached file.
gmailsender is under the GPL license.
Installation:
1. make
2. mono gmailsender.exe
and if you want to install it into your /usr/local/bin (as root) :
3. make install
Enhancements:
- now gmailsender use gtk-sharp2
<<lessUse it to send Email through a smtp server (only without authentification) with an optional attached file.
gmailsender is under the GPL license.
Installation:
1. make
2. mono gmailsender.exe
and if you want to install it into your /usr/local/bin (as root) :
3. make install
Enhancements:
- now gmailsender use gtk-sharp2
Download (0.080MB)
Added: 2006-10-16 License: GPL (GNU General Public License) Price:
1104 downloads
Psunami Bulletin Board 0.5.3
Psunami Bulletin Board is an Open Source alternative to the popular Ultimate Bulletin Board software. more>>
Psunami Bulletin Board is an Open Source alternative to the popular Ultimate Bulletin Board software, and aims for speed, ease of use, and a full feature set.
For installation, do the following:
1)Recursively copy everything from ./cgi-bin/ into your servers cgi-bin/ directory.
2)Recursively chown (chown -R) the psunami/ directory to the user that your web server uses (www-data on Debian, nobody on Slack, httpd on RHat-based systems (Ive been told that it is nobody on someRHat systems), wwwrun on SuSE. Anyone know what it is for others?) If you are unable to chown (eg. you are not the superuser) then make sure it is all readable/writable by the user (777 works, but is probably much too generous). Also do this to the psunami.conf file in cgi-bin.
3)Make psunami.cgi, psunami_admin.cgi, and psunami_moderate.cgi executable by the user that your web server uses. (chmod u+x *.cgi)
4)Change the paths to your perl executable if necessary. The paths are at the top of psunami.cgi, psunami_moderate.pl, and psunami_admin.cgi and default to /usr/bin/perl. Type which perl at a command prompt if you dont know where the executable is.
5)Run psunami_admin.cgi and create a new board. The initial login is psunami and the password is bulletin (no quotes).
6)Make sure that your mail program is configured properly in the preferences. It defaults to /usr/bin/sendmail.
7)Once you have created an account for yourself and given it admin rights, make sure you delete the psunami user.
<<lessFor installation, do the following:
1)Recursively copy everything from ./cgi-bin/ into your servers cgi-bin/ directory.
2)Recursively chown (chown -R) the psunami/ directory to the user that your web server uses (www-data on Debian, nobody on Slack, httpd on RHat-based systems (Ive been told that it is nobody on someRHat systems), wwwrun on SuSE. Anyone know what it is for others?) If you are unable to chown (eg. you are not the superuser) then make sure it is all readable/writable by the user (777 works, but is probably much too generous). Also do this to the psunami.conf file in cgi-bin.
3)Make psunami.cgi, psunami_admin.cgi, and psunami_moderate.cgi executable by the user that your web server uses. (chmod u+x *.cgi)
4)Change the paths to your perl executable if necessary. The paths are at the top of psunami.cgi, psunami_moderate.pl, and psunami_admin.cgi and default to /usr/bin/perl. Type which perl at a command prompt if you dont know where the executable is.
5)Run psunami_admin.cgi and create a new board. The initial login is psunami and the password is bulletin (no quotes).
6)Make sure that your mail program is configured properly in the preferences. It defaults to /usr/bin/sendmail.
7)Once you have created an account for yourself and given it admin rights, make sure you delete the psunami user.
Download (0.063MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
1216 downloads
Free Link Page 1.2
Free Link Page is a project that allows visitors to add links to your page in a specified category. more>>
Free Link Page is a project that allows visitors to add links to your page in a specified category.
This script allows visitors to add links to your page in a specified category. It is quite easy to install.
The administration module supports deleting of existing links.
Installation:
1.Open links.pl with a text editor.
Change the url in line one, to the Perl program at your server.
Usually it is: - /usr/bin/perl or /usr/local/bin/perl for Unix.
- C:/Perl/Perl.exe for Windows (use slash "/")
Set the correct paths and required urls.
2.Upload links.pl in ASCII-mode to your cgi-bin directory
and change mode it to 755 (-rwxr-xr-x).
3.Open addlink.html with a text editor.
Change the line
to the correct location of links.pl
Thats all.
<<lessThis script allows visitors to add links to your page in a specified category. It is quite easy to install.
The administration module supports deleting of existing links.
Installation:
1.Open links.pl with a text editor.
Change the url in line one, to the Perl program at your server.
Usually it is: - /usr/bin/perl or /usr/local/bin/perl for Unix.
- C:/Perl/Perl.exe for Windows (use slash "/")
Set the correct paths and required urls.
2.Upload links.pl in ASCII-mode to your cgi-bin directory
and change mode it to 755 (-rwxr-xr-x).
3.Open addlink.html with a text editor.
Change the line
to the correct location of links.pl
Thats all.
Download (0.042MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
915 downloads
h4xx0ri5e
h4xx0ri5e is a service menu which renames files to give them a more hackerish look. more>>
h4xx0ri5e is a service menu which renames files to give them a more hackerish look.
Exemple:
hacker -> h4xx0r
hack -> h4xx
the -> teh
a, A -> 4
l, L -> 1
o, O -> 0
s, S -> 5
Hope you may have fun with it.
Installation:
just copy (i assume youve got kde in the standard place):
h4xx0r15e.desktop to ~/.kde/share/apps/konqueror/servicemenus (for yourself), or
to /usr/share/apps/konqueror/servicemenus/ (for everyone), and
h4xx0r15e.sh to one of the $PATH directories, f.ex. /usr/local/bin, or /usr/bin
Known problems:
doesnt work with filenames with spaces. sorry, i just dont feel like trying to fix it now since i know the whole thing is useless and pure fun, anyway.
<<lessExemple:
hacker -> h4xx0r
hack -> h4xx
the -> teh
a, A -> 4
l, L -> 1
o, O -> 0
s, S -> 5
Hope you may have fun with it.
Installation:
just copy (i assume youve got kde in the standard place):
h4xx0r15e.desktop to ~/.kde/share/apps/konqueror/servicemenus (for yourself), or
to /usr/share/apps/konqueror/servicemenus/ (for everyone), and
h4xx0r15e.sh to one of the $PATH directories, f.ex. /usr/local/bin, or /usr/bin
Known problems:
doesnt work with filenames with spaces. sorry, i just dont feel like trying to fix it now since i know the whole thing is useless and pure fun, anyway.
Download (0.002MB)
Added: 2006-05-08 License: GPL (GNU General Public License) Price:
1265 downloads
Datalink library 1.0.1
Datalink library for Linux uses the SVGAlib to send data to the Timex DataLink watches. more>>
Datalink library for Linux uses the SVGAlib to send data to the Timex DataLink watches.
You will need SVGAlib installed and the development headers and libraries for SVGAlib to compile against.
Compiling:
Type make depend to make the dependences.
$ make depend
Then just type `make` on the command line.
$ make
Installing:
Type `make install` on the command line.
% make install
The default locations of the installed programs are:
/usr/local/lib/libdatalink.so.1
/usr/local/lib/libdatalink.a
/usr/local/include/datalink.h
/usr/local/bin/svgablink
/usr/local/bin/serblink
/usr/local/bin/setwatch
Enhancements:
- Fixed the setwatch options of -app and +app to say appointments instead of wristapp.
- setwatch was trying to run svgablink with -150S instead of -150s
- The -file (for creating a DEBUGOUTPUT) was broken, fixed.
<<lessYou will need SVGAlib installed and the development headers and libraries for SVGAlib to compile against.
Compiling:
Type make depend to make the dependences.
$ make depend
Then just type `make` on the command line.
$ make
Installing:
Type `make install` on the command line.
% make install
The default locations of the installed programs are:
/usr/local/lib/libdatalink.so.1
/usr/local/lib/libdatalink.a
/usr/local/include/datalink.h
/usr/local/bin/svgablink
/usr/local/bin/serblink
/usr/local/bin/setwatch
Enhancements:
- Fixed the setwatch options of -app and +app to say appointments instead of wristapp.
- setwatch was trying to run svgablink with -150S instead of -150s
- The -file (for creating a DEBUGOUTPUT) was broken, fixed.
Download (0.043MB)
Added: 2006-09-15 License: GPL (GNU General Public License) Price:
1135 downloads
RBLchk 1.1
RBLchk is a simple utility that checks an IP address with the most useful and reliable RBLs (real-time blackhole lists). more>>
RBLchk is a simple utility that checks an IP address with the most useful and reliable RBLs (real-time blackhole lists).
Install
Under the root account:
make
make install
By default, rblchk will be installed into /usr/bin directory.
Usage: rblchk 127.0.0.2
Enhancements:
- The ORDB list was removed.
- Cosmetic enhancements were made.
<<lessInstall
Under the root account:
make
make install
By default, rblchk will be installed into /usr/bin directory.
Usage: rblchk 127.0.0.2
Enhancements:
- The ORDB list was removed.
- Cosmetic enhancements were made.
Download (0.008MB)
Added: 2007-01-18 License: GPL (GNU General Public License) Price:
1010 downloads
svcmon 1.0
svcmon is a versatile TCP service watchdog, that can optionally send email alerts when services are detected as being down. more>>
svcmon project is a versatile TCP service watchdog, that can optionally send email alerts when services are detected as being down.
svcmon is written using Perl, and requires a few "standard" Perl modules, which should be included as part of your base Perl installation:
Net::SMTP
IO::Socket
Getopt::Std
Installation:
Download the tarball, and extract to an appropriate location, e.g.:
# cd /usr/local
# wget http://www.zazzybob.com/svcmon/svcmon.tar.gz
# tar xzf ./svcmon.tar.gz
# ls ./svcmon
README bin etc
There are TWO configuration files (discussed below):
# cd /usr/local/svcmon
# ls etc
svcmail.conf svcmon.conf
Ensure that svcmon.pl is executable before continuing:
# chmod u+x /usr/local/svcmon/bin/svcmon.pl
<<lesssvcmon is written using Perl, and requires a few "standard" Perl modules, which should be included as part of your base Perl installation:
Net::SMTP
IO::Socket
Getopt::Std
Installation:
Download the tarball, and extract to an appropriate location, e.g.:
# cd /usr/local
# wget http://www.zazzybob.com/svcmon/svcmon.tar.gz
# tar xzf ./svcmon.tar.gz
# ls ./svcmon
README bin etc
There are TWO configuration files (discussed below):
# cd /usr/local/svcmon
# ls etc
svcmail.conf svcmon.conf
Ensure that svcmon.pl is executable before continuing:
# chmod u+x /usr/local/svcmon/bin/svcmon.pl
Download (0.005MB)
Added: 2006-10-10 License: GPL (GNU General Public License) Price:
1111 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above bin search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed