Main > Free Download Search >

Free aix software for linux

aix

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 137
AIX::ODM 1.0.2

AIX::ODM 1.0.2


AIX::ODM is a Perl module for retrieving ODM information about an AIX (RS/6000/pSeries) system. more>>
AIX::ODM is a Perl module for retrieving ODM information about an AIX (RS/6000/pSeries) system.

SYNOPSIS

use AIX::ODM;

my %odm = odm_dump(C|P);
while ( ($ndx1, $lev2) = each %odm ) {
while ( ($ndx2, $val) = each %$lev2 ) {
print "odm{${ndx1}}{${ndx2}} = ${odm{${ndx1}}{${ndx2}}}n";
}
}

my %dev = odm_classes(C|P);
foreach ${devname} ( keys %dev ) {
print "dev{${devname}} = ${dev{${devname}}}n";
}

my %attribs = odm_attributes(${dev{devname}};
foreach ${attrname} ( keys %attribs ) {
print "attribs{${attrname}} = ${attribs{${attrname}}}n";
}

my ${devclass} = odm_class(C|P,${dev{devname});
my ${devsubcl} = odm_subclass(C|P,${dev{devname});

This module provides a Perl interface for accessing ODM information about an RS/6000 / pSeries machine running the AIX operating system. It makes available several functions, which return hashes of values containing device information and their attributes:

The syntax examples shown above as C|P should be read as "C" OR "P", meaning the argument should consist of a single quoted letter "C" or "P", but NOT both.

<<less
Download (0.003MB)
Added: 2007-04-12 License: Perl Artistic License Price:
938 downloads
AIX::Perfstat 0.03

AIX::Perfstat 0.03


AIX::Perfstat is a Perl wrapper for perfstat() functions. more>>
AIX::Perfstat is a Perl wrapper for perfstat() functions.

SYNOPSIS

use AIX::Perfstat;
$cput = AIX::Perfstat::cpu_total();
$diskt = AIX::Perfstat::disk_total();
$netift = AIX::Perfstat::netinterface_total();
$memoryt = AIX::Perfstat::memory_total();
$num_cpus = AIX::Perfstat::cpu_count();
$num_disks = AIX::Perfstat::disk_count();
$num_netifs = AIX::Perfstat::netinterface_count();
$cpu_data = AIX::Perfstat::cpu(desired_number = 1, name = "");
$disk_data = AIX::Perfstat::disk(desired_number = 1, name = "");
$netif_data = AIX::Perfstat::netinterface(desired_number = 1, name = "");

This Perl module lets you call all of the perfstat functions defined on AIX 5.1 and returns system data in Perl data structures.

The AIX::Perfstat::cpu_total, AIX::Perfstat::disk_total, AIX::Perfstat::netinterface_total, and AIX::Perfstat::memory_total functions each return a hashref containing all of the respective C structures.

The AIX::Perfstat::cpu_count, AIX::Perfstat::disk_count, and AIX::Perfstat::netinterface_count functions each return a count of how many structures are available from the AIX::Perfstat::cpu, AIX::Perfstat::disk, and AIX::Perfstat::netinterface functions respectively.

The AIX::Perfstat::cpu, AIX::Perfstat::disk, and AIX::Perfstat::netinterface functions each take up to two arguments and return a reference to an array of hashes. The arguments specify the number of records to return, and the name of the record to start with. These arguments are equivalent to the desired_number and name parameters to the perfstat functions. Only valid data is returned (Example: If you call AIX::Perfstat::netinterface(5) on a machine with only 2 network interfaces, the returned array will only contain two entries.) When these functions are called with a variable for the name parameter the variable will be modified in place to contain the name of the next available record, or "" if no more records are available.

<<less
Download (0.038MB)
Added: 2007-04-12 License: Perl Artistic License Price:
932 downloads
mod_auth_aix 1.4

mod_auth_aix 1.4


mod_auth_aix is Apache module for authentication via AIX Loadable Authentication Modules. more>>
"Loadable Authentication Modules" are AIXs way to extend the identification and authentication functions of the operating system. They are - up to a certain degree - the AIX equivalent of PAM and NSS mechanisms known by many other systems.

mod_auth_aix is an Apache module that allows the Apache web server to use AIX Loadable Authentication Modules as its source of basic authentication. It has originally been inspired by Paul Hensons excellent mod_auth_dce, which seems to work perfectly on every platform but AIX.

Although mod_auth_dce is more powerful than mod_auth_aix, the latter already meets my current demands. Due to its generic approach, mod_auth_aix should work with any AIX Loadable Authentication Module, not just (but of course including) the DCE module.

Building and installing mod_auth_aix:

mod_auth_aix comes with a configure script, so just run

./configure [--with-apxs=/path/to/apxs] [--with-kafs-syscall]
make
make install

If Apache should be able to serve requests with the DCE credentials of the authenticated user (i.e. have access to DFS during requests), youll have to compile mod_auth_aix with kafs_syscall support.

Setting up Apache:

Add "LoadModule auth_aix_module libexec/mod_auth_aix.so" to your httpd.conf.

Then, add appropriate directives to your httpd.conf and/or .htaccess files. Configuration examples can be found in the examples subdirectory. Currently, all configuration directives work in a per directory context.

AuthAIX

When this directive is on, AIX authentication is performed within the directory specified. The default is off. Youll also need valid AuthType, AuthName, and require directives in the directory container. The only supported AuthType is Basic. You can supply any AIX user and group (known by the AIX Loadable Authentication Module specified) to the Apache require directive.

AuthAIXAuthoritative

mod_auth_aix will either approve or deny a request, when this directive is on. The default is off. When the directive is off and a request is not approved (i.e. an authentication failure occurs), mod_auth_aix will decline to handle the request and allow other lower level modules to attempt authentication.

AuthAIXMethod

With this directive, you can specify, which AIX Loadable Authentication Module to use for authentication. The default is SYSTEM, which uses the module specified by the SYSTEM login grammar (set in /etc/security/user) for the given user. Otherwise, mod_auth_aix will load the specified AIX Loadable Authentication Module and call this modules identification and authentication functions for the current request.

<<less
Download (0.017MB)
Added: 2006-05-26 License: GPL (GNU General Public License) Price:
1246 downloads
Software::Packager::Aix 0.10

Software::Packager::Aix 0.10


Software::Packager::Aix is the Software::Packager extension for AIX 4.1 and above. more>>
Software::Packager::Aix is the Software::Packager extension for AIX 4.1 and above.

SYNOPSIS

use Software::Packager;
my $packager = new Software::Packager(aix);

This module is used to create software packages in a Backup-format file (bff) suitable for installation with installp.

This module creates packages for AIX 4.1 and higher only. Due to the compatability requirements of Software::Packager multiple components in the same package are not supported. This may be changed at some point in the future.

This module is in part a baised on the workings of the lppbuild scripts. Where possible Ive worked from the standards, where I had no idea what they were talking about I refered to the lppbuild scripts for an understanding.

As such Id like to thank the writers of lppbuild version 2.1. I believe these scripts to be written by Jim Abbey. Who ever it was thanks for your work. It has proven envaluable. lppbuild is available from http://aixpdslib.seas.ucla.edu/

<<less
Download (0.020MB)
Added: 2007-01-09 License: Perl Artistic License Price:
1019 downloads
Software::Packager::Object::Aix 0.10

Software::Packager::Object::Aix 0.10


Software::Packager::Object::Aix module it extends Software::Packager::Object and adds extra methods for use by the AIX packager. more>>
Software::Packager::Object::Aix module it extends Software::Packager::Object and adds extra methods for use by the AIX software packager.

FUNCTIONS

LPP TYPE

The LPP type for objects determines the type of LPP package created. If the objects destination is under /usr/share then the object is of type SHARE If the objects destination is under /usr then the object has a type of USER If the objects destination is under any other directory then the object has a type of ROOT+USER.

Note: when using the methods

lpp_type_is_share()
lpp_type_is_user()
lpp_type_is_root()

If the lpp_type_is_share() returns true then both lpp_type_is_user() and lpp_type_is_root() will also return true.

Also if lpp_type_is_user() returns true then lpp_type_is_root() will also return true. So when calling these method do something like...

foreach my $object ($self->get_object_list())
{
$share++ and next if $object->lpp_type_is_share();
$user++ and next if $object->lpp_type_is_user();
$root++ and next if $object->lpp_type_is_root();
}

lpp_type_is_share()

$share++ if $object->lpp_type_is_share();

Returns the true if the LPP is SHARE otherwise it returns undef.

lpp_type_is_user()

$share++ if $object->lpp_type_is_user();

Returns the true if the LPP is USER otherwise it returns undef.

lpp_type_is_root()

$share++ if $object->lpp_type_is_root();

Returns the true if the LPP is ROOT+USER otherwise it returns undef.

inventory_type()

$type = $object->inventory_type();

Returns the type of object to be added to the inventory file.

destination()

$object->destination($value);
$destination = $object->destination();

This method sets or returns the destination location for this object. The name of objects being installed cannot contain commas or colons. This is because commas and colons are used as delimiters in the control files used during the software installation process. Object names can contain non-ASCII charaters.

user()

This method sets or returns the user name that this object should be installed as.

group()

$object->group($value);
$group = $object->group();

This method sets or returns the group name that this object should be installed as.

links()

This method adds to the list of hard links to add for the file. If no arguments are passed then a string containing the list is returned.

<<less
Download (0.020MB)
Added: 2007-01-09 License: Perl Artistic License Price:
1018 downloads
ZABBIX 1.4.2

ZABBIX 1.4.2


ZABBIX is a software that monitors servers and applications. more>>
ZABBIX is software for monitoring of your applications, network and servers.
ZABBIX project supports both polling and trapping techniques to collect data from monitored hosts.
A flexible notification mechanism allows easy and quickly configure different types of notifications for pre-defined events.
Main features:
- Open Source solution
- Runs on AIX, FreeBSD, HP-UX, Linux, MacOS X, NetBSD, OpenBSD, Solaris, Tru64/OSF
- SQL database for storing configuration, collected data and trends
- Web interface offers minimal learning, ubiquitous access
- Instant drill down from real-time status of IT Services to historical trend and statistics
- Data visualisation and mapping
- High performance native ZABBIX agents for performance and integrity monitoring for virtually all platforms (UNIX, Win32)
- Monitoring of "agentless" environments
- Assuring and monitoring SLA for IT Services
- Monitoring of SNMP (v1,v2,v3) devices
<<less
Download (2.7MB)
Added: 2007-08-21 License: GPL (GNU General Public License) Price:
837 downloads
Klaxon 1.0

Klaxon 1.0


Klaxon is a simple detector od scanning booted from inetd. more>>
Klaxon is a simple detector od scanning booted from inetd.

Instead of actually executing anything, it returns a benign error to the caller, and syslogs the calling host, username, and name of attempted service access. Its also extremely useful for detecting portscanner attacks like those perpetrated by ISS and SATAN. Ident support (RFC931) is currently optional. klaxon is useful to watch in place of any tcp or udp service port where you would not suspect activity.

Ident is a protocol sometimes also called TAP which is based on RFC931. If the machine that the scan attempt supports this protocol (usually out of inet) you will get a username as well as the hostname of the attacking machine. NOTE: This information should be taken with a grain of salt as ident can be very easy to spoof. However, it can also be useful, so I have left it as an option in the source. The current timeout for determining if the remote machine supports ident is 3 seconds. You can adjust this in the Makefile. Both ident-full and ident-free version of the executable are built from one Makefile. Currently, it compiles out of the box on Solaris2.X, SunOS4.1.X, Digital Unix 3.2*, Linux, HPUX, AIX, and probably others.
<<less
Download (0.011MB)
Added: 2006-07-12 License: GPL (GNU General Public License) Price:
1202 downloads
BlackMail 0.31

BlackMail 0.31


BlackMail is a highly configurable SMTP mail filter that runs at a system level as a proxy to your existing mailer. more>>
BlackMail is a highly configurable SMTP mail filter that runs at a system level as a proxy to your existing mailer. Selectively reject bogus or spam mail during receipt, saving you extra storage space or irate users.
Blackmail operates at a system-wide level: all incoming and optionally outgoing mail is filtered.Will block unwanted mail relaying (if your mailer is unable to) and spams.
The filtering consists of various checks on the SMTP envelope and message headers: if any tests fail then the mail will be bounced. Blackmail can...
Check against spam sites
Check against spam keywords
Check host names and email addresses using DNS for validity
Check against the RBL (Realtime Blackhole List) for spam IP addresses
Check that To: and From: address do not match (a common spam signature)
Check correct header formation e.g. Message-ID
The spam sites and spam keywords are of your choice, you can block who or what you want. Minimal sample lists are provided.
BlackMail is known to work with:
Mailers: Smail, Sendmail, Qmail, Fetchmail
OSes: Aix, various BSD, Irix, Linux, NeXTStep 3.x, Solaris, SunOs, SVR4 (Re-confirmation is required for some of these OSes.)
It should be possible to use BlackMail with most SMTP mailers on most UNIX systems. Blackmail is not designed to run on Windows or OS/2, but if you wish to port it...
Enhancements:
- Removed old reference to www.bitgate.com
<<less
Download (0.056MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1206 downloads
ActivePerl 5.8.8.819

ActivePerl 5.8.8.819


ActivePerl is the complete, quality-assured and ready-to-install Perl distribution for AIX, HP-UX, Linux, Mac OS X, Solaris. more>>
ActivePerl project is the complete, quality-assured and ready-to-install Perl distribution for AIX, HP-UX, Linux, Mac OS X, Solaris, and Windows.
Whats included:
- Perl core
- Perl Package Manager
- Installers
- Complete online documentation
Enhancements:
- Release version of 64-bit ActivePerl for Linux, Solaris and Windows.
- Rewritten PPM client. The command line shell has been replaced by a graphical user interface.
- Bundles the Tcl and Tkx modules, plus a significant subset of the latest Tcl/Tk widgets.
<<less
Download (MB)
Added: 2007-01-12 License: Free To Use But Restricted Price:
1021 downloads
 
Other version of ActivePerl
ActivePerl (Linux) 5.10Perl distribution, available for Windows, Linux, Mac OS X, Solaris, AIX and HP-UX. Developers worldwide rely on ActivePerls completeness and ease-of-use. ActivePerl (Linux) 5.10 - Cherniavsky
Price: $0.00
License:Freeware
Download (18.29MB)
197 downloads
Added: 2009-04-18
ActiveTcl (Unix) 8.5.0.0

ActiveTcl (Unix) 8.5.0.0


ActiveTcl is the industry-standard Tcl distribution, available for Windows, Linux, Mac OS X, Solaris, AIX and HP-UX. Developers worldwide rely on ActiveTcls completeness and ease-of-use. more>>

ActiveTcl is the industry-standard Tcl distribution, available for Windows, Linux, Mac OS X, Solaris, AIX and HP-UX. Developers worldwide rely on ActiveTcls completeness and ease-of-use, while corporate users protect their infrastructure and stay competitive with quality-assured ActiveTcl business solutions. ActiveTcl is 100% compatible with the reference distribution of Tcl. Code tested with ActiveTcl will run on any Tcl installation that has the appropriate extensions installed.
ActiveState is committed to making Tcl easy to install and use on all major platforms. This release of ActiveTcl brings you the most stable release of Tcl in binary form. It also includes several of the most popular extensions pre-compiled and ready to use. Beginning with this release, we distribute and install the demos and examples of the various packages.
ActiveState also provides business solutions of dynamic languages, including enterprise distributions and OEM licensing, that offer guaranteed stability, expert support, unparalleled quality and cost-efficiency to organizations.

Requirements: HP-UX PA-RISC architecture only, Minimum HP-UX 11

Whats new in this version: ActiveTcl 8.5 now runs 10% faster than the previous version, due to bytecode optimizations, object caching and reduced memory usage. Developers will also benefit from richer time and date tools including year-2038 compliance, and a new and simpler module packaging standard.

<<less
Download (17.15MB)
Added: 2009-04-20 License: Freeware Price: $0.00
217 downloads
 
Other version of ActiveTcl
ActiveTcl (Linux) 8.5.0.0Tcl distribution, available for Windows, Linux, Mac OS X, Solaris, AIX and HP-UX. Developers worldwide rely on ActiveTcls completeness and ease-of-use. ActiveTcl (Linux) 8.5.0.0 - Cherniavsky
Price: $0.00
License:Freeware
Download (14.47MB)
220 downloads
Added: 2009-04-29
SDL_mixer 1.2.7

SDL_mixer 1.2.7


SDL_mixer is a sample multi-channel audio mixer library. more>>
SDL_mixer is a sample multi-channel audio mixer library. SDL_mixer supports any number of simultaneously playing channels of 16 bit stereo audio, plus a single channel of music, mixed by the popular MikMod MOD, Timidity MIDI, Ogg Vorbis, and SMPEG MP3 libraries.

Simple DirectMedia Layer is a cross-platform multimedia library designed to provide low level access to audio, keyboard, mouse, joystick, 3D hardware via OpenGL, and 2D video framebuffer. It is used by MPEG playback software, emulators, and many popular games, including the award winning Linux port of "Civilization: Call To Power."

Simple DirectMedia Layer supports Linux, Windows, BeOS, MacOS Classic, MacOS X, FreeBSD, OpenBSD, BSD/OS, Solaris, IRIX, and QNX. There is also code, but no official support, for Windows CE, AmigaOS, Dreamcast, Atari, NetBSD, AIX, OSF/Tru64, RISC OS, and SymbianOS.

SDL is written in C, but works with C++ natively, and has bindings to several other languages, including Ada, Eiffel, Java, Lua, ML, Perl, PHP, Pike, Python, and Ruby.

<<less
Download (0.078MB)
Added: 2006-05-18 License: GPL (GNU General Public License) Price:
1270 downloads
BottomFeeder for Solaris x86 4.4

BottomFeeder for Solaris x86 4.4


BottomFeeder is a news aggregator client written in VisualWorks Smalltalk more>> BottomFeeder is a news aggregator client (RSS and Atom) written in VisualWorks Smalltalk. BottomFeeder runs on Linux x86, (also FreeBSD), PowerPC Linux, Sparc Linux, Windows (98/ME/NT/2000/XP/CE 4), Mac OS8/9, Mac OS X (PPC, intel), AIX, SGI Irix, HP-UX, and Solaris (SPARC and x86).
What sets BottomFeeder apart?
Full support for CSS, including user defined CSS
View news in 3 pane or 2 pane modes
Subscribe to any RSS or Atom format in use
View items in a summary Newspaper View
Synchronize 2 or more BottomFeeders via HTTP or file import
Subscribe to feeds or feedlists
Supports HTTPS, HTTP Authentication, and HTTP Digest Authentication
Plugins for blogging, IRC, and MSN Messenger contacts
Easy to update or upgrade from within BottomFeeder
Save as many or as few feed items for as long as you want
Import or Export in common OPML format
Binary compatible on every platform. No need to recompile
<<less
Download (16.3MB)
Added: 2009-04-29 License: Freeware Price: Free
183 downloads
ActivePython 2.4.3.12

ActivePython 2.4.3.12


ActivePython is the complete, quality-assured and ready-to-install Python distribution for AIX, HP-UX, Linux, Mac OS X, Solaris. more>>
ActivePython project is the complete, quality-assured and ready-to-install Python distribution for AIX, HP-UX, Linux, Mac OS X, Solaris, and Windows.
Whats included:
- Python core
- Core extensions zlib and bzip2 for data compression
- bsddb database library
- Tix GUI widgets for Tkinter
- Suite of Windows tools developed by Mark Hammond, including the PythonWin IDE, bindings to the Win32 API, and Windows COM
Complete documentation for new and experienced Python users
- Core Python docs
- Whats New in Python
- Dive into Python
- Python FAQs
- How-tos
- Python Enhancement Proposals (PEPs)
<<less
Download (MB)
Added: 2007-01-12 License: Free To Use But Restricted Price:
2087 downloads
Amanith Framework 0.3

Amanith Framework 0.3


Amanith Framework is a Crossplatform & Opensource C++ Vector Graphic Framework. more>>
Amanith Framework is a Crossplatform & Opensource C++ Vector Graphic Framework.
Amanith gives to developers a complete and reliable set of classes to work with geometric elements (lines, curves, paths, meshes, and so on); it provides many powerful modelling operators (like cut, join, flatten and so on) and, at the same time, the fastest rendering layer totally built on top of OpenGL.
Some other useful classes included in Amanith complete the framework with: fonts and pixelmaps support, hierarchycal animations, fast and robust tesselation, bitmap to vector tracing, mathematics and calculus functions, matrices, distance and intersection queries.
Main features:
Open Sourced!
- Open source has made Amanith possible, so we wanna Amanith to be open source too.
- This mean that Amanith source code is fully available for everyone.
Cross Platform
- Same source tree can be compiled without modifications under multiple targets.
- Linux, Win32, Mac, FreeBSD, NetBSD, OpenBSD, Solaris, IRIX, AIX are only few of them.
Modular
- All the framework is heavily based on a light plug-in system.
- This make fast and easy to include or esclude everything you want.
Standards adherence
- The Amanith philosophy is to support many open standards as possible.
- Png, Jpeg, Svg, Xml, OpenGl, Ansi c++, and many others.
<<less
Download (7.5MB)
Added: 2006-01-30 License: GPL (GNU General Public License) Price:
782 downloads
tmake 1.8

tmake 1.8


tmake provides a cross-platform makefile tool. more>>
tmake provides a cross-platform makefile tool.
tmake is an easy-to-use tool from Trolltech to create and maintain makefiles for software projects. It can be a painful task to manage makefiles manually, especially if you develop for more than one platform or use more than one compiler. tmake automates and streamlines this process and lets you spend your valuable time on writing code, not makefiles.
Our main motivation for developing tmake was that we spent far too much time maintaining makefiles for Qt, our cross-platform GUI toolkit. Qt supports around 15 flavors of Unix, Microsoft Windows, and around 15 different C++ compilers. We looked at GNU autoconf, but it was Unix-specific and not flexible enough in our opinion. Our makefile system also had to deal with Qt meta object compiler (moc) issues. The moc program extracts meta information from C++ files and generates a C++ file with data tables etc. It takes extra work to add makefile rules for the moc and wanted to automate this task.
tmake is written in Perl and requires that you have installed perl version 5 or newer. Basic use of tmake requires no perl knowledge, but if you know perl you can extend tmake and write your own makefile templates.
Enhancements:
- Platform fixes for Tru64, Borland, Irix, HP-UX, AIX, UnixWare7 and Reliant UNIX
- Support for Intel C++
- Initial support for Qt/Embedded on FreeBSD
<<less
Download (0.053MB)
Added: 2007-04-30 License: Freeware Price:
909 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5