Main > Free Download Search >

Free serious software for linux

serious

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 119
Jukes for Mac/Linux/Solaris 4.1.2.42

Jukes for Mac/Linux/Solaris 4.1.2.42


Jukes was created for the serious MP3 user. more>> Jukes was created for the serious MP3 user. This program was created for people who rip full CDs or possibly their entire CD collection to their hard drive. Jukes allows you to have all of your CDs at your fingertips and play them like a real jukebox. Perfect for DJs, whether in your house or for parties or whatever, spin all of your favorite tunes anytime you want. No more loading the files in to play them and removing them to add more to the list, now all of your CDs are at your disposal!
Cross platform - works on Linux, Solaris, MacOSX, Windows.
Full support of ID3 v2.4 MP3 tags.
Full support of MP3, OGG Vorbis, FLAC, Monkey Audio APE, and SPEEX
Automatic creation of database if not found. No more proprietary use of MS Access.
Ability to display/sort your discs and tracks anyway you want. Lets you order discs by year, bitrate, name etc. Tracks by track number, or bitrate, or alphabetically.
Highlights any disc or tracks added within the last XX days. This allows new editions to stand out in large collections.
Filter by Genre, Years, Bitrates and most recently added albums
Disc Cleaner to remove discs that no longer exist in storage from the database. Useful for people that use IPods or Archos Jukeboxes as their storage.
Inline editing of artists, discs, tracks rather than the old click to open a new window metaphor.
Ability to import and export preferences.
File renaming based on a user defined regular expression. So you can name your files 01-Track1.mp3 or 01 - Track1 - 128kbps.mp3 or Track1 - 01.mp3
Web Search to retrieve disc cover, year, track names, and artist and disc name using Amazon.com Web Service.
Advanced search to find tracks. Fuzzy text search as well as by year, genre, bitrate.
Ability to export search results as CSV files for ad-hoc reporting.
Tray icon for easy access, single click pause/play, mouse wheel click to advance next song.
WINDOWS ONLY: Ability to listen to Intellitype commands Pause Play Stop found o
<<less
Download (14.62MB)
Added: 2009-04-26 License: Freeware Price:
180 downloads
watchdog 5.4

watchdog 5.4


Watchdog is a daemon that checks if your system is still working. more>>
Watchdog application is a daemon that checks if your system is still working. If programs in user space are not longer executed it will reboot the system. However, this will not always work.
The Linux kernel can reset the system if serious problems are detected. This can be implemented via special watchdog hardware, or via a slightly less reliable software-only watchdog inside the kernel.
Either way, there needs to be a daemon that tells the kernel the system is working fine. If the daemon stops doing that, the system is reset. watchdog is such a daemon. It opens /dev/watchdog, and keeps writing to it often enough to keep the kernel from resetting, at least once per minute.
Each write delays the reboot time another minute. After a minute the watchdog hardware will cause the reset. In the case of a software watchdog, the ability to reboot will depend on the state of the machines and interrupts.
Enhancements:
- Added "another-chance" repair script written by Erik Rossen
- Applied some changes to RedHat init script.
- Added sysconf script for RedHat.
- Made wd_keepalive honor config file option.
- Added wd_keealive manpage.
- Made wd_keepalive not start without a watchdog device.
- Fixed some typos in watchdog manpage.
- Updated Debian files.
<<less
Download (0.16MB)
Added: 2007-08-17 License: GPL (GNU General Public License) Price:
6225 downloads
Karora Moomba 0.5

Karora Moomba 0.5


Karora Moomba is an implementation of the Eclipse Workbench API for the web. more>>
Karora Moomba is an implementation of the Eclipse Workbench API for the web. For the first time, it brings developers a serious framework for building highly dynamic, pluggable web applications based upon a well known framework. Combined with Karoras Cooee UI framework, developers need only know a small amount of Swing/Cooee/Echo2 and some basic Eclipse interfaces to quickly produce impressive rich web applications.

As Moomba harnesses OSGI (like Eclipse) as its plugin framework, it also gains the dynamic nature of OSGI. This means Moomba plugins can be started, stopped, installed and updated on the fly without shutting down the application server. Something rarely found in a java based web application framework.

Moomba is also one of the first web application frameworks to use and be compatible with the Spring-OSGI framework. This framework brings the power of Spring to the OSGI environment, meaning that all the usual Spring tools are available to your Moomba plugins.

Moomba also makes extensive use of the Karora Orana package - an implementation of Eclipse JFace for Cooee. Through this, developers have access to such expected infrastructure as dialogs, viewers and wizards.
<<less
Download (0.10MB)
Added: 2007-08-08 License: Eclipse Public License Price:
807 downloads
OpenSSH LDAP Public Key patch 0.3.9

