Main > Free Download Search >

Free utility software for linux

utility

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1338
MfGames.Utility 1.3.0

MfGames.Utility 1.3.0


MfGames.Utility is a C# library with an auditing framework and other useful functions. more>>
MfGames.Utility is a collection of useful C# classes that have no dependencies outside of the core libraries.
The MfGames.Utility library for C# and VB.NET is a general purposes library that contains many useful functions, but requires no additional libraries outside of itself and the core.
Main features:
- Random Number Generation
- Simple Logging
- Auditing Framework
- Tiny Functions
Enhancements:
- log4net has been merged as an optional compile.
- This release adds basic vector, matrix, quaternion, and euler rotation objects.
- The Auditable framework has been enhanced to allow for nested reporting of issues.
<<less
Download (0.033MB)
Added: 2006-04-07 License: LGPL (GNU Lesser General Public License) Price:
1296 downloads
Sethi Search Utility 0.8.7

Sethi Search Utility 0.8.7


Sethi Search Utility provides a simple command line utility to submit a search to Google, Yahoo!, or MSN. more>>
Sethi Search Utility provides a simple command line utility to submit a search to Google, Yahoo!, or MSN.
Sethi Search Utility is a simple command line utility to submit a search to Google, Yahoo!, or MSN and show the (text) results on standard output. Support for several search engines is included.
Its currently in serious need of a re-write, especially to avoid scraping and become a good engine using the search APIs provided.
Enhancements:
- The Google configuration was updated.
<<less
Download (MB)
Added: 2007-04-05 License: GPL (GNU General Public License) Price:
558 downloads
Ingres::Utility::IINamu 0.07

Ingres::Utility::IINamu 0.07


Ingres::Utility::IINamu is a Perl API to iinamu Ingres RDBMS utility. more>>
Ingres::Utility::IINamu is a Perl API to iinamu Ingres RDBMS utility.

SYNOPSIS

List registered INGRES (IIDBMS) services:

use Ingres::Utility::IINamu;

my $foo = Ingres::Utility::IINamu->new();

# list all INGRES-type servers (iidbms)
print $foo->show(INGRES);

# process each server separately
while (my @server = $foo->getServer()) {

print "Server type: $server[0]tname:$server[1]tid:$server[2]";

if (defined($server[3])) {

print "t$server[3]";

}

print "n";

}

# stop IIGCN server (no more connections to all of Ingres services)
$ret = $foo->stop();

...

This module provides an API to the iinamu utility for Ingres RDBMS, which provides local interaction and control of IIGCN server, in charge of registering all Ingres services.

Through this interface, it is possible to obtain a list of all registered services, for later processing (eg. iimonitor), and also stopping the IIGCN server (EXTREME CAUTION: Ingres may need to be restarted!).

<<less
Download (0.006MB)
Added: 2007-01-25 License: Perl Artistic License Price:
1002 downloads
Ingres::Utility::Netutil 0.03

Ingres::Utility::Netutil 0.03


Ingres::Utility::Netutil is an API to netutil Ingres RDBMS utility. more>>
Ingres::Utility::Netutil is an API to netutil Ingres RDBMS utility.

SYNOPSIS

use Ingres::Utility::Netutil;

# create a connection to NETUTIL utility

$netu = Ingres::Utility::Netutil->new();

# Attention: many arguments accept wildcard *

# showLogin($type,$vnode) - prepare to provide info on login VNodes
# and return netutil ouput
print $netu->showLogin(global,*);

#
# getLogin() - return one-by-one all login VNodes previously prepared
while ( ($type, $login, $vnode, $acct) = $netu->getLogin() ) {
print "Type: $typetName: $vnodetAccount: $acctn";
}

# showConn($type, $conn, $vnode, $addr, $proto, $listen)
# - prepare to provide info on connections of a VNode
# and return netutil ouput
print $netu->showConn(global,sample_vnode_name, *, *, *);

#
# getConn() - return one-by-one all connections of a VNodes previously prepared
while ( @conn = $netu->getConn() ) {
($type, $conn, $vnode, $addr, $proto, $listen) = @conn;
print "Type: $typetName: $vnodetAddress: $addrtProtocol: $proto";
print "tListen Address: $listenAddrn";
}

# createLogin($type,$vnode,$acct, $passwd) - create a new VNode
$netu->createLogin(global, new_vnode_name, sample_login_account, secret_passwd);

# createConn($type,$vnode,$addr,$proto,$listenAddr) - create a connection for a VNode
$netu->createConn(global, new_vnode_name, 192.168.0.1, tcp_ip, II);

