Main > Free Download Search >

Free 27 dresses software for linux

27 dresses

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 73
Wireless Tools 27

Wireless Tools 27


The Wireless Tools is a set of tools allowing to manipulate the Linux Wireless Extensions. more>>
The Linux Wireless Extension and the Wireless Tools are an Open Source project sponsored by Hewlett Packard (through my contribution) since 1996, and build with the contribution of many Linux users all over the world.

The Wireless Extension (WE) is a generic API allowing a driver to expose to the user space configuration and statistics specific to common Wireless LANs. The beauty of it is that a single set of tool can support all the variations of Wireless LANs, regardless of their type (as long as the driver support Wireless Extension).

Another advantage is these parameters may be changed on the fly without restarting the driver (or Linux).

The Wireless Tools (WT) is a set of tools allowing to manipulate the Wireless Extensions. They use a textual interface and are rather crude, but aim to support the full Wireless Extension. There are many other tools you can use with Wireless Extensions, however Wireless Tools is the reference implementation.

iwconfig manipulate the basic wireless parameters
iwlist allow to initiate scanning and list frequencies, bit-rates, encryption keys...
iwspy allow to get per node link quality
iwpriv allow to manipulate the Wireless Extensions specific to a driver (private)
ifrename allow to name interfaces based on various static criteria

Most Linux distributions also have integrated Wireless Extensions support in their networking initialisation scripts, for easier boot-time configuration of wireless interfaces. They also include Wireless Tools as part of their standard packages.
Wireless configuration can also be done using the Hotplug scripts and distribution specific support, this enable the proper support of any removable wireless interface (Pcmcia, CardBus, USB...).

Any versions of the Pcmcia package offer the possibility to do wireless configuration of Pcmcia and Cardbus card through thefile wireless.opts. This allow to fully integrate wireless settings in the Pcmcia scheme mechansism. However, this method is now deprecated in favor of distribution specific methods.

Please note that the Wireless Tools (starting with version 19) supports fully IEEE 802.11 parameters and devices, support older style of devices and most proprietary protocols, and are prepared to handle HiperLan as well. More recent versions of course adds more 802.11 support.

But, unfortunately not all drivers support all these features...
<<less
Download (0.18MB)
Added: 2005-10-18 License: GPL (GNU General Public License) Price:
1540 downloads
Exif Viewer 1.27 for Firefox

Exif Viewer 1.27 for Firefox


Exif Viewer is an extension that displays the Exif data. more>>
Exif Viewer is an extension that displays the Exif data.

Extracts and displays the Exchangeable Image File (Exif) data in local and remote JPEG images, as stored by many (but not all) digital still cameras.

<<less
Download (0.053MB)
Added: 2007-07-26 License: MPL (Mozilla Public License) Price:
835 downloads
PHP File Browser 3.27

PHP File Browser 3.27


php file browser is a simple Web-based file browser. more>>
php file browser is a simple Web-based file browser.
php file browser allows the user to upload files, delete, copy, make directories and paste files and directories. It has two access levels: one for admin, one for guest.
Access for guests can be optionally password protected.
Enhancements:
- A PHP file source viewer was added.
- The directory lister now works much faster than in older versions.
- Big changes were made in the class files.
<<less
Download (0.088MB)
Added: 2006-02-15 License: GPL (GNU General Public License) Price:
1400 downloads
Iometer 2006-07-27 RC3

Iometer 2006-07-27 RC3


Iometer is an I/O performance analysis tool. more>>
As the Iometer Users Guide says, Iometer is an I/O subsystem measurement and characterization tool for single and clustered systems.

Iometer was originally developed by the Intel Corporation and announced at the Intel Developers Forum (IDF) on February 17, 1998 - since then it got wide spread within the industry.

Meanwhile Intel has discontinued to work on Iometer and it was given to the Open Source Development Lab (OSDL). In November 2001, a project was registered at SourceForge.net and an initial drop was provided.

