drivers license
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2462
Stoqdrivers 0.8.0
Stoqdrivers package contains useful drivers for Stoq and retail systems. more>>
Stoqdrivers package contains useful drivers for Stoq and retail systems.
This is a powerful collection of device drivers written in Python and totally focused on retail systems. Stoqdrivers also offers an unified API for devices like fiscal printers which makes it easy to embed in many applications.
<<lessThis is a powerful collection of device drivers written in Python and totally focused on retail systems. Stoqdrivers also offers an unified API for devices like fiscal printers which makes it easy to embed in many applications.
Download (0.070MB)
Added: 2007-07-17 License: LGPL (GNU Lesser General Public License) Price:
829 downloads
JDBC Driver for SQLite 006
JDBC Driver for SQLite is a thin layer on top of the SQLite 3.3.x C API. more>>
JDBC Driver for SQLite is a thin layer on top of the SQLite 3.3.x C API. The native JNI library has SQLite compiled into it so all you need to do is include the two files packaged above in your project.
Usage:
Download the binary for the platform you are developing on. Open the tarball and copy the two files into your application directory:
sqlitejdbc.jar
[lib]sqlitejdbc.[dll, so, jnilib]
Reference the driver in your code:
Class.forName("org.sqlite.JDBC");
Connection conn = DriverManager.getConnection("jdbc:sqlite:filename");
// ... use the database ...
conn.close();
And call your program with the drivers JAR file in the classpath and the C library in the librarypath. E.g.
java -cp lib/yourprog.jar:lib/sqlitejdbc.jar
-Djava.library.path=lib
yourprog.Main
Enhancements:
- The driver is now thread-safe and fully supports UTF-16.
- There are binaries for Mac OS, Linux, and Windows, and instructions for compiling with MSVC.
<<lessUsage:
Download the binary for the platform you are developing on. Open the tarball and copy the two files into your application directory:
sqlitejdbc.jar
[lib]sqlitejdbc.[dll, so, jnilib]
Reference the driver in your code:
Class.forName("org.sqlite.JDBC");
Connection conn = DriverManager.getConnection("jdbc:sqlite:filename");
// ... use the database ...
conn.close();
And call your program with the drivers JAR file in the classpath and the C library in the librarypath. E.g.
java -cp lib/yourprog.jar:lib/sqlitejdbc.jar
-Djava.library.path=lib
yourprog.Main
Enhancements:
- The driver is now thread-safe and fully supports UTF-16.
- There are binaries for Mac OS, Linux, and Windows, and instructions for compiling with MSVC.
Download (0.016MB)
Added: 2006-08-05 License: BSD License Price:
705 downloads
Driver On Demand alpha1
Driver On Demand it installs and downloads drivers automatically in Linux. more>>
Driver on demand is an attempt to ease driver installations in linux. Basically, what happens is that a user plugs any device into the computer, and if a driver isnt found, the client connects to a CGI server, to check if the device is known, and if its not in the database, then the driver lookup fails and the user is no worse off then they currently are.
However, if the device is found online, the driver information file (similar to .infs, just XML and more versatile) is analysed. If its built into newer versions of kernels, but theres a driver available, the driver is installed, but the system recommends strongly that the user upgrades their kernel, automatically, otherwise it just installs.
If the vendor chooses to, they can create their own driverinstall files, put it on their site, and put a reference on the Driver On Demand server, so the user will always have the newest files.. As opposed to having to wait for the admin to update their definitions.
To people who dont care about the specifics, all they need to care about is that if a device on their system needs a driver, this will find it on the internet, and install it for them automatically.
Main features:
- Uses HTTP/plaintext, so proxy compatible
- Allows the use of always up to date file.driverinstall files users can just click to install their latest hardware
- Takes the hassle of installing drivers away from the users
- XML based driver definitions, so extremely extendable, and is written in perl, so easy to edit and handle
- System handles licenses, allowing users to add them or remove licenses of drivers (promotes GPL drivers too, because that licence is accepted by default)
- Open source, GPL.. Which means u dont need to worry about licensing..
- Allows one click install of drivers (the first linux driver listing standard)
- Promotes Open source
<<lessHowever, if the device is found online, the driver information file (similar to .infs, just XML and more versatile) is analysed. If its built into newer versions of kernels, but theres a driver available, the driver is installed, but the system recommends strongly that the user upgrades their kernel, automatically, otherwise it just installs.
If the vendor chooses to, they can create their own driverinstall files, put it on their site, and put a reference on the Driver On Demand server, so the user will always have the newest files.. As opposed to having to wait for the admin to update their definitions.
To people who dont care about the specifics, all they need to care about is that if a device on their system needs a driver, this will find it on the internet, and install it for them automatically.
Main features:
- Uses HTTP/plaintext, so proxy compatible
- Allows the use of always up to date file.driverinstall files users can just click to install their latest hardware
- Takes the hassle of installing drivers away from the users
- XML based driver definitions, so extremely extendable, and is written in perl, so easy to edit and handle
- System handles licenses, allowing users to add them or remove licenses of drivers (promotes GPL drivers too, because that licence is accepted by default)
- Open source, GPL.. Which means u dont need to worry about licensing..
- Allows one click install of drivers (the first linux driver listing standard)
- Promotes Open source
Download (0.032MB)
Added: 2005-04-08 License: GPL (GNU General Public License) Price:
1662 downloads
Dive Into Python
Dive Into Python is a free Python tutorial, written by Mark Pilgrim. more>>
Dive Into Python is a free Python tutorial, written by Mark Pilgrim.
Dive Into Python book lives at http://diveintopython.org/. If youre reading it somewhere else, you may not have the latest version.
Permission is granted to copy, distribute, and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in Appendix G, GNU Free Documentation License.
The example programs in this book are free software; you can redistribute and/or modify them under the terms of the Python license as published by the Python Software Foundation. A copy of the license is included in Appendix H, Python license.
<<lessDive Into Python book lives at http://diveintopython.org/. If youre reading it somewhere else, you may not have the latest version.
Permission is granted to copy, distribute, and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in Appendix G, GNU Free Documentation License.
The example programs in this book are free software; you can redistribute and/or modify them under the terms of the Python license as published by the Python Software Foundation. A copy of the license is included in Appendix H, Python license.
Download (MB)
Added: 2006-05-25 License: Freeware Price:
1252 downloads
libdbi-drivers 0.8.2-1
libdbi implements a database-independent abstraction layer in C, similar to the DBI/DBD layer in Perl. more>>
libdbi implements a database-independent abstraction layer in C, similar to the DBI/DBD layer in Perl.
Writing one generic set of code, programmers can leverage the power of multiple databases and multiple simultaneous database connections by using this framework.
The libdbi-drivers project provides the database-specific drivers for the libdbi framework. The drivers officially supported by libdbi are:
- Firebird/Interbase
- FreeTDS (provides access to MS SQL Server and Sybase)
- MySQL
- PostgreSQL
- SQLite/SQLite3
The following drivers are in various stages of completion and are supposed to be included into the next release:
- mSQL
- Oracle
Enhancements:
- This release fixes a packaging error in 0.8.2. There are no source code changes.
<<lessWriting one generic set of code, programmers can leverage the power of multiple databases and multiple simultaneous database connections by using this framework.
The libdbi-drivers project provides the database-specific drivers for the libdbi framework. The drivers officially supported by libdbi are:
- Firebird/Interbase
- FreeTDS (provides access to MS SQL Server and Sybase)
- MySQL
- PostgreSQL
- SQLite/SQLite3
The following drivers are in various stages of completion and are supposed to be included into the next release:
- mSQL
- Oracle
Enhancements:
- This release fixes a packaging error in 0.8.2. There are no source code changes.
Download (0.93MB)
Added: 2007-02-25 License: GPL (GNU General Public License) Price:
976 downloads
Class::Driver 0.005
Class::Driver is a Perl module to generate driver (composite) class hierarchies on-the-fly. more>>
EXAMPLE
# This is a really long synopsis, but hopefully it will give you an idea...
package MyPackage;
use Class::Driver;
use base q(Class::Driver);
our %drivers;
return 1;
sub new {
my($class, %args) = @_;
die "mime_type is required" unless($args{mime_type});
die "no driver to handle type $args{mime_type}"
unless($drivers{$args{mime_type}});
return $class->driver_load($drivers{$args{mime_type}}, %args);
}
sub driver_new {
my($class, %args) = @_;
return bless %args, $class;
}
sub driver_required { 1; }
sub driver_requied_here { 0; }
package MyPackage::avi;
use MyPackage;
use base q(MyPackage);
use Video::Info;
$MyPackage::drivers{video/x-msvideo} = avi;
return 1;
sub driver { "avi"; }
sub driver_new {
my($class, %args) = @_;
die "file is a required parameter for $args{mime_type} files"
unless($args{file});
$args{info} = Video::Info->new(-file => $args{file})
or die "Failed to create a Video::Info object for $args{file}";
return $class->SUPER::driver_new(%args);
}
sub duration {
my $self = shift;
return $args{info}->duration;
}
package MyPackage::mp3;
use base q(MyPackage);
use MP3::Info;
$MyPackage::drivers{audio/mpeg} = mp3;
## (etc...)
package main;
my $foo = MyPackage->new(file => foobar.mp3, mime_type => audio/mpeg);
print "foobar.mp3 is ", $foo->duration, " seconds long.n";
Download (0.011MB)
Added: 2006-11-14 License: Perl Artistic License Price:
1075 downloads
ALSA driver 1.0.14a
ALSA driver is an alternative implementation of Linux sound support. more>>
The Advanced Linux Sound Architecture is composed of several parts. The first is a fully modularized sound driver which supports module autoloading, devfs, isapnp autoconfiguration, and gives complete access to analog audio, digital audio, control, mixer, synthesizer, DSP, MIDI, and timer components of audio hardware.
It also includes a fully-featured kernel-level sequencer, a full compatibility layer for OSS/Free applications, an object-oriented C library which covers and enhances the ALSA kernel driver functionality for applications (client/server, plugins, PCM sharing/multiplexing, PCM metering, etc.), an interactive configuration program for the driver, and some simple utilities for basic management.
Main features:
- Efficient support for all types of audio interfaces, from consumer soundcards to professional multichannel audio interfaces.
- Fully modularized sound drivers.
- SMP and thread-safe design.
- User space library (alsa-lib) to simplify application programming and provide higher level functionality.
- Support for the older OSS API, providing binary compatibility for most OSS programs.
<<lessIt also includes a fully-featured kernel-level sequencer, a full compatibility layer for OSS/Free applications, an object-oriented C library which covers and enhances the ALSA kernel driver functionality for applications (client/server, plugins, PCM sharing/multiplexing, PCM metering, etc.), an interactive configuration program for the driver, and some simple utilities for basic management.
Main features:
- Efficient support for all types of audio interfaces, from consumer soundcards to professional multichannel audio interfaces.
- Fully modularized sound drivers.
- SMP and thread-safe design.
- User space library (alsa-lib) to simplify application programming and provide higher level functionality.
- Support for the older OSS API, providing binary compatibility for most OSS programs.
Download (2.3MB)
Added: 2007-06-11 License: GPL (GNU General Public License) Price:
869 downloads
DVB Driver Project 1.1.1
DVB Driver Project is a driver for DVB cards by many manufacturers. more>>
If you want to receive IP over Satellite and DVB on your Linux machine, you might want to buy one of these DVB PCI cards (see also the developer section for a list of card revisions supported by our driver):
* The Siemens DVB card - this is the card we developped the Linux drivers for (thanks to the Siemens guys). The Siemens DVB-S card is identical to the cards built by Hauppauge, Technotrend, Galaxis and Katek. We also support the Siemens DVB-C card.
* Hauppauge has released a low budget version of the Siemens card. The WinTV Nova has no MPEG2 decoder chip anymore. From driver version 0.8 on we support this card - you should be able to get a complete transport stream from it.
* Technotrend has developed a DVB-T card and our driver also supports this card (both, the version with DSP and the Nova card). Most DVB-S cards (except for Version 1.6) are also supported by us. The Technotrend DVB-C card (at least the newer version 2.1) is currently not working with our driver.
* The Telemann Skymedia card - never seen that card, but there are Linux drivers
* The Pentamedia cards - Linux drivers for a IP-over-Satellite card.
<<less* The Siemens DVB card - this is the card we developped the Linux drivers for (thanks to the Siemens guys). The Siemens DVB-S card is identical to the cards built by Hauppauge, Technotrend, Galaxis and Katek. We also support the Siemens DVB-C card.
* Hauppauge has released a low budget version of the Siemens card. The WinTV Nova has no MPEG2 decoder chip anymore. From driver version 0.8 on we support this card - you should be able to get a complete transport stream from it.
* Technotrend has developed a DVB-T card and our driver also supports this card (both, the version with DSP and the Nova card). Most DVB-S cards (except for Version 1.6) are also supported by us. The Technotrend DVB-C card (at least the newer version 2.1) is currently not working with our driver.
* The Telemann Skymedia card - never seen that card, but there are Linux drivers
* The Pentamedia cards - Linux drivers for a IP-over-Satellite card.
Download (0.32MB)
Added: 2005-08-09 License: GPL (GNU General Public License) Price:
1540 downloads
New Driver and Tools 1.3 Beta
New Driver and Tools is a SuperKaramba theme that displays the latest version of drivers and of some tools. more>>
New Driver and Tools is a SuperKaramba theme that displays the latest version of drivers and of some tools.
By clicking on the globe youll get on the homepage of the driver/tool.
(The wine homepage was not reachable at the time I took the screen)
Im looking forward for your feedback.
<<lessBy clicking on the globe youll get on the homepage of the driver/tool.
(The wine homepage was not reachable at the time I took the screen)
Im looking forward for your feedback.
Download (0.029MB)
Added: 2007-04-04 License: GPL (GNU General Public License) Price:
942 downloads
ExtUtils::ModuleMaker::Licenses 0.204
ExtUtils::ModuleMaker::Licenses is a Perl module to get the License for a new module. more>>
ExtUtils::ModuleMaker::Licenses is a Perl module to get the License for a new module.
SYNOPSIS
A supporting player for ExtUtils::ModuleMaker to get the COPYRIGHT section of pod and the contents of the LICENSE file.
USAGE
Should only be called from ExtUtils::ModuleMaker.
PUBLIC METHODS
Each public function/method is described here. These are how you should interact with this module.
Get_License
Usage :
Purpose :
Returns :
Argument :
$p_module_data = text for the LICENSE file
Throws :
Comments :
PRIVATE METHODS
Each private function/method is described here. These methods and functions are considered private and are intended for internal use by this module. They are not considered part of the public interface and are described here for documentation purposes only.
License_Apache
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Artistic
Purpose : Get the copyright pod text and LICENSE file text for this license
License_BSD
Purpose : Get the copyright pod text and LICENSE file text for this license
License_GPL
Purpose : Get the copyright pod text and LICENSE file text for this license
License_IBM
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Intel
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Jabber
Purpose : Get the copyright pod text and LICENSE file text for this license
License_LGPL
Purpose : Get the copyright pod text and LICENSE file text for this license
License_MIT
Purpose : Get the copyright pod text and LICENSE file text for this license
License_MITRE
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Mozilla_1_0
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Mozilla_1_1
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Nethack
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Nokia
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Python
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Q
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Ricoh
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Sun
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Sleepycat
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Vovida
Purpose : Get the copyright pod text and LICENSE file text for this license
License_ZLIB
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Perl
Purpose : Get the copyright pod text and LICENSE file text for this license
Custom_Licenses
Purpose : Get the copyright pod text and LICENSE file text for some
custom license provided by the programmer
<<lessSYNOPSIS
A supporting player for ExtUtils::ModuleMaker to get the COPYRIGHT section of pod and the contents of the LICENSE file.
USAGE
Should only be called from ExtUtils::ModuleMaker.
PUBLIC METHODS
Each public function/method is described here. These are how you should interact with this module.
Get_License
Usage :
Purpose :
Returns :
Argument :
$p_module_data = text for the LICENSE file
Throws :
Comments :
PRIVATE METHODS
Each private function/method is described here. These methods and functions are considered private and are intended for internal use by this module. They are not considered part of the public interface and are described here for documentation purposes only.
License_Apache
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Artistic
Purpose : Get the copyright pod text and LICENSE file text for this license
License_BSD
Purpose : Get the copyright pod text and LICENSE file text for this license
License_GPL
Purpose : Get the copyright pod text and LICENSE file text for this license
License_IBM
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Intel
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Jabber
Purpose : Get the copyright pod text and LICENSE file text for this license
License_LGPL
Purpose : Get the copyright pod text and LICENSE file text for this license
License_MIT
Purpose : Get the copyright pod text and LICENSE file text for this license
License_MITRE
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Mozilla_1_0
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Mozilla_1_1
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Nethack
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Nokia
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Python
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Q
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Ricoh
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Sun
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Sleepycat
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Vovida
Purpose : Get the copyright pod text and LICENSE file text for this license
License_ZLIB
Purpose : Get the copyright pod text and LICENSE file text for this license
License_Perl
Purpose : Get the copyright pod text and LICENSE file text for this license
Custom_Licenses
Purpose : Get the copyright pod text and LICENSE file text for some
custom license provided by the programmer
Download (0.079MB)
Added: 2007-01-08 License: Perl Artistic License Price:
1020 downloads
SQLScreens 1.1.11
SQLScreens is a simple relational database screen form generator written in TCL/TK. more>>
SQLScreens is a simple relational database screen form generator written in TCL/TK.
SQLScreens will let you create query screens very quickly by specifying what data (tables and columns) you want to see and what operations should be allowed (query/update, etc...). It will take care of creating the user interface and the behind-the-scenes SQL.
SQLScreens does not use a web interface, which makes it simpler and somewhat faster, but means that some tools must be available on the workstation (TCL/TK and database client code). It is a quasi-local tool, not a web-site building brick.
This project is free and has a BSD type license.
SQLScreens supports MySQL, MSQL and INFORMIX, but the preferred backend is MySQL. We also support ODBC, and, if you use SQLScreens with ODBC drivers for other databases, wed be glad to here from you.
<<lessSQLScreens will let you create query screens very quickly by specifying what data (tables and columns) you want to see and what operations should be allowed (query/update, etc...). It will take care of creating the user interface and the behind-the-scenes SQL.
SQLScreens does not use a web interface, which makes it simpler and somewhat faster, but means that some tools must be available on the workstation (TCL/TK and database client code). It is a quasi-local tool, not a web-site building brick.
This project is free and has a BSD type license.
SQLScreens supports MySQL, MSQL and INFORMIX, but the preferred backend is MySQL. We also support ODBC, and, if you use SQLScreens with ODBC drivers for other databases, wed be glad to here from you.
Download (0.16MB)
Added: 2007-03-15 License: BSD License Price:
953 downloads
phpLicenseWatcher 1.4.2
phpLicenseWatcher is a Web frontend to the FlexLM lmstat and lmdiag commands. more>>
phpLicenseWatcher is a Web frontend to the FlexLM lmstat and lmdiag commands. You can keep track of usage, health of license servers, get alerted when licenses are due to expire, and capture usage history.
Main features:
- Shows the health of a license server or a group of them
- Check which licenses are being used and who is currently using them
- Get a listing of licenses, their expiration dates and number of days to expiration
- E-mail alert of licenses that will expire within certain time period ie. within next 10 days.
- Monitors license utilization
Enhancements:
- A new Web-based configuration interface.
- Many minor bugfixes
<<lessMain features:
- Shows the health of a license server or a group of them
- Check which licenses are being used and who is currently using them
- Get a listing of licenses, their expiration dates and number of days to expiration
- E-mail alert of licenses that will expire within certain time period ie. within next 10 days.
- Monitors license utilization
Enhancements:
- A new Web-based configuration interface.
- Many minor bugfixes
Download (0.065MB)
Added: 2006-11-30 License: GPL (GNU General Public License) Price:
1061 downloads
Freespire 2.0
Freespire is a community-driven, Ubuntu-based Linux distribution. more>>
Freespire is a community-driven, Linux-based operating system that combines the best that free, open source software has to offer (community driven, freely distributed, open source code, etc.), but also provides users the choice of including proprietary codecs, drivers and applications as they see fit.
With Freespire, the choice is yours as to what software is installed on your computer, with no limitations or restrictions placed on that choice. How you choose to maximize the performance of your computer is entirely up to you.
Main features:
- Is a community-driven, Ubuntu-based Linux distribution.
- Is always made available for free use, distribution and modification, now and forever.
- Is powerful enough for the most sophisticated Linux user or developer, yet easy enough for someone completely new to Linux.
- Is available with 100% free, open source software or with the option to include legally licensed, 3rd party codecs, drivers and software.
- Legally supports (or has one-click access to support): MP3, DVD, Windows Media, QuickTime, Java, Flash, Real, ATI drivers, nVidia drivers, Adobe Acrobat Reader, proprietary WiFi drivers, fonts, and so on.
- Provides free access to the entire Freespire open source application pool using apt-get.
- Offers optional use of the Linspire CNR (click and run) Service. The CNR Client is open source.
- Includes a total development environment, which can be easily expanded using apt-get or CNR.
- Provides easy-to-use yet advanced installation and configuration options.
- Utilizes the community IRMA project to provide Freespire in dozens of different languages.
- Is community supported at no charge, with optional enhanced support available.
Enhancements:
- Freespire 2.0 is immediately available; the latest version of the free desktop Linux operating system. Building on the best of open source software using Ubuntu as its baseline, Freespire 2.0 adds legally licensed proprietary drivers, codecs, and applications in its core distribution, to provide a better user experience. Freespire is able to provide improved out-of-the-box hardware, file type, and multimedia support, such as MP3, Windows Media, Real Networks, Java, Flash, ATI, NVIDIA, WiFi, and many more. Freespire is also the first desktop Linux operating system that will include a CNR plugin for the soon-to-be-released new CNR Service, providing free one-click access to thousands of open source applications.
<<lessWith Freespire, the choice is yours as to what software is installed on your computer, with no limitations or restrictions placed on that choice. How you choose to maximize the performance of your computer is entirely up to you.
Main features:
- Is a community-driven, Ubuntu-based Linux distribution.
- Is always made available for free use, distribution and modification, now and forever.
- Is powerful enough for the most sophisticated Linux user or developer, yet easy enough for someone completely new to Linux.
- Is available with 100% free, open source software or with the option to include legally licensed, 3rd party codecs, drivers and software.
- Legally supports (or has one-click access to support): MP3, DVD, Windows Media, QuickTime, Java, Flash, Real, ATI drivers, nVidia drivers, Adobe Acrobat Reader, proprietary WiFi drivers, fonts, and so on.
- Provides free access to the entire Freespire open source application pool using apt-get.
- Offers optional use of the Linspire CNR (click and run) Service. The CNR Client is open source.
- Includes a total development environment, which can be easily expanded using apt-get or CNR.
- Provides easy-to-use yet advanced installation and configuration options.
- Utilizes the community IRMA project to provide Freespire in dozens of different languages.
- Is community supported at no charge, with optional enhanced support available.
Enhancements:
- Freespire 2.0 is immediately available; the latest version of the free desktop Linux operating system. Building on the best of open source software using Ubuntu as its baseline, Freespire 2.0 adds legally licensed proprietary drivers, codecs, and applications in its core distribution, to provide a better user experience. Freespire is able to provide improved out-of-the-box hardware, file type, and multimedia support, such as MP3, Windows Media, Real Networks, Java, Flash, ATI, NVIDIA, WiFi, and many more. Freespire is also the first desktop Linux operating system that will include a CNR plugin for the soon-to-be-released new CNR Service, providing free one-click access to thousands of open source applications.
Download (688MB)
Added: 2007-08-08 License: GPL (GNU General Public License) Price:
815 downloads
recvnet 0.0.1
recvnet is the inverse of telnet. more>>
recvnet is the inverse of telnet. Instead of connecting to some host, it listens on a port for incoming connections. When a connection is made, it works as usual.
The license of this program can be obtained from: http://www.vanheusden.com/license.txt
and is actually the GNU Public License.
<<lessThe license of this program can be obtained from: http://www.vanheusden.com/license.txt
and is actually the GNU Public License.
Download (0.002MB)
Added: 2006-06-26 License: GPL (GNU General Public License) Price:
1215 downloads
Vertris 0.3.2
Vertris project is a simple cross-platform Tetris clone. more>>
Vertris project is a simple cross-platform Tetris clone. Vertris is written in C that uses the Allegro library for graphics. It is covered under the GNU General Public License (GPL).
Enhancements:
- A freezing bug was fixed.
<<lessEnhancements:
- A freezing bug was fixed.
Download (0.30MB)
Added: 2007-06-05 License: GPL (GNU General Public License) Price:
871 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 drivers license 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