# destroyConn($type,$vnode,$acct, $passwd) - destroy a connection from a VNode
$netu->destroyConn(global, new_vnode_name, 192.168.0.1, tcp_ip, II);

# destroyLogin($type,$vnode) - destroy a VNode and all connections
$netu->destroyLogin(global, new_vnode_name);

# quiesceServer($serverId) - stop IIGCC server after all connections close (die gracefully)
# if no $serverId is given, then all IIGCC servers are affected (carefull).
$netu->quiesceServer(sample_server_id);

# stopServer($serverId) - stop IIGCC server imediately (break connections)
# if no $serverId is given, then all IIGCC servers are affected (carefull).
$netu->stopServer(sample_server_id);

The server id can be obtained through Ingres::Utility::IINamu module.

This module provides an API to netutil utility for Ingres RDBMS, which provides local control of IIGCC servers for Ingres Net inbound and outbound remote connections, and also manage logins and connections to remote servers, a.k.a. VNodes.

Notes:

Ordinary user can create/destroy on his own private logins and connections.

SECURITY privilege should be granted to have access to other users private entries.

GCA privilege NET_ADMIN (generally a system administrator) needed to manage global type login and connection entries.

GCA privilege SERVER_CONTROL (generally a system administrator) needed to stop a communications server.

<<less
Download (0.008MB)
Added: 2007-01-24 License: Perl Artistic License Price:
1004 downloads
Ingres::Utility::IIMonitor 0.13

Ingres::Utility::IIMonitor 0.13


Ingres::Utility::IIMonitor is a Perl API to iimonitor Ingres RDBMS utility. more>>
Ingres::Utility::IIMonitor is a Perl API to iimonitor Ingres RDBMS utility.

SYNOPSIS

use Ingres::Utility::IIMonitor;

# create a connection to an IIDBMS server
# (server id can be obtained through Ingres::Utility::IINamu)
$foo = Ingres::Utility::IIMonitor->new($serverid);

# showServer() - shows server status
#
# is the server listening to new connections? (OPEN/CLOSED)
$status =$foo->showServer(LISTEN);
#
# is the server being shut down?
$status =$foo->showServer(SHUTDOWN);

# setServer() - sets server status
#
# stop listening to new connections
$status =$foo->setServer(CLOSED);
#
# start shutting down (wait for connections to close)
$status =$foo->setServer(SHUT);

# stop() - stops IIDBMS server (transactions rolled back)
#
$ret = $foo->stop();

# showSessions($target,$mode) - prepares to get sessions info
print $foo->showSessions(SYSTEM,FORMATTED);

# getSession() - get sessions call-after-call from previous showSessions()
while (%session = $foo->getSession()) {
print "Session ". $session{SESSION_ID} . ":n"
foreach $label, $value (%session) {
print "t$label:t$valuen" if ($label ne SESSION_ID);
}
}

This module provides an API to the iimonitor utility for Ingres RDBMS, which provides local control of IIDBMS servers and sessions (system and user conections).

<<less
Download (0.007MB)
Added: 2007-01-24 License: Perl Artistic License Price:
1007 downloads
Iris Video Conversion Utility 0.75

Iris Video Conversion Utility 0.75


Iris is a video conversion utility in C++ that works as a front-end to mencoder. more>>
Iris is a video conversion utility in C++ that works as a front-end to mencoder. Iris Video Conversion Utility can run in command-line or graphical modes and currently supports conversion to DVD MPEG, DivX AVI and VCD MPEG
This software intends to ease video conversion to common formats.
Help Wanted / TODO
- Cancel button does not always work
- More output formats
- Reset values for command-line format paramater
- re-work stderr redirection
- catch and identify mencoder conditions
<<less
Download (0.12MB)
Added: 2005-12-27 License: BSD License Price:
1401 downloads
Minimal OpenGL Utility Library 0.2

Minimal OpenGL Utility Library 0.2


Minimal OpenGL Utility Library (MOGUL) is a library similar to GLUT, only with fewer features. more>>
Minimal OpenGL Utility Library (MOGUL) is a library similar to GLUT, only with fewer features. It lets you write window-system-independent OpenGL programs with even fewer lines of code than GLUT.
The project currently supports X11 and Win32. Examples are included in the distribution. It is intended to be easy to learn and simple to use.
Enhancements:
- Compilation of the library has been successful under MS Windows 2000 (SP1) and Debian "sarge".
- However, it should compile on any Linux distribution.
- You may need to adjust the linker options if you are compiling under MS Windows XP or a more recent version of MinGW.
<<less
Download (0.11MB)
Added: 2007-03-08 License: LGPL (GNU Lesser General Public License) Price:
965 downloads
Email Administration Utility 1.5.2