Since the relaunch in February 2003, the project is driven by an international group of individuals who are continuesly improving, porting and extend the product.

The tool (Iometer and Dynamo executable) is distributed under the terms of the Intel Open Source License. The iomtr_kstat kernel module as well as other future independent components are distributed under the terms of the GNU Public License.
<<less
Download (0.077MB)
Added: 2006-09-15 License: GPL (GNU General Public License) Price:
1153 downloads
Brutus 1.1.27 (evolution-brutus)

Brutus 1.1.27 (evolution-brutus)


Brutus is an Open Source connector for Exchange 5.5, 2000 and 2003, to put it short. more>>
Brutus is an Open Source connector for Exchange 5.5, 2000 and 2003, to put it short. Our aim is to scratch one of the most annoying itches that the Open Source community have endured. This particular itch has been experienced for almost a decade.
The problem that we are addressing is the problem of platform independent access for client applications to Microsoft Exchange from version 5.5 onwards.
Our solution to this problem will enable a feature-by-feature compatible Microsoft Outlook replacement for Linux, Microsoft Windows, the BSDs or almost any other platform.
How do we do it?
We have developed a CORBA based framework on top of the Messaging Application Programming Interface commonly known as MAPI.
Our development framework is offering client applications MAPI based access to any MS Exchange server from version 5.5 onwards. We believe that we are providing the Open Source community with a development framework that are superior to any other approach.
Our solution is distributed under the GNU General Public License (commonly known as the "GPL") or a commercial license.
Why do we do it?
We feel that there is a strong customer need for a non-Microsoft client application with full Exchange integration that is feature-by-feature comparable with Microsoft Outlook.
The only technically feasible way to achieve this level of integration is to build a client access framework on top of MAPI.
Out strategy is therefore to provide this framework to the Open Source community free of charge under the GPL and to the any commercial entity under a commercial license.
Enhancements:
- Support for OpenSUSE 10.2 was added.
- brutus-keyring is now used instead of gnome-keyring.
- A thread storm when updating the folder summary is now avoided.
<<less
Download (0.27MB)
Added: 2007-05-04 License: GPL (GNU General Public License) Price:
1155 downloads
CDDB 2.27

CDDB 2.27


CDDB is a Perl module that can read the CDDB entry for an audio CD in your drive. more>>
CDDB is a Perl module that can read the CDDB entry for an audio CD in your drive.

SYNOPSIS

use CDDB_get qw( get_cddb );

my %config;

# following variables just need to be declared if different from defaults

$config{CDDB_HOST}="freedb.freedb.org"; # set cddb host
$config{CDDB_PORT}=8880; # set cddb port
$config{CDDB_MODE}="cddb"; # set cddb mode: cddb or http
$config{CD_DEVICE}="/dev/cdrom"; # set cd device

# user interaction welcome?

$config{input}=1; # 1: ask user if more than one possibility
# 0: no user interaction

# get it on

my %cd=get_cddb(%config);

unless(defined $cd{title}) {
die "no cddb entry found";
}

# do somthing with the results

print "artist: $cd{artist}n";
print "title: $cd{title}n";
print "category: $cd{cat}n";
print "cddbid: $cd{id}n";
print "trackno: $cd{tno}n";

my $n=1;
foreach my $i ( @{$cd{track}} ) {
print "track $n: $in";
$n++;
}

This module/script gets the CDDB info for an audio cd. You need LINUX, SUNOS or *BSD, a cdrom drive and an active internet connection in order to do that.

<<less
Download (0.021MB)
Added: 2006-06-22 License: Perl Artistic License Price:
1220 downloads
Straw 0.27

Straw 0.27


Straw is a desktop news aggregator. more>>
Straw is a desktop news aggregator.

Straws aim is to be a faster, easier and more accessible way to read news and weblogs than the traditional web browser.