OpenSSH LDAP Public Key patch 0.3.9


The OpenSSH LDAP Public Key patch provides an easy way of centralizing strong user authentication. more>>
OpenSSH LDAP Public Key patch provides an easy way of centralizing strong user authentication by using an LDAP server for retrieving public keys instead of ~/.ssh/authorized_keys.
It uses the standard core.schema/nis.schema and strongAuthenticationUser object class, which can simplify login centralization but could introduce serious security flaws if the LDAP server is not correctly configured.
Enhancements:
- A memory leak has been fixed.
- A potential LDAP filter injection if a username has strange characters in it [()*] has been fixed.
<<less
Download (0.059MB)
Added: 2007-08-04 License: BSD License Price:
815 downloads
PApp::Storable 1.2

PApp::Storable 1.2


Storable module is a persistence for Perl data structures. more>>
Storable module is a persistence for Perl data structures.

SYNOPSIS

use Storable;
store %table, file;
$hashref = retrieve(file);

use Storable qw(nstore store_fd nstore_fd freeze thaw dclone);

# Network order
nstore %table, file;
$hashref = retrieve(file); # There is NO nretrieve()

# Storing to and retrieving from an already opened file
store_fd @array, *STDOUT;
nstore_fd %table, *STDOUT;
$aryref = fd_retrieve(*SOCKET);
$hashref = fd_retrieve(*SOCKET);

# Serializing to memory
$serialized = freeze %table;
%table_clone = %{ thaw($serialized) };

# Deep (recursive) cloning
$cloneref = dclone($ref);

# Advisory locking
use Storable qw(lock_store lock_nstore lock_retrieve)
lock_store %table, file;
lock_nstore %table, file;
$hashref = lock_retrieve(file);

The Storable package brings persistence to your Perl data structures containing SCALAR, ARRAY, HASH or REF objects, i.e. anything that can be conveniently stored to disk and retrieved at a later time.

It can be used in the regular procedural way by calling store with a reference to the object to be stored, along with the file name where the image should be written.
The routine returns undef for I/O problems or other internal error, a true value otherwise. Serious errors are propagated as a die exception.

To retrieve data stored to disk, use retrieve with a file name. The objects stored into that file are recreated into memory for you, and a reference to the root object is returned. In case an I/O error occurs while reading, undef is returned instead. Other serious errors are propagated via die.

Since storage is performed recursively, you might want to stuff references to objects that share a lot of common data into a single array or hash table, and then store that object. That way, when you retrieve back the whole thing, the objects will continue to share what they originally shared.
At the cost of a slight header overhead, you may store to an already opened file descriptor using the store_fd routine, and retrieve from a file via fd_retrieve. Those names arent imported by default, so you will have to do that explicitly if you need those routines. The file descriptor you supply must be already opened, for read if youre going to retrieve and for write if you wish to store.

store_fd(%table, *STDOUT) || die "cant store to stdoutn";
$hashref = fd_retrieve(*STDIN);

You can also store data in network order to allow easy sharing across multiple platforms, or when storing on a socket known to be remotely connected. The routines to call have an initial n prefix for network, as in nstore and nstore_fd. At retrieval time, your data will be correctly restored so you dont have to know whether youre restoring from native or network ordered data. Double values are stored stringified to ensure portability as well, at the slight risk of loosing some precision in the last decimals.

When using fd_retrieve, objects are retrieved in sequence, one object (i.e. one recursive tree) per associated store_fd.
If youre more from the object-oriented camp, you can inherit from Storable and directly store your objects by invoking store as a method. The fact that the root of the to-be-stored tree is a blessed reference (i.e. an object) is special-cased so that the retrieve does not provide a reference to that object but rather the blessed object reference itself. (Otherwise, youd get a reference to that blessed object).

<<less
Download (0.39MB)
Added: 2007-08-02 License: Perl Artistic License Price:
813 downloads
Apache Cayenne 2.0.3 / 3.0M1

Apache Cayenne 2.0.3 / 3.0M1


Apache Cayenne is a free object-relational persistence framework written in Java. more>>
Apache Cayenne project is a free object-relational persistence framework written in Java. Its goal is to make development of database Java applications faster and more consistent with the Object Oriented Programming concept.
Some of the ideas used in Cayenne have been inspired by the persistence mechanism of NeXTs (and now Apples) WebObjects application server.
Whats New in 2.0.3 Stable Release:
- This release features a number of bugfixes, including some serious synchronization issues.
- It is a recommended upgrade.
Whats New in 3.0M1 Development Release:
- This is the first milestone release of Cayenne 3.0.
- The most visible addition to Cayenne is a JSR-220 Java Persistence API Provider (a.k.a. JPA), but significant enhancements have been made to performance and flexibility.
- It is already in production within several products.
<<less
Download (11.2MB)
Added: 2007-07-30 License: The Apache License 2.0 Price:
822 downloads
utf8proc 1.1.2