Email Administration Utility 1.5.2


Email Administration Utility provides an IMAP-based email account management utility. more>>
Email Administration Utility provides an IMAP-based email account management utility.
The Email Administration Utilities package can be used to manage email accounts with a series of PHP-based scripts through a browser.
Addition, Removal, and modification of accounts is possible as long as an IMAP port is available on the mail server.
The Mailadmin project was originally designed to help owners of domains that were hosted by Hub.Org Networking Services. The company wanted users to be able to create, remove or modify email accounts when ever they wanted, giving them a quicker turnaround for Mail Administration Purposes.
As the utility was developed, tested and matured into what it is today, many users requested more features or contributed reports of issues to help improve the utilities stability. Hub.Org has given me permission to release the utility as an Open Source package so that others may also benifit from the simplicity that the Mailadmin utility offers to those who need complete control over email accounts.
With this in mind, I intend to continue development by adding new features as they are requested and fix any issues that may pop up. The more users who use and test the features that the Mailadmin utility offers will help to improve the functionality offered by Mailadmin. I have opened a Sourceforge account to help manage the development and releases of the utility as it matures into what users and developers see the Mailadmin to be.
Main features:
- Administrator:
- Adding/Deleting Email accounts.
- Setting Account Quotas.
- Obtaining Administrative Access Over Older Accounts.
- Changing An Accounts Password.
- Interfaces with the Cyrus IMAP/POP3 server.
- Transaction Log system, allowing you to track changes or to help debug issues.
- Standard User:
- Changing The Accounts Password.
- In Development:
- Transaction Log system, allowing you to track changes or to help debug issues.
<<less
Download (0.030MB)
Added: 2007-03-15 License: GPL (GNU General Public License) Price:
956 downloads
Dirsave Graphical Network Utility 1.2

Dirsave Graphical Network Utility 1.2


Dirsave is graphical utility for intellectually generated senteces urls from you links. more>>
Dirsave is graphical utility for intellectually generated senteces urls from you links (example: pic01,pic02 or pic1,pic2).

After generate with 3 clicks you execute program and wget download this files.

Its no hard type:

http://nameserver/folder/pic1.jpg
http://nameserver/folder/pic2.jpg

or

http://nameserver/folder/docum01.xml
http://nameserver/folder/docum02.xml

Its yesterday day!

Dirsave program automatically generate links (and choise 1,2,3 or 01,02,03 or 001,002,003 numeration)!

Its easy and quick!

<<less
Download (0.25MB)
Added: 2007-05-18 License: GPL (GNU General Public License) Price:
891 downloads
OpenOffice.org Utility Library 0.1.8 (ooolib-perl)

OpenOffice.org Utility Library 0.1.8 (ooolib-perl)


OpenOffice.org Utility Library, or ooolib in short, is actually more than one library module. more>>
OpenOffice.org Utility Library, or ooolib in short, is actually more than one library module. Included are a Python module (ooolib-python) and a Perl module (ooolib-perl).
The Python module is currently focused on Calc and can be used to create OpenDocument Format Calc spreadsheets.
The Perl module can be used to create simple OpenOffice.org Calc spreadsheet and Writer text documents. (Note: The files created by ooolib-perl are pre-ODF files.)
Main features:
- Ability to create OpenOffice.org Calc Documents
- Example programs that use the Python Module
<<less
Download (MB)
Added: 2006-12-20 License: LGPL (GNU Lesser General Public License) Price:
1043 downloads
 
Other version of OpenOffice.org Utility Library
OpenOffice.org Utility Library 0.0.9 (ooolib-python)OpenOffice.org Utility Library 0.0.9 (ooolib-python)OpenOffice.org Utility Library 0.0.9 (ooolib-python) OpenOffice.org Utility Library, or ooolib in short, is actually more than one
License:LGPL (GNU Lesser General Public License)
Download (MB)
847 downloads
Added: 2007-07-01
PDF Utilities 0.3

PDF Utilities 0.3


PDFUtil is a service menu entry that allows rotate and other interesting utilities for pdf files. more>>
PDFUtil is a service menu entry that allows rotate and other interesting utilities for pdf files.

<<less
Download (0.004MB)
Added: 2006-03-23 License: GPL (GNU General Public License) Price:
1318 downloads
WAVE Utilities 1.18

WAVE Utilities 1.18