<<less
Download (0.31MB)
Added: 2007-05-17 License: GPL (GNU General Public License) Price:
890 downloads
DharmaDoc 0.27 alpha

DharmaDoc 0.27 alpha


DharmaDoc is a Buddhist reference library creator that uses existing tools. more>>
DharmaDoc automates most of the tedious work involved in setting up a local Web server that contains a Buddhist reference library.

The program allows you to download and install documents, and generates a search engine index.

Afterward, you can just type your Buddhist topic of interest into a Web browser and get a wealth of information.
<<less
Download (0.27MB)
Added: 2005-04-20 License: GPL (GNU General Public License) Price:
1647 downloads
nget 0.27.1

nget 0.27.1


nget is a command line nntp file grabber. more>>
nget is a command line nntp file grabber. It automatically pieces together multipart postings for easy retrieval, even substituting parts from multiple servers. Handles disconnects and resuming very well.
nget is developed on linux (glibc2), and has been successfully compiled/tested
on: linux x86(gcc 2.95.4, gcc 3.0.4, gcc 3.2, gcc 3.3), linux alpha(gcc 2.95.2), macosx(gcc 2.95.2), freebsd x86(gcc 2.95.4, gcc 3.0.4), solaris sparc(gcc 2.95.2), win32(mingw or cygwin) and should compile without modifications on other systems using g++ 2.95+ or other up to date compliers. Older compilers like gcc 2.7.x can no longer build nget, but can (probably) still build ngetlite, so you can still use it to download on an older comp if you have a recent comp that you can use nget to write the listfiles on (-w option).
Main features:
- Automatic multi-part post joining
- Automatic binary decoding (using uulib)
- Caches header data for quick access
- Full multi-server support, transparently joining parts from different servers
- Full multi-group support, transparently joining parts from multiple newsgroups
- Automatic retries on network errors
- Resumes after the last part successfully downloaded
- Dupe file detection to avoid unneeded downloads
- Select what to retrieve based upon a regular expresson (-r), or even a more complex expression (-R) based upon any of the files subject, author, lines, bytes, # of parts we have, # of parts req, date, age, messageid, and references.
- Search for newsgroups based on their names and/or descriptions
- Automatic handling of PAR and PAR2 files retrieves only as many recovery files as necessary to repair any missing/damaged files.
Enhancements:
- Fix error in configure script when printing exceptions not found message, due to unquoted string. (Reported by M.J. Soft)
- Fix -G* when NGETCACHE != NGETHOME. (Reported by Steven Adeff)
- Fix midinfo and newsgroups files not honoring NGETCACHE/cachedir setting. (Reported by Christian Marillat)
- Allow absolute paths in --text=mbox: . (Requested by Volker Wysk)
- Support tab as the field separator in XPAT results, for Newsplex server support. (Requested by Mark Blain)
- -a no longer gives an error if the server doesnt support LIST NEWSGROUPS(which retrieves newsgroup descriptions.)
- Fix printing a warning when loading newsgroups list which contains descriptions of groups which no server actually carries. (Reported by Frederick Bruckman)
- Fix problems loading group descriptions from newsgroups list which contain tabs. (Reported by Frederick Bruckman)
<<less
Download (0.30MB)
Added: 2006-06-20 License: GPL (GNU General Public License) Price:
1222 downloads
Fink 0.27.6

Fink 0.27.6