utf8proc 1.1.2


utf8proc is a library for processing UTF-8 encoded Unicode strings. more>>
utf8proc is a library for processing UTF-8 encoded Unicode strings. Unicode normalization, mapping of new line functions (NLF) to standard paragraph and line separators, stripping of default ignorable characters, and case folding are supported.
utf8proc library can be used in C programs, but most of the functionality is also available as a Ruby library. For PostgreSQL, there is an extension providing a function for preparing strings in case-insensitive indices.
Quick start:
For compilation of the C library call "make c-library", for compilation of the ruby library call "make ruby-library" and for compilation of the PostgreSQL extension call "make pgsql-library".
"make all" can be used to build everything, but both ruby and PostgreSQL installations are required in this case.
Enhancements:
- A serious bug was fixed in the data file generator, which caused characters to be treated incorrectly when stripping default ignorable characters or calculating grapheme cluster boundaries.
- Unicode normalization was not affected by this bug.
<<less
Download (0.27MB)
Added: 2007-07-27 License: MIT/X Consortium License Price:
819 downloads
iTrustPage 3.01

iTrustPage 3.01


iTrustPage is an extension which prevents an Internet user from filling out untrustworthy Web forms. more>>
iTrustPage is an extension which prevents an Internet user from filling out untrustworthy Web forms.

iTrustPage prevents an Internet user from filling out untrustworthy Web forms. iTrustPage assumes that a users browser is trusted (when the browser is compromised, the user can be subject to attacks much more serious than phishing.) iTrustPages design is centered around three observations:

1. iTrustPage tries to be as user-transparent as possible. In designing this tool we tried very hard to avoid annoying the user.

2. Sometimes, iTrustPage cannot determine whether a form is trustworthy. In those cases, iTrustPage is asking the user to describe the form as if searching for the form on Google. This user-supplied information may help iTrustPage deem the form as trustworthy.

3. Any anti-phishing tool (including iTrustPage) has false negatives (i.e., a user can still visit a phishing site). iTrustPage tries very hard to minimize such occurrences, but there are no guarantees. After all, iTrustPage only offers pretty good phishing protection.

Warning: iTrustPage records anonymized usage information into a log. These logs are periodically sent to us. We analyze these logs for our research to characterize the benefits of using iTrustPage. Please visit our homepage for more information.

<<less
Download (0.053MB)
Added: 2007-07-19 License: GPL (GNU General Public License) Price:
832 downloads
pfstools 1.6.2

pfstools 1.6.2


pfstools allows for reading, writing, manipulating and viewing high-dynamic range (HDR) images and video frames. more>>
pfstools project contains a set of command line (and one GUI) programs for reading, writing, manipulating and viewing high-dynamic range (HDR) images and video frames. All programs in the package exchange data using a simple generic file format (pfs) for HDR data. The concept of the pfstools is similar to netpbm package for low-dynamic range images.
pfstools come with a library for reading and writing pfs files. The library can be used for writing custom applications that can integrate with the existing pfstools programs.
pfstools offers also a good integration with a high-level mathematical programming language GNU Octave. pfstools can be used as the extension of Octave for reading and writing HDR images or simply to store effectively large matrices.
Note that pfs in not just another format for storing HDR images (and there are already quite a few of them). It is more an attempt to integrate the existing file formats by providing a simple data format that can be used to exchange data between applications.
Enhancements:
- matlab: pfsview can now display 2D cell arrays
- pfs library: quite serious bug in sRGB transforms fixed
- added: check for GLUT library (unix only)
- added: man page for pfsglview
<<less
Download (0.53MB)
Added: 2007-07-11 License: GPL (GNU General Public License) Price:
839 downloads
Galaxy 0.8

Galaxy 0.8


Galaxy project is a stellar motion simulator which can show the development of a random field of stars. more>>
Galaxy project is a stellar motion simulator which can show the development of a random field of stars into patterns such as clusters and spiral arms.

Galaxy is a free Linux computer program which simulates the motion of stars under the influence of gravity. Create a field of random stars to begin with, then watch the stars move as they are accelerated by their mutual gravitational attractions.

You can vary the number of stars, their initial velocities around a center, and the strength of the attractive force between them. Watch how the attractive forces accelerate individual stars and send them careening in new directions. Watch how large groups of stars develop into interesting patterns over time, such as clusters and spiral arms.

Galaxy is not for serious physics, but more a toy or educational aid for young students of science.

<<less
Download (0.23MB)
Added: 2007-07-07 License: GPL (GNU General Public License) Price:
850 downloads
Flame Project 0.7.7

