managed
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1624
Managed Services 1.0
Managed Service screen saver for businesses that want to rent hardware software. EtomicMails services act as the ultimate managed service for your or... more>> <<less
Download (1132KB)
Added: 2009-04-13 License: Freeware Price: Free
193 downloads
Cache::Memcached::Managed 0.16
Cache::Memcached::Managed is a Perl module that provides an API for managing cached information. more>>
Cache::Memcached::Managed is a Perl module that provides an API for managing cached information.
SYNOPSIS
use Cache::Memcached::Managed;
my $cache = Cache::Memcached::Managed->new( 127.0.0.1:12345 );
$cache->set( $value );
$cache->set( $value,$id );
$cache->set( value => $value,
id => $id,
key => $key,
version => 1.1,
namespace => foo,
expiration => 1D, );
my $value = $cache->get( $id );
my $value = $cache->get( id => $id,
key => $key );
<<lessSYNOPSIS
use Cache::Memcached::Managed;
my $cache = Cache::Memcached::Managed->new( 127.0.0.1:12345 );
$cache->set( $value );
$cache->set( $value,$id );
$cache->set( value => $value,
id => $id,
key => $key,
version => 1.1,
namespace => foo,
expiration => 1D, );
my $value = $cache->get( $id );
my $value = $cache->get( id => $id,
key => $key );
Download (0.038MB)
Added: 2007-03-08 License: Perl Artistic License Price:
960 downloads
Database of Managed Objects 2.4 Beta
DMO stands for Database of Managed Objects. more>>
DMO stands for "Database of Managed Objects." This is a tool for documenting all objects within a data center.
Database of Managed Objects provides an object-based overlay on a MySQL database, with a Web-based interface, which allows new objects to be defined in a hierarchy.
Each object can have attributes defined, which are inherited by objects below in the hierarchy. Information can be imported in CSV or XML format, and reports can be produced in XML, CSV, PDF and HTML formats.
DMO uses PHP and MySQL to support documentation of all network and system objects within your computing environment. It offers a Web interface that enables easy navigation through objects, instances and attributes, with XML and access controls.
Enhancements:
- This is the first significant release of DMO for nearly two years.
- It works with Linux and Windows (XAMPP), but should work well with any LAMP stack including PHP4.
- New features include much more graphical viewing, as well as mapping objects onto maps with drill-down to additional layers of maps following dependency trails, a new Flash viewer for browsing through objects, and the ability to create chains of objects based on any attribute type (where any other object can be an attribute of any other object).
<<lessDatabase of Managed Objects provides an object-based overlay on a MySQL database, with a Web-based interface, which allows new objects to be defined in a hierarchy.
Each object can have attributes defined, which are inherited by objects below in the hierarchy. Information can be imported in CSV or XML format, and reports can be produced in XML, CSV, PDF and HTML formats.
DMO uses PHP and MySQL to support documentation of all network and system objects within your computing environment. It offers a Web interface that enables easy navigation through objects, instances and attributes, with XML and access controls.
Enhancements:
- This is the first significant release of DMO for nearly two years.
- It works with Linux and Windows (XAMPP), but should work well with any LAMP stack including PHP4.
- New features include much more graphical viewing, as well as mapping objects onto maps with drill-down to additional layers of maps following dependency trails, a new Flash viewer for browsing through objects, and the ability to create chains of objects based on any attribute type (where any other object can be an attribute of any other object).
Download (14.4MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
814 downloads
Sys::Manage::Cmd 0.56
Sys::Manage::Cmd - Systems management command volley. more>>
Sys::Manage::Cmd - Systems management command volley.
SYNOPSIS
Command line script
use Sys::Manage::Cmd;
my $s =Sys::Manage::Cmd->new();
# Script associations (see also embedded in source):
$s->{-assoc}->{.ftp}=sub{[ftp,-n,-s:loginfile,!elem!,[0]]};
# Target collections:
$s->{-target}->{all} =[1,2,3,4,5,6];
# Target branches:
$s->{-branch}->{1} =[1,2];
$s->{-branch}->{2} =[3,4];
$s->{-branch}->{3} =[5,6];
# Command-line setup / loop:
$s->set([@ARGV]);
# Command assignments:
#$s->set(-k=>assign, -o=>b, -i=>0, -ping=>1);
#$s->execute(-a=>assignment name, -t=>[targets], -cline=>[command line]);
#...
# Command line execution:
$s->set(-k=>cmd, -o=>b, -i=>0, -ping=>0);
$s->execute([@ARGV]);
Command line
script -option -option... target command-line
script -option... -ttarget... command-line
Examples of command line
script all dir !elem!
script -ob -tall dir !elem!
script -rPrevId -tall dir !elem!
script -aTest -tall dir !elem!
script -l10 -tall dir !elem!
Options of command line
(see also -cline and -i, -k, -l, -o, -r, -t, -u, -x, -v, -g)
-kNameSpace - kind (namespace) of command
-rCommandId - redo command id (used also inside -l); or switch (for -a)
-aAssignName - assignment name, to use as command id
-lPauseSecs - loop with pause before each subsequent redo
-lg... - ... for pings usuccessful only
-lv, -lw... - ... console verbose or windowed subsequent turns
-o(s|c|b) - order of execution:
sequental
concurrent
branched (concurrent branches)
-tTargetName - target, may be several -t, instead of positional argument
-xTargetExcl - exclusion from target list, may be several -x
-uUser:pswd - user name and password for target
-g - ping target before command, also use -gPingTimeout
-gx - exclude unsuccessful targets sequentially
-i - ignore exit code
-v(0|1|2) - verbosity level
-vc... - ... cmdfile rows include
-vt... - ... date-time include
Embedded commands
(see also -cline and -assoc)
script.ext - interpreting of scripts alike .pl, .bat, .ftp, .rdo.*
rcmd, rdo, - commands to remote nodes using
fput, fget, Sys::Manage::Conn
mput, mget (!elem!, !user!, !pswd! substitutions not needed)
cmdfile - evaluate command lines file or Perl script
!elem!, < - target element and source file substitutions
!user!, !pswd! - user name and password substitutions
!log! - log filesystem name substitution
Embedding command line
(see also ENVIRONMENT and SLOTS)
if (!defined($ENV{SMELEM}) # command volley:
|| ($ENV{SMELEM} eq )) {
system($^X, script, -k0, target, $0)
} elsif (!$ENV{SMDIR}) {
die "Execute this script on Manager!"
} elsif ($ENV{SMDIR}) {
die "Execute this script on Agent!"
} else { # command script:
....
1 # success
}
<<lessSYNOPSIS
Command line script
use Sys::Manage::Cmd;
my $s =Sys::Manage::Cmd->new();
# Script associations (see also embedded in source):
$s->{-assoc}->{.ftp}=sub{[ftp,-n,-s:loginfile,!elem!,[0]]};
# Target collections:
$s->{-target}->{all} =[1,2,3,4,5,6];
# Target branches:
$s->{-branch}->{1} =[1,2];
$s->{-branch}->{2} =[3,4];
$s->{-branch}->{3} =[5,6];
# Command-line setup / loop:
$s->set([@ARGV]);
# Command assignments:
#$s->set(-k=>assign, -o=>b, -i=>0, -ping=>1);
#$s->execute(-a=>assignment name, -t=>[targets], -cline=>[command line]);
#...
# Command line execution:
$s->set(-k=>cmd, -o=>b, -i=>0, -ping=>0);
$s->execute([@ARGV]);
Command line
script -option -option... target command-line
script -option... -ttarget... command-line
Examples of command line
script all dir !elem!
script -ob -tall dir !elem!
script -rPrevId -tall dir !elem!
script -aTest -tall dir !elem!
script -l10 -tall dir !elem!
Options of command line
(see also -cline and -i, -k, -l, -o, -r, -t, -u, -x, -v, -g)
-kNameSpace - kind (namespace) of command
-rCommandId - redo command id (used also inside -l); or switch (for -a)
-aAssignName - assignment name, to use as command id
-lPauseSecs - loop with pause before each subsequent redo
-lg... - ... for pings usuccessful only
-lv, -lw... - ... console verbose or windowed subsequent turns
-o(s|c|b) - order of execution:
sequental
concurrent
branched (concurrent branches)
-tTargetName - target, may be several -t, instead of positional argument
-xTargetExcl - exclusion from target list, may be several -x
-uUser:pswd - user name and password for target
-g - ping target before command, also use -gPingTimeout
-gx - exclude unsuccessful targets sequentially
-i - ignore exit code
-v(0|1|2) - verbosity level
-vc... - ... cmdfile rows include
-vt... - ... date-time include
Embedded commands
(see also -cline and -assoc)
script.ext - interpreting of scripts alike .pl, .bat, .ftp, .rdo.*
rcmd, rdo, - commands to remote nodes using
fput, fget, Sys::Manage::Conn
mput, mget (!elem!, !user!, !pswd! substitutions not needed)
cmdfile - evaluate command lines file or Perl script
!elem!, < - target element and source file substitutions
!user!, !pswd! - user name and password substitutions
!log! - log filesystem name substitution
Embedding command line
(see also ENVIRONMENT and SLOTS)
if (!defined($ENV{SMELEM}) # command volley:
|| ($ENV{SMELEM} eq )) {
system($^X, script, -k0, target, $0)
} elsif (!$ENV{SMDIR}) {
die "Execute this script on Manager!"
} elsif ($ENV{SMDIR}) {
die "Execute this script on Agent!"
} else { # command script:
....
1 # success
}
Download (0.060MB)
Added: 2007-07-24 License: Perl Artistic License Price:
824 downloads
App::Manager 0.03
App::Manager is a Perl module for installing, managing and uninstalling software packages. more>>
App::Manager is a Perl module for installing, managing and uninstalling software packages.
SYNOPSIS
use App::Manager; # use appman instead
<<lessSYNOPSIS
use App::Manager; # use appman instead
Download (0.017MB)
Added: 2007-01-11 License: Perl Artistic License Price:
1023 downloads
httpFileManager 0.0.6
httpFileManager is a file management script written in PHP allowing the remote administration of files over HTTP. more>>
httpFileManager is a file management script written in PHP allowing the remote administration of files over HTTP.
httpFileManager will turn your standard browser into a "Windows Explorer" and allow managing files on your web server on the fly. Its a complete replacement of traditional FTP, allowing you to manage files on your web server just with a web browser instead of a FTP client.
httpFileManager project also will provide extended features which are impossible with FTP such as creating and editing HTML files right on the server and zipping and unzipping files on the fly.
The purpose of httpFileManager is allowing file management and Web site maintenance right on the server. It may be used to manage a single site or multiple sites. The root of the files to be managed must of course be Web accessible.
httpFileManager is a simple, yet powerful tool allowing the administration of files through HTTP.
Enhancements:
- This release fixed a security issue.
- A number of smaller bugfixes and code improvements were also included.
<<lesshttpFileManager will turn your standard browser into a "Windows Explorer" and allow managing files on your web server on the fly. Its a complete replacement of traditional FTP, allowing you to manage files on your web server just with a web browser instead of a FTP client.
httpFileManager project also will provide extended features which are impossible with FTP such as creating and editing HTML files right on the server and zipping and unzipping files on the fly.
The purpose of httpFileManager is allowing file management and Web site maintenance right on the server. It may be used to manage a single site or multiple sites. The root of the files to be managed must of course be Web accessible.
httpFileManager is a simple, yet powerful tool allowing the administration of files through HTTP.
Enhancements:
- This release fixed a security issue.
- A number of smaller bugfixes and code improvements were also included.
Download (1.3MB)
Added: 2006-05-23 License: GPL (GNU General Public License) Price:
1250 downloads
easy TreeManager 0.1.0
easy TreeManager provides a bookmark manager for group of users. more>>
easy TreeManager provides a bookmark manager for group of users.
easy TreeManager is a kind of onsite bookmark manager for a group of users. Once logged in, you can access all links managed in the navigation tree.
These links can be organized by using folders and by ordering them.
The Administrator can add, delete and edit links and assign these rights to other users, too.
<<lesseasy TreeManager is a kind of onsite bookmark manager for a group of users. Once logged in, you can access all links managed in the navigation tree.
These links can be organized by using folders and by ordering them.
The Administrator can add, delete and edit links and assign these rights to other users, too.
Download (1.7MB)
Added: 2007-02-01 License: MPL (Mozilla Public License) Price:
996 downloads
Debmarshal
Debmarshal is a Debian repository management system. more>>
Debmarshal is a Debian repository management system. The project is designed to manage a set of local release tracks of modified and additional packages on top of a full public repository (eg. Ubuntu/dapper, Debian/sid ...).
The local database is Berkeley DB for speed. Packaged file overlaps and undeclared dependency problems can be detected. Multiple labels and permanent numbered snapshots are a feature of debmarshal managed repositories.
<<lessThe local database is Berkeley DB for speed. Packaged file overlaps and undeclared dependency problems can be detected. Multiple labels and permanent numbered snapshots are a feature of debmarshal managed repositories.
Download (MB)
Added: 2007-08-08 License: GPL (GNU General Public License) Price:
808 downloads
SMBGate 1.0
SMBGate provides a gateway and firewall with authentication managed by a Samba Primary Domain Controller . more>>
SMBGate provides a gateway and firewall with authentication managed by a Samba Primary Domain Controller. The firewall rules are set on a per-user basis.
<<less Download (0.015MB)
Added: 2006-07-01 License: GPL (GNU General Public License) Price:
1212 downloads
somaplayer 0.5.2
somaplayer is a music player for mp3, ogg, wav, audiocd, mp3 streaming, ogg streaming. more>>
Music player for mp3, ogg, wav, audiocd, mp3 streaming, ogg streaming.
Its fast, comfortable and able to use the appropriate sound drivers or daemons to male music, to encode in mp3 or ogg,and to stream directly to an icecast server (icecast2 or shoutcast).
somaplayer is even a sound daemon (sds- soma daemon sound), which is able to accept connections from more somaplayers at the same time or from any other sound player (xmms, mpg123 and others, thanks to a special wrapper.
All those sources are added and managed via driver or daemon, streammed or encoded as above.
<<lessIts fast, comfortable and able to use the appropriate sound drivers or daemons to male music, to encode in mp3 or ogg,and to stream directly to an icecast server (icecast2 or shoutcast).
somaplayer is even a sound daemon (sds- soma daemon sound), which is able to accept connections from more somaplayers at the same time or from any other sound player (xmms, mpg123 and others, thanks to a special wrapper.
All those sources are added and managed via driver or daemon, streammed or encoded as above.
Download (1.3MB)
Added: 2005-07-20 License: GPL (GNU General Public License) Price:
1559 downloads
Mnemona GUI Client 3.1
Mnemona GUI Client provides a GUI interface for accessing sets in a trove managed by a Mnemona Trove Server. more>>
Mnemona GUI Client is a Java application that provides a GUI interface for accessing sets in a trove managed by a Mnemona Trove Server.
It communicates with the trove server via Java RMI and supports SSL.
It uses the same GUI design as Fingerstring. It contains a full range of commands for creating, searching, and modifying Mnemona sets.
It also has a command for creating users, so it can be used (by a root user) to manage a Mnemona trove server. Commands are invoked through a standard menu arrangement.
<<lessIt communicates with the trove server via Java RMI and supports SSL.
It uses the same GUI design as Fingerstring. It contains a full range of commands for creating, searching, and modifying Mnemona sets.
It also has a command for creating users, so it can be used (by a root user) to manage a Mnemona trove server. Commands are invoked through a standard menu arrangement.
Download (1.6MB)
Added: 2006-09-22 License: Free for non-commercial use Price:
1128 downloads
fbpanel 4.12
fbpanel is a lightweight, NETWM compliant desktop panel. more>>
fbpanel is desktop panel which provides graphical information and feedback about desktop activity and allows interaction with the window manager.
Main features:
NETWM compliance. It implies co-working with any modern window manager.
variety of plugins:
- taskbar; show list of the managed windows (tasks)
- pager; thumbnailed view of the desktop
- launchbar; buttons to quickly launch applications
- show desktop; button to iconify or shade all windows
- image; display an image
- clock; show the current time and/or date
- system tray; tray for XEMBED icons (aka docklets)
- space; just seize space
- menu; menu with text and images
- deskno; display desktop number and name
modest resource usage
Enhancements:
- An autohide feature and a digital clock plugin were added.
- Many bugs were fixed.
<<lessMain features:
NETWM compliance. It implies co-working with any modern window manager.
variety of plugins:
- taskbar; show list of the managed windows (tasks)
- pager; thumbnailed view of the desktop
- launchbar; buttons to quickly launch applications
- show desktop; button to iconify or shade all windows
- image; display an image
- clock; show the current time and/or date
- system tray; tray for XEMBED icons (aka docklets)
- space; just seize space
- menu; menu with text and images
- deskno; display desktop number and name
modest resource usage
Enhancements:
- An autohide feature and a digital clock plugin were added.
- Many bugs were fixed.
Download (0.094MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
820 downloads
Parakeet 0.1.0
Parakeet is a web-based application for managing and reporting on PyKotas print quotas. more>>
Parakeet is a web-based application for managing and reporting on PyKotas print quotas. Parakeet project is currently in active development.
<<less Download (0.053MB)
Added: 2007-01-04 License: GPL (GNU General Public License) Price:
1025 downloads
wine-doors 0.1
Wine doors is an application designed to assist users in obtaining, installing, uninstalling and working with wine applications. more>>
Wine-doors is an application designed to assist users in obtaining, installing, uninstalling and working around the caveats associated with wine applications.
Although wine doors is intended to be a replacement for winetools it is not limited to release cycles for the applications available to install, instead a web service will be provided, this web service will serve XML Pack Lists and Application Packs as well as various other resources.
Using a web service to connect users to applications means the service can be community managed thus splitting application installation and configuration from the user interface used to install the applications.
<<lessAlthough wine doors is intended to be a replacement for winetools it is not limited to release cycles for the applications available to install, instead a web service will be provided, this web service will serve XML Pack Lists and Application Packs as well as various other resources.
Using a web service to connect users to applications means the service can be community managed thus splitting application installation and configuration from the user interface used to install the applications.
Download (2.5MB)
Added: 2007-07-06 License: GPL (GNU General Public License) Price:
850 downloads
ComicReader 0.4
ComicReader is an advanced software program which can download daily comics to your pc. more>>
ComicReader is an advanced software program which can download daily comics to your pc.
The ComicReader is a program to read daily comics like Garfield, Dilbert, Userfriendly and lots of other daily comics. The comicreader has unique features like autodownloading the comics, central managed comic definitions and the option to email comics.
The current version of ComicReader is 0.1, which contains many bugs and is missing a lot of features. I urge, however, to check it out and let me know what you think of it.
<<lessThe ComicReader is a program to read daily comics like Garfield, Dilbert, Userfriendly and lots of other daily comics. The comicreader has unique features like autodownloading the comics, central managed comic definitions and the option to email comics.
The current version of ComicReader is 0.1, which contains many bugs and is missing a lot of features. I urge, however, to check it out and let me know what you think of it.
Download (3.1MB)
Added: 2006-04-23 License: GPL (GNU General Public License) Price:
1393 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 managed 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