Fink is a package manager that downloads source tarballs from mirror sites, builds them and installs them. more>>
Fink is a package manager that downloads source tarballs from mirror sites, builds them and installs them into a separate directory hierarchy managed using dpkg.
It is a project that wants to bring the full world of Unix Open Source software to Darwin and Mac OS X. As a result, we have two main goals. First, to modify existing Open Source software so that it will compile and run on Mac OS X. (This process is called porting.) Second, to make the results available to casual users as a coherent, comfortable distribution that matches what Linux users are used to. (This process is called packaging.) The project offers precompiled binary packages as well as a fully automated build-from-source system.
To achieve these goals, Fink relies on the excellent package management tools produced by the Debian project - dpkg, dselect and apt-get. On top of that, Fink adds its own package manager, named (surprise!) fink. You can view fink as a build engine - it takes package descriptions and produces binary .deb packages from that. In the process, it downloads the original source code from the Internet, patches it as necessary, then goes through the whole process of configuring and building the package. Finally, it wraps the results up in a package archive that is ready to be installed by dpkg.
Since Fink sits on top of Mac OS X, it has a strict policy to avoid interference with the base system. As a result, Fink manages a separate directory tree and provides the infrastructure to make it easy to use.
Main features:
- Power. Mac OS X includes only a basic set of command line tools. Fink brings you enhancements for these tools as well as a selection of graphical applications developed for Linux and other Unix variants.
- Convenience. With Fink the compile process is fully automated; youll never have to worry about Makefiles or configure scripts and their parameters again. The dependency system automatically takes care that all required libraries are present. Our packages are usually set up for their maximum feature set.
- Safety. Finks strict non-interference policy makes sure that the vulnerable parts of you Mac OS X system are not touched. You can update Mac OS X without fear that it will step on Finks toes and vice versa. Also, the packaging system lets you safely remove software you no longer need.
- Coherence. Fink is not just a random collection of packages, it is a coherent distribution. Installed files are placed in predictable locations. Documentation listings are kept up to date. Theres a unified interface to control server processes. And theres more, most of it working for you under the hood.
- Flexibility. You only download and install the programs you need. Fink gives you the freedom to install XFree86 or other X11 solutions in any way you like. If you dont want X11 at all, thats okay too.
Enhancements:
- fix 64bit-cpu bug
<<less
Download (1.2MB)
Added: 2007-07-21 License: GPL (GNU General Public License) Price:
501 downloads
Biblio::Thesaurus 0.27

Biblio::Thesaurus 0.27


Biblio::Thesaurus is a Perl extension for managing ISO thesaurus. more>>
Biblio::Thesaurus is a Perl extension for managing ISO thesaurus.

SYNOPSIS

use Biblio::Thesaurus;

$obj = thesaurusNew();
$obj = thesaurusLoad(iso-file);
$obj = thesaurusRetrieve(storable-file);
$obj = thesaurusMultiLoad(iso-file1,iso-file2,...);

$obj->save(iso-file);
$obj->storeOn(storable-file);

$obj->addTerm(term);
$obj->addRelation(term,relation,term1,...,termn);
$obj->deleteTerm(term);

$obj->isDefined(term);

$obj->describe( { rel=NT, desc="Narrow Term", lang=>"UK" } );

$obj->addInverse(Relation1,Relation2);

$obj->order(rela1, rel2, ....);
@order = $obj->order();

$obj->languages(l1, l2, ....);
@langs = $obj->languages();

$obj->baselang(l);
$lang = $obj->baselang();

$obj->topName(term);
$term = $obj->topName();

$html = $obj->navigate(+{configuration},%parameters);

$html = $obj->getHTMLTop();

$output = $obj->downtr(%handler);
$output = $obj->downtr(%handler,termo, ... );

$obj->appendThesaurus("iso-file");
$obj->appendThesaurus($tobj);

$obj->tc(termo, relation1, relation2);
$obj->depth_first(term, 2, "NT", "UF")

$latex = $obj->toTex( ...)
$xml = $obj->toXml( ...)

ABSTRACT

This module provides transparent methods to maintain Thesaurus files. The module uses a subset from ISO 2788 which defines some standard features to be found on thesaurus files. The module also supports multilingual thesaurus and some extensions to the ISOs standard.

A Thesaurus is a classification structure. We can see it as a graph where nodes are terms and the vertices are relations between terms.