Flame Project 0.7.7


Flame Project is an Integrated Development Environment for producing Flash and Animated SVG files more>>
Flame Project is an Integrated Development Environment (IDE) for producing Flash and Animated SVG files, similar to Macromedia Captivate. It is licensed under the LGPL.

Imagine a free, easy to use GUI authoring environment that helps you create visually impressive and actually useful learning material. The short term goal for this project is to provide such an environment, and were well on the way to a first release for doing that.

Initially similar to Macromedia Captivate, but a big part is the support for Animated SVG. Flash has at least one serious design limitation (from my POV) making it nearly useless for comprehensive eLearning, and this appears to be addressed by the SVG spec.

The long term goal for this project is to provide both a complete authoring solution (like the Macromedia Flash IDE), and the components for server side communication, but thats a long way off. Lets finish the first bits first.

<<less
Download (0.15MB)
Added: 2007-07-03 License: LGPL (GNU Lesser General Public License) Price:
845 downloads
Flagpoll 0.8.3

Flagpoll 0.8.3


Flagpoll is a tool for developers to use meta-data files for storing information on what is needed to compile their software. more>>
Flagpoll project is a tool for developers to use meta-data files for storing information on what is needed to compile their software.
Think of it as the rpm of software development. It provides developers with total control over which packages, versions, architectures, et cetera that they want to use meta-data from.
Instead of specifying other packages cflags and ldflag manually, you can call `flagpoll mylib --cflags --ldflags` and it will retrieve the flags for its package as well as its dependencies.
For example:
gcc -o foo foo.c `flagpoll --libs --cflags gtk+-2.0`
Is a lot cleaner than:
gcc -o foo foo.c -L/usr/lib64 -lgtk-x11-2.0 -lgdk-x11-2.0 -lgdk_pixbuf-2.0 -lm
-lgobject-2.0 -lglib-2.0 -lgmodule-2.0 -ldl -lpango-1.0
-lpangocairo-1.0 -lcairo -latk-1.0
-I/usr/include/gtk-2.0 -I/usr/lib64/gtk-2.0/include
-I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include
-I/usr/include/pango-1.0 -I/usr/include/cairo
-I/usr/include/atk-1.0
All of the dependencies needed for compilation are kept in each packages meta-data file. The dependencies are resolved and the results are all necessary libs and includes needed for gtk+.
Enhancements:
- Support for Mac OS X frameworks was added.
- A serious path ordering bug and a command line usage bug were fixed.
<<less
Download (0.024MB)
Added: 2007-07-02 License: GPL (GNU General Public License) Price:
849 downloads
Archiveopteryx 2.01

Archiveopteryx 2.01


Archiveopteryx is an Internet mail server, optimized to support heavy usage and long-term archiving. more>>
Archiveopteryx is an Internet mail server, optimized to support heavy usage and long-term archiving.
The project stores mail in a PostgreSQL database, and provides access to it through IMAP, POP, and more.
Enhancements:
- A very serious SMTP submit bug was fixed.
- A new feature to copy outgoing mail to the sender was added.
- Support for SMTP+TLS on port 465 was added for Outlook.
- HTTP archive display improvements were made.
- A few minor bugs were fixed.
<<less
Download (2.3MB)
Added: 2007-06-25 License: GPL (GNU General Public License) Price:
851 downloads
The Mana World 0.0.23

The Mana World 0.0.23


The Mana World (TMW) is a serious effort to create an innovative free and open source MMORPG. more>>
The Mana World (TMW) is a serious effort to create an innovative free and open source MMORPG. TMW uses 2D graphics and aims to create a large and diverse interactive world. The Mana World project is licensed under the GPL, making sure this game cant ever run away from you.

The project includes the development of both a client and a server, as well as the development of an online world. At the moment were making alpha releases of the client, while our server is in early development.

The eAthena free software Ragnarok Online server is used until our own server has matured enough to replace it. Once ready, well be making releases of our server too so anybody will be free to set up their own server and start building their own online world.

<<less
Download (3.5MB)
Added: 2007-06-07 License: GPL (GNU General Public License) Price:
869 downloads
scanmem 0.07

scanmem 0.07


scanmem is a debugging utility used to isolate the position of a variable in an executing program. more>>
scanmem is a debugging utility used to isolate the position of a variable in an executing program.
The project is similar to pokefinders used to cheat at games.
Enhancements:
- Performance improvements and reduced scan time, including miscellaneous improvements to various commands.
- A dejagnu test suite was started and the build process was autotooled.
- One serious bug where misaligned variables could potentially be missed by scanmem was fixed along with multiple minor bugs.
<<less
Download (0.004MB)
Added: 2007-06-05 License: GPL (GNU General Public License) Price:
872 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5