WAVE Utilities package contains three programs for dealing with WAVE format audio files. more>>
WAVE Utilities package contains three programs for dealing with WAVE format audio files.
SimplifyWave
The standard permits WAVE format audio files to contain a variety of chunks, such as playlists, cue lists, and padding. A fair amount of software, however, is unable to parse such complex files. This program converts complex WAVE files into the simplest standard-conforming format by stripping out everything other than the obligatory format chunk and the first data chunk. Messages are printed indicating what chunks have been removed.
RepairWave
Some software generates non-conformant files that purport to be WAVE files. They contain a WAVE header but lack the obligatory data chunk id and size information. The audio data immediately follows the header. This program inserts the missing data chunk id and size information and updates the WAVE chunk size information in the header to reflect this.
InfoWave
Extracts information from a RIFF/WAV or RIFX/WAV file and reports on the contents of the file. It shows the size, type, and location of each chunk and gives the encoding of the audio data, its sampling rate, resolution, number of channels and other information. Typical output looks like this:
0: RIFF identifier.
4: chunk size = 38,642 bytes.
8: WAV identifier.
12: format chunk identifier
16: format chunk size = 18 bytes.
20: data format: PCM.
22: one channel (mono).
24: Sampling Rate = 11,025 samples per second.
28: Average Data Rate = 11,025 bytes per second.
32: Bytes_Per_Sample value of 1 indicates 8-bit mono
34: Bits_Per_Sample = 8.
36: chunk id
40: chunk length
44: chunk of type fact (standard) length 4 bytes
48: chunk id
52: chunk length
56: chunk of type data (standard) length 38,591 bytes
amounting to 0 minutes and 3.5 seconds
These programs were originally called SimplifyWav, wavrepair, and wavinfo.
Enhancements:
- The programs have been adapted to run correctly on 64-bit architectures as well as 32-bit architectures.
- They should now compile on systems whose printf does not support thousands separators.
<<less
Download (0.077MB)
Added: 2007-05-13 License: GPL (GNU General Public License) Price:
903 downloads
MikMod Utilities 0.2

MikMod Utilities 0.2


MikMod Utilities is a collection of tools for manipulating the module sound files that are produced by tools like Soundtracker. more>>
MikMod Utilities is collection of command line tools for manipulating the module sound files that are typically produced by Soundtracker, Protracker and other tools.

MikMod Utilities contains the following tools:

mmuinfo
gives information about module

mmuplay
plays modules

mmuplaysmp
plays samples from modules

mmurender
converts modules to other audio formats

mmurip
extracts samples from module

mmutotal
computes total modules time

All tools has support for the automatic modules decompression from bzip, gzip and pkzip archives, but this can be configured at compile-time and can be controlled at run-time.

Also all tools, except mmutotal, can load modules from standard input.

<<less
Download (0.05MB)
Added: 2006-09-01 License: GPL (GNU General Public License) Price:
1154 downloads
make utilities 0.2.0

make utilities 0.2.0


make utilities is a set of tools for use building C/C++ programs. more>>
makeutil is a set of portable public domain programs designed to support C/C++ projects. It provides tools for build operations outside of the normal compile/link pipeline.
It is designed to be unobtrusively included directly in your own software development project.
Here is a brief description of each tool:
- config: choose file based on platform
- ccinfo: name compiler used to compile program
- mksystype: determine operating system
- mkarray: convert input file to C array
- mkstring: convert input line to C string
- armor: convert binary file to ascii
- dearmor: convert encoded ascii file to binary
- textpack: compress files with precompiled frequency table
- textpand: uncompress files with precompiled frequency table
- ckey: create frequency table from input
- extract: extract files from an extract format text archive
- retract: create an extract format text archive
- addcr: add a t before every n
- delcr: delete the r from every rn
- unmake: process include directives in a Makefile
<<less
Download (0.019MB)
Added: 2005-04-18 License: Public Domain Price:
1650 downloads
Unicode Utilities 2.25

Unicode Utilities 2.25


Unicode Utilities project are a set of programs for manipulating and analyzing Unicode text. more>>
Unicode Utilities project are a set of programs for manipulating and analyzing Unicode text. uniname defaults to printing the character offset of each character, its byte offset, its hex code value, its encoding, the glyph itself, and its name. Command line options allow undesired information to be suppressed and the Unicode range to be added.
unidesc reports the character ranges to which different portions of the text belong. unihist generates a histogram of the characters in its input. ExplicateUTF8 is intended for debugging or for learning about Unicode. It determines and explains the validity of a sequence of bytes as a UTF-8 encoding. unirev reverses UTF-8 strings.
Enhancements:
- Adds to unidesc the option -r which causes it to list the ranges detected after reading all input rather than listing them as they are encountered, and adds to uniname the option -B which causes it to ignore characters within the Basic Multilingual Plane.
<<less
Download (0.25MB)
Added: 2007-07-04 License: GPL (GNU General Public License) Price:
849 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5