This module provides transparent methods to maintain Thesaurus files. The module uses a subset from ISO 2788 which defines some standard features to be found on thesaurus files. This ISO includes a set of relations that can be seen as standard but, this program can use user defined ones. So, it can be used on ISO or not ISO thesaurus files.

<<less
Download (0.026MB)
Added: 2006-10-10 License: Perl Artistic License Price:
1109 downloads
ifplugd 0.27

ifplugd 0.27


ifplugd is a Linux daemon which will automatically configure your ethernet device when a cable is plugged in. more>>
ifplugd is a Linux daemon which will automatically configure your ethernet device when a cable is plugged in and automatically unconfigure it if the cable is pulled.
Installation:
As this package is made with the GNU autotools you should run ./configure inside the distribution directory for configuring the source tree. After that you should run make for compilation and make install (as root) for installation of ifplugd.
The installation scripts create an init script in ${sysconfdir}/init.d/ifplugd, however no /etc/rc?.d/ links are created for it.
This is useful on laptops with onboard network adapters, since it will only configure the interface when a cable is really connected.
Main features:
- Uses your distributions native ifup/ifdown programs.
- May beep when the cable is unplugged, plugged, the interface configuration succeeded or failed.
- Supports the Linux SIOCETHTOOL (newer, aka ethtool API), SIOCGMIIREG (older, aka mii-diag/mii-tool API) and SIOCDEVPRIVATE (oldest, aka mii-tool API) ioctl()s for getting link status. Release 0.24 introduces support for link detection with the IFF_RUNNING interface flag.
- Syslog support
- Small program - the binary is just 25 KB (plus 16 KB for libdaemon).
- Multiple ethernet interface support
- Can be configured to ignore short "unplugged" periods (-d option) or short "plugged" periods(-u option)
- Support for wireless networking. Whenever an association to an AP is detected the network is configured. Have a look on waproamd if you need a facility to configure WEP keys before AP associations succeed.
- Compatibility mode for network devices which do not support cable detection (-F option)
<<less
Download (0.14MB)
Added: 2005-10-06 License: GPL (GNU General Public License) Price:
1478 downloads
Math::String::Charset::Nested 1.27

Math::String::Charset::Nested 1.27


Math::String::Charset::Nested is a charset for Math::String objects. more>>
Math::String::Charset::Nested is a charset for Math::String objects.

SYNOPSIS

use Math::String::Charset;

# construct a charset from bigram table, and an initial set (containing
# valid start-characters)
# Note: After an a, either an b, c or a can follow, in this order
# After an d only an a can follow
$bi = new Math::String::Charset ( {
start => a..d,
bi => {
a => [ b, c, a ],
b => [ c, b ],
c => [ a, c ],
d => [ a, ],
q => [ ], # q will be automatically in end
}
end => [ a, b, ],
} );
print $bi->length(); # a,b => 2 (cross of end and start)
print scalar $bi->class(2); # count of combinations with 2 letters
# will be 3+2+2+1 => 8

<<less
Download (0.060MB)
Added: 2007-07-02 License: Perl Artistic License Price:
844 downloads
MySQL 4.0.27

MySQL 4.0.27


MySQL is The Worlds Most Popular Open Source Database. more>> <<less
Download (7.0MB)
Added: 2006-05-12 License: GPL (GNU General Public License) Price:
1398 downloads
iBackup 2.27

iBackup 2.27


iBackup simplifies backing up the system configuration files (/etc). more>>
iBackup simplifies backing up the system configuration files (/etc) for UNIX systems (Solaris, *BSD, Linux).

You can run the program from any directory, it will by default save the (maybe compressed) tarball to /root. It is possible to encrypt the tarball, to upload the tarball to some other host and run this backup automated in a cronjob. You could also send the backup by mail, using nail.
<<less
Download (0.02MB)
Added: 2005-04-04 License: (FDL) GNU Free Documentation License Price:
1666 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5