gnupg
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 38
GnuPG 2.0.6
GnuPG is a complete and free replacement for PGP. more>>
GnuPG is a complete and free replacement for PGP. Because it does not use the patented IDEA algorithm, it can be used without any restrictions. GnuPG is a RFC2440 (OpenPGP) compliant application.
GnuPG is Free Software . GnuPG can be freely used, modified and distributed under the terms of the GNU General Public License.
PGP, on which OpenPGP is based, was originally developed by Philip Zimmermann in the early 1990s.
Project Aegypten provides Sphinx-Clients (Mutt, KMail, ...) compatible to S/MIME within a GnuPG framework. Within this project a few new tools have been developed, most notably "gpgsm" as the S/MIME counterpart of "gpg".
Main features:
- Full replacement of PGP.
- Does not use any patented algorithms.
- GPLed, written from scratch.
- Can be used as a filter program.
- Full OpenPGP implementation (see RFC2440 at RFC Editor ).
- Better functionality than PGP and some security enhancements over PGP 2.
- Decrypts and verifies PGP 5, 6 and 7 messages.
- Supports ElGamal, DSA, RSA, AES, 3DES, Blowfish, Twofish, CAST5, MD5, SHA-1, RIPE-MD-160 and TIGER.
- Easy implementation of new algorithms using extension modules.
- The User ID is forced to be in a standard format.
- Supports key and signature expiration dates.
- English, Danish, Dutch, Esperanto, Estonian, French, German, Japanese, Italian, Polish, Portuguese (Brazilian), Portuguese (Portuguese), Russian, Spanish, Swedish and Turkish language support.
- Online help system.
- Optional anonymous message receivers.
- Integrated support for HKP keyservers (wwwkeys.pgp.net).
- Clears signed patch files which can still be processed by patch.
- and many more things....
<<lessGnuPG is Free Software . GnuPG can be freely used, modified and distributed under the terms of the GNU General Public License.
PGP, on which OpenPGP is based, was originally developed by Philip Zimmermann in the early 1990s.
Project Aegypten provides Sphinx-Clients (Mutt, KMail, ...) compatible to S/MIME within a GnuPG framework. Within this project a few new tools have been developed, most notably "gpgsm" as the S/MIME counterpart of "gpg".
Main features:
- Full replacement of PGP.
- Does not use any patented algorithms.
- GPLed, written from scratch.
- Can be used as a filter program.
- Full OpenPGP implementation (see RFC2440 at RFC Editor ).
- Better functionality than PGP and some security enhancements over PGP 2.
- Decrypts and verifies PGP 5, 6 and 7 messages.
- Supports ElGamal, DSA, RSA, AES, 3DES, Blowfish, Twofish, CAST5, MD5, SHA-1, RIPE-MD-160 and TIGER.
- Easy implementation of new algorithms using extension modules.
- The User ID is forced to be in a standard format.
- Supports key and signature expiration dates.
- English, Danish, Dutch, Esperanto, Estonian, French, German, Japanese, Italian, Polish, Portuguese (Brazilian), Portuguese (Portuguese), Russian, Spanish, Swedish and Turkish language support.
- Online help system.
- Optional anonymous message receivers.
- Integrated support for HKP keyservers (wwwkeys.pgp.net).
- Clears signed patch files which can still be processed by patch.
- and many more things....
Download (3.7MB)
Added: 2007-08-17 License: GPL (GNU General Public License) Price:
516 downloads
Other version of GnuPG
License:GPL (GNU General Public License)
License:Perl Artistic License
GnuPG MiniHOWTO 0.1.4
GnuPG MiniHOWTO is a resource for getting GnuPG to work and to use it. more>>
GnuPG MiniHOWTO project is a resource for getting GnuPG to work and to use it.
The GnuPG MiniHOWTO explains to install, run, use and troubleshoot GnuPG.
It also pays attention to things to think about regarding encryption.
This miniHOWTO was originally written in German and has been rewritten in English (and thus been adjusted).
GnuPG is a complete and free replacement for PGP.
Because it does not use IDEA or RSA it can be used without any restrictions.
GnuPG is nearly in compliance with RFC2440 (OpenPGP).
<<lessThe GnuPG MiniHOWTO explains to install, run, use and troubleshoot GnuPG.
It also pays attention to things to think about regarding encryption.
This miniHOWTO was originally written in German and has been rewritten in English (and thus been adjusted).
GnuPG is a complete and free replacement for PGP.
Because it does not use IDEA or RSA it can be used without any restrictions.
GnuPG is nearly in compliance with RFC2440 (OpenPGP).
Download (MB)
Added: 2006-10-03 License: GPL (GNU General Public License) Price:
647 downloads
GnuPG::Interface 0.33
GnuPG::Interface is a Perl interface to GnuPG. more>>
GnuPG::Interface is a Perl interface to GnuPG.
SYNOPSIS
# A simple example
use IO::Handle;
use GnuPG::Interface;
# settting up the situation
my $gnupg = GnuPG::Interface->new();
$gnupg->options->hash_init( armor => 1,
homedir => /home/foobar );
# Note you can set the recipients even if you arent encrypting!
$gnupg->options->push_recipients( ftobin@cpan.org );
$gnupg->options->meta_interactive( 0 );
# how we create some handles to interact with GnuPG
my $input = IO::Handle->new();
my $output = IO::Handle->new();
my $handles = GnuPG::Handles->new( stdin => $input,
stdout => $output );
# Now well go about encrypting with the options already set
my @plaintext = ( foobar );
my $pid = $gnupg->encrypt( handles => $handles );
# Now we write to the input of GnuPG
print $input @plaintext;
close $input;
# now we read the output
my @ciphertext = ;
close $output;
waitpid $pid, 0;
GnuPG::Interface and its associated modules are designed to provide an object-oriented method for interacting with GnuPG, being able to perform functions such as but not limited to encrypting, signing, decryption, verification, and key-listing parsing.
How Data Member Accessor Methods are Created
Each module in the GnuPG::Interface bundle relies on Class::MethodMaker to generate the get/set methods used to set the objects data members. This is very important to realize. This means that any data member which is a list has special methods assigned to it for pushing, popping, and clearing the list.
Understanding Bidirectional Communication
It is also imperative to realize that this package uses interprocess communication methods similar to those used in IPC::Open3 and "Bidirectional Communication with Another Process" in perlipc, and that users of this package need to understand how to use this method because this package does not abstract these methods for the user greatly. This package is not designed to abstract this away entirely (partly for security purposes), but rather to simply help create proper, clean calls to GnuPG, and to implement key-listing parsing. Please see "Bidirectional Communication with Another Process" in perlipc to learn how to deal with these methods.
Using this package to do message processing generally invovlves creating a GnuPG::Interface object, creating a GnuPG::Handles object, setting some options in its options data member, and then calling a method which invokes GnuPG, such as clearsign. One then interacts with with the handles appropriately, as described in "Bidirectional Communication with Another Process" in perlipc.
<<lessSYNOPSIS
# A simple example
use IO::Handle;
use GnuPG::Interface;
# settting up the situation
my $gnupg = GnuPG::Interface->new();
$gnupg->options->hash_init( armor => 1,
homedir => /home/foobar );
# Note you can set the recipients even if you arent encrypting!
$gnupg->options->push_recipients( ftobin@cpan.org );
$gnupg->options->meta_interactive( 0 );
# how we create some handles to interact with GnuPG
my $input = IO::Handle->new();
my $output = IO::Handle->new();
my $handles = GnuPG::Handles->new( stdin => $input,
stdout => $output );
# Now well go about encrypting with the options already set
my @plaintext = ( foobar );
my $pid = $gnupg->encrypt( handles => $handles );
# Now we write to the input of GnuPG
print $input @plaintext;
close $input;
# now we read the output
my @ciphertext = ;
close $output;
waitpid $pid, 0;
GnuPG::Interface and its associated modules are designed to provide an object-oriented method for interacting with GnuPG, being able to perform functions such as but not limited to encrypting, signing, decryption, verification, and key-listing parsing.
How Data Member Accessor Methods are Created
Each module in the GnuPG::Interface bundle relies on Class::MethodMaker to generate the get/set methods used to set the objects data members. This is very important to realize. This means that any data member which is a list has special methods assigned to it for pushing, popping, and clearing the list.
Understanding Bidirectional Communication
It is also imperative to realize that this package uses interprocess communication methods similar to those used in IPC::Open3 and "Bidirectional Communication with Another Process" in perlipc, and that users of this package need to understand how to use this method because this package does not abstract these methods for the user greatly. This package is not designed to abstract this away entirely (partly for security purposes), but rather to simply help create proper, clean calls to GnuPG, and to implement key-listing parsing. Please see "Bidirectional Communication with Another Process" in perlipc to learn how to deal with these methods.
Using this package to do message processing generally invovlves creating a GnuPG::Interface object, creating a GnuPG::Handles object, setting some options in its options data member, and then calling a method which invokes GnuPG, such as clearsign. One then interacts with with the handles appropriately, as described in "Bidirectional Communication with Another Process" in perlipc.
Download (0.037MB)
Added: 2006-08-04 License: Perl Artistic License Price:
1176 downloads
Python GnuPGInterface 0.3.2
GnuPGInterface is a Python module to interface with GnuPG . more>>
GnuPGInterface is a Python module to interface with GnuPG . It concentrates on interacting with GnuPG via filehandles, providing access to control GnuPG via versatile and extensible means.
This module is based on GnuPG::Interface, a Perl module by the same author.
To install this distribution, simply run the following commands:
python setup.py build
python setup.py install
See pydoc GnuPGInterface for module documentation. Only recent
versions of Python include the executable pydoc.
Enhancements:
- GnuPGInterface.py, NEWS, setup.py: bump version to 0.3.2 and news
<<lessThis module is based on GnuPG::Interface, a Perl module by the same author.
To install this distribution, simply run the following commands:
python setup.py build
python setup.py install
See pydoc GnuPGInterface for module documentation. Only recent
versions of Python include the executable pydoc.
Enhancements:
- GnuPGInterface.py, NEWS, setup.py: bump version to 0.3.2 and news
Download (0.012MB)
Added: 2006-07-11 License: GPL (GNU General Public License) Price:
1200 downloads
KGpg 1.2.2
Kgpg is a frontend for GNU Privacy Guard (GnuPG). It provides file encryption, file decryption and key management. more>>
Kgpg is a frontend for GNU Privacy Guard (GnuPG). The project provides file encryption, file decryption and key management.
Main features:
- an editor mode for easily and quickly encrypting or decrypting a file or message which is typed, copied, pasted or dragged into the editor, or which is double-clicked in the file manager
- Konqueror integration for encrypting or decrypting files
- a panel applet for encrypting / decrypting files or the clipboard contents, etc.
- key management functions (generation, import, export, deletion and signing)
- decrypting clipboard contents, including integration with Klipper
This package is part of KDE, as a component of the KDE utilities module. See the kde and kdeutils packages for more information.
<<lessMain features:
- an editor mode for easily and quickly encrypting or decrypting a file or message which is typed, copied, pasted or dragged into the editor, or which is double-clicked in the file manager
- Konqueror integration for encrypting or decrypting files
- a panel applet for encrypting / decrypting files or the clipboard contents, etc.
- key management functions (generation, import, export, deletion and signing)
- decrypting clipboard contents, including integration with Klipper
This package is part of KDE, as a component of the KDE utilities module. See the kde and kdeutils packages for more information.
Download (13MB)
Added: 2007-03-12 License: GPL (GNU General Public License) Price:
567 downloads
GPGME 1.1.4
GPGME (GnuPG Made Easy) is a library designed to make access to GnuPG easier for applications. more>>
GPGME (GnuPG Made Easy) is a library designed to make access to GnuPG easier for applications. The project provides a High-Level Crypto API for encryption, decryption, signing, signature verification and key management.
Currently it uses GnuPG as its backend but the API isnt restricted to this engine; in fact we have already developed a backend for CMS (S/MIME).
Because the direct use of GnuPG from an application can be a complicated programming task, it is suggested that all software should try to use GPGME instead. This way bug fixes or improvements can be done at a central place and every application benefits from this.
Especially authors of MUAs should consider to use GPGME. It is even planned to create a set of standard widgets for common key selection tasks.
Enhancements:
- A vulnerability when using GnuPG in streaming mode, which made it possible to insert additional text before or after a signed message if GnuPG was not used correctly, was fixed.
<<lessCurrently it uses GnuPG as its backend but the API isnt restricted to this engine; in fact we have already developed a backend for CMS (S/MIME).
Because the direct use of GnuPG from an application can be a complicated programming task, it is suggested that all software should try to use GPGME instead. This way bug fixes or improvements can be done at a central place and every application benefits from this.
Especially authors of MUAs should consider to use GPGME. It is even planned to create a set of standard widgets for common key selection tasks.
Enhancements:
- A vulnerability when using GnuPG in streaming mode, which made it possible to insert additional text before or after a signed message if GnuPG was not used correctly, was fixed.
Download (0.92MB)
Added: 2007-03-15 License: GPL (GNU General Public License) Price:
957 downloads
libgpg-error 1.4
libgpg-error package contains common error codes and error handling functions used by GnuPG, Libgcrypt, GPGME and more packages. more>>
libgpg-error package contains common error codes and error handling functions used by GnuPG, Libgcrypt, GPGME and more packages.
Installation:
Please read the file INSTALL!
Here is a quick summary:
1) Check that you have unmodified sources. You can find instructions how to verify the sources below. Dont skip this - it is an important step!
2) Unpack the archive. With GNU tar you can do it this way:
"tar xzvf libgpg-error-x.y.tar.gz"
3) "cd libgpg-error-x.y"
4) "./configure"
5) "make"
6) "make install"
<<lessInstallation:
Please read the file INSTALL!
Here is a quick summary:
1) Check that you have unmodified sources. You can find instructions how to verify the sources below. Dont skip this - it is an important step!
2) Unpack the archive. With GNU tar you can do it this way:
"tar xzvf libgpg-error-x.y.tar.gz"
3) "cd libgpg-error-x.y"
4) "./configure"
5) "make"
6) "make install"
Download (0.60MB)
Added: 2006-09-26 License: GPL (GNU General Public License) Price:
1128 downloads
GPG-Crypter 0.3.5
GPG-Crypter is a GTK+ frontend to GnuPG (GPG) and it is intended to decrypt and encrypt text into ASCII-armored gpg-ciphers. more>>
GPG-Crypter is a GTK+ frontend to GnuPG (GPG) and it is intended to decrypt and encrypt text into ASCII-armored gpg-ciphers.
Enhancements:
- implemented edit menu funktions (cut, copy, paste and delete)
- activated "copy to clipboard" and "insert from clipboard" buttons for fast plaintext and cipher clipboard operations
- implemented and avtivated file operation functions (new, open(plaintext/cipher), save (plaintext/cipher) and save as(plaintext/cipher))
- inserted the passphrase_callback_dialog into the glade-file
- changed the dependency from libgpgme-pthread to libgpgme as we dont need pthread support for gpgme and some people reported missing libgpgme-pthread in their distributions
- french translation by Christophe Polyte
- polish translation by Wojciech Myrda
<<lessEnhancements:
- implemented edit menu funktions (cut, copy, paste and delete)
- activated "copy to clipboard" and "insert from clipboard" buttons for fast plaintext and cipher clipboard operations
- implemented and avtivated file operation functions (new, open(plaintext/cipher), save (plaintext/cipher) and save as(plaintext/cipher))
- inserted the passphrase_callback_dialog into the glade-file
- changed the dependency from libgpgme-pthread to libgpgme as we dont need pthread support for gpgme and some people reported missing libgpgme-pthread in their distributions
- french translation by Christophe Polyte
- polish translation by Wojciech Myrda
Download (MB)
Added: 2007-02-17 License: GPL (GNU General Public License) Price:
988 downloads
sign 1.0.7
sign is a file signing and signature verification utility. more>>
sign is a file signing and signature verification utility. Its main purpose is to be a simple and convenient extension to a tar/gz/bzip2 line of tools to check file integrity and authenticity. Its small and simple, it does just one thing and hopefully does it well.
I needed a tool to digitally sign a bunch of .tar.gz and to allow recepients of the files to easily check, unzip, untar and start enjoying the content as quickly and painlessly as possible.
There are OpenSSL, GnuPG, PGP and others and they are of course perfectly capable of file signing. OpenSSL is probably the most widely spread one and best suited for the role of being a universal signing utility. However the state of affairs is such that OpenSSL as an application is not really used for anything more than generating tarball MD5 hashes. The other packages are plain big and complex for a simple task of file integrity checking. Its like getting a professional sound editing suite instead of a dead-simple .mp3 player. The larger crypto-packages also tend to lack modularity in a sense that to get file signing working I would need to configure a handful of core, but otherwise unrelated settings first. Besides if I am not going to use anything but a signing code, the rest will be sitting there collecting dust, creating untrivial shared libraries dependencies and a general feeling of a wasted disk space.
First of all, sign is a file processing tool, it reads from the files (including stdin) and writes to the files (including stdout). It can be used to attach signatures to the files or to verify and/or strip them.
Between signing and verifying latter will account for a bulk of usage. When checking the signature, sign will check for both integrity and authenticity of the file. An integrity check is done by validating SHA-1 hash embedded into the signature, and an authenticity is ensured by checking signers credentials against a trusted list.
sign adopts OpenSSH-style authentication model, where the trust hierarchy is flat (no certificates), an authentication is done with public keys and the list of trusted keys is grown gradually on as-needed basis.
Every trusted key is associated with a file name prefix called the title. The key can be trusted for signing files, whose name start with keys title. The same key may be associated with more than one title, but not vice versa.
The signature is appended at the end of the file and it carries three bits of information - the title, the public key of the signer and the hash of all preceeding data encrypted with signers private key. The verification is performed as follows:
The filename is checked to start with a title
The hash is decrypted using the public key
The hash is compared to the locally computed value (this ensures integrity)
The title is looked up locally; if its known and associated public key is the same as in the signature, the file is deemed authentic.
Otherwise if the title is known, but the key is different, the file is considered to be signed by untrusted, impersonating party and the check fails.
And lastly, if the title is unknown, the authenticity of the file cannot be established. The user is provided with public key fingerprint, which should be manually authenticated. Then the title and the key are added to the trusted list; and subsequent signatures from the this signer for this particular title will be cleared automatically.
In order to sign files, the signing keypair must first be generated. The keypair is maintained on per-user basis and can be created by running sign with a special command-line flag. The signing process itself is as follows (give or take insignificant details):
Run the filename through a list of owned titles and find the best match. Alternately accept explicit title from the user using one of the command-line flags.
Attach the title, attach public signing key
Compute the hash, encrypt it with private signing key
Attach encrypted hash.
For details on command-line syntax and other operating parameters, please refer to a man page; an online version is here.
<<lessI needed a tool to digitally sign a bunch of .tar.gz and to allow recepients of the files to easily check, unzip, untar and start enjoying the content as quickly and painlessly as possible.
There are OpenSSL, GnuPG, PGP and others and they are of course perfectly capable of file signing. OpenSSL is probably the most widely spread one and best suited for the role of being a universal signing utility. However the state of affairs is such that OpenSSL as an application is not really used for anything more than generating tarball MD5 hashes. The other packages are plain big and complex for a simple task of file integrity checking. Its like getting a professional sound editing suite instead of a dead-simple .mp3 player. The larger crypto-packages also tend to lack modularity in a sense that to get file signing working I would need to configure a handful of core, but otherwise unrelated settings first. Besides if I am not going to use anything but a signing code, the rest will be sitting there collecting dust, creating untrivial shared libraries dependencies and a general feeling of a wasted disk space.
First of all, sign is a file processing tool, it reads from the files (including stdin) and writes to the files (including stdout). It can be used to attach signatures to the files or to verify and/or strip them.
Between signing and verifying latter will account for a bulk of usage. When checking the signature, sign will check for both integrity and authenticity of the file. An integrity check is done by validating SHA-1 hash embedded into the signature, and an authenticity is ensured by checking signers credentials against a trusted list.
sign adopts OpenSSH-style authentication model, where the trust hierarchy is flat (no certificates), an authentication is done with public keys and the list of trusted keys is grown gradually on as-needed basis.
Every trusted key is associated with a file name prefix called the title. The key can be trusted for signing files, whose name start with keys title. The same key may be associated with more than one title, but not vice versa.
The signature is appended at the end of the file and it carries three bits of information - the title, the public key of the signer and the hash of all preceeding data encrypted with signers private key. The verification is performed as follows:
The filename is checked to start with a title
The hash is decrypted using the public key
The hash is compared to the locally computed value (this ensures integrity)
The title is looked up locally; if its known and associated public key is the same as in the signature, the file is deemed authentic.
Otherwise if the title is known, but the key is different, the file is considered to be signed by untrusted, impersonating party and the check fails.
And lastly, if the title is unknown, the authenticity of the file cannot be established. The user is provided with public key fingerprint, which should be manually authenticated. Then the title and the key are added to the trusted list; and subsequent signatures from the this signer for this particular title will be cleared automatically.
In order to sign files, the signing keypair must first be generated. The keypair is maintained on per-user basis and can be created by running sign with a special command-line flag. The signing process itself is as follows (give or take insignificant details):
Run the filename through a list of owned titles and find the best match. Alternately accept explicit title from the user using one of the command-line flags.
Attach the title, attach public signing key
Compute the hash, encrypt it with private signing key
Attach encrypted hash.
For details on command-line syntax and other operating parameters, please refer to a man page; an online version is here.
Download (0.027MB)
Added: 2006-07-07 License: BSD License Price:
1208 downloads
Gnu Privacy Assistant 0.7.6
GNU Privacy Assistant aka GPA, is a graphical user interface for the GnuPG (GNU Privacy Guard). more>>
GNU Privacy Assistant aka GPA, is a graphical user interface for the GnuPG (GNU Privacy Guard).
GPA utilizes GTK (the GIMP Tool Kit) and compiles for various platforms. You can have a look at some screenshots . You can learn more about GPA icons , as well.
<<lessGPA utilizes GTK (the GIMP Tool Kit) and compiles for various platforms. You can have a look at some screenshots . You can learn more about GPA icons , as well.
Download (0.59MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
831 downloads
Pygmy 0.6.0
Pygmy is a GNOME mail client written in the Python programming language. more>>
Pygmy is a GNOME mail client written in the Python programming. The current version is 0.6.0 (07/12/02).
Main features:
- Folder hierarchy
- Multipart messages and general MIME support
- Message filters
- Address book, or use in combination with GNOMECard
- GnuPG support
- GtkHTML support for message viewing
<<lessMain features:
- Folder hierarchy
- Multipart messages and general MIME support
- Message filters
- Address book, or use in combination with GNOMECard
- GnuPG support
- GtkHTML support for message viewing
Download (0.26MB)
Added: 2006-06-08 License: GPL (GNU General Public License) Price:
1234 downloads
Pgpgpg 0.13
Pgpgpg is a wrapper arround Gnu Privacy Guard . more>>
Pgpgpg is a wrapper arround Gnu Privacy Guard which takes PGP 2.6 command line options, translate them and then call GnuPG (Gnu Privacy Guard) to perform the desired action.
PGP and GnuPG are encryption programms with high security encryption engines. However, PGP is available without a fee but is not realy free software. GnuPG on the other hand is realy free software and have additionally features but have a different command line syntax then PGP.
The goal of pgpgpg is to plug in a command line syntax in front of GnuPG equal to PGP 2.6. With pgpgpg most scripts and applications written to use PGP 2.6 should normally work with GnuPG too. By using pgpgpg these applications also benefits from the fact that GnuPG doesnt use the patented,non and commercial free RSA nor IDEA algorithmn.
Version restrictions:
- All applications which try to parse the output of PGP 2.6 especially the output of keyring listings will not work very well with the current pgpgpg release.
- However, all applications wich just fires PGP to encrypt, sign or decrypt should work very well with pgpgpg.
Enhancements:
- pgpopts.c: pgpopts_build_argv() documentation enhanced and guessing the type of armored data on decryption added.
- Makefile.am: Added guessarmortype.[ch] guessarmortype.[ch]: New. Function to guess the type of armored data.
<<lessPGP and GnuPG are encryption programms with high security encryption engines. However, PGP is available without a fee but is not realy free software. GnuPG on the other hand is realy free software and have additionally features but have a different command line syntax then PGP.
The goal of pgpgpg is to plug in a command line syntax in front of GnuPG equal to PGP 2.6. With pgpgpg most scripts and applications written to use PGP 2.6 should normally work with GnuPG too. By using pgpgpg these applications also benefits from the fact that GnuPG doesnt use the patented,non and commercial free RSA nor IDEA algorithmn.
Version restrictions:
- All applications which try to parse the output of PGP 2.6 especially the output of keyring listings will not work very well with the current pgpgpg release.
- However, all applications wich just fires PGP to encrypt, sign or decrypt should work very well with pgpgpg.
Enhancements:
- pgpopts.c: pgpopts_build_argv() documentation enhanced and guessing the type of armored data on decryption added.
- Makefile.am: Added guessarmortype.[ch] guessarmortype.[ch]: New. Function to guess the type of armored data.
Download (0.022MB)
Added: 2006-07-13 License: GPL (GNU General Public License) Price:
1202 downloads
gozerplugs 0.9.0.17
A plugin package for gozerbot more>>
gozerplugs 0.9.0.17 is professionally designed as a plugin package for gozerbot. gozerbot is the Python IRC bot and Jabber bot in one.
Major Features:
- Provide both IRC and Jabber support
- User management by userhost .. bot will not respond if it doesnt know you
- Fleet .. use more than one bot in a program
- Use the bot through dcc chat
- Fetch rss feeds
- Remember items
- Relaying between bots
- Program your own plugins
- Query other bots with json REST
- Serve as a udp irc or jabber notification bot
- Sqlalchemy support
Requirements:
- a shell
- python 2.5 or higher (sqlite.so builtin or use pysqlite3)
- gnupg
- simplejson
- sqlalchemy
- xmpppy
Added: 2009-06-19 License: BSD License Price: FREE
13 downloads
hdup 2.0.14
hdup is used to back up a filesystem. more>>
Hdup 2.0 is an evolution from hdup 1.6. Hdup 2.0 is more solid and has even more features, it supports a nobackup keyword, if a special file is found in a directory - that directory is not backed up. Also the include/exclude mechanism is more powerfull and more robust.
Hdup should run and compile on all Unixes out there. hdup does depend on Gnu tar for the backups. It also needs glib-dev if you compile it yourself. Also for building it you need Gnu Make.
Hdup 2.0 offers a much better include/exclude mechanism and can see nobackup keywords in directories. But because of some limitation in the current stable version of Gnu tar this means that not all directory information is included in the archive. You need a Gnu tar version > 1.3.25, pref. one of the newer stable releases (1.15.x or greater).
I currently have a SOLUTION for this. This involves patching tar and running hdup with the -P (patched_tar) option. This patch makes tar and hdup include the directory information in the archives once again.
Main features:
- simple to use,
- small and versatile backup program,
- support for incremental backups,
- support for backups over the network (with ssh),
- support for network restore (with ssh),
- support for encrypted backups (using mcrypt, gnupg),
- support for split up archives (called chunks),
- support for .nobackup files (to exclude certain directories),
- flexible regular expression based include/exclude mechanism,
- designed to be run from cron.
Enhancements:
- Files specified with the "dir" keyword are now also seperated with NULLs in the filelist.
<<lessHdup should run and compile on all Unixes out there. hdup does depend on Gnu tar for the backups. It also needs glib-dev if you compile it yourself. Also for building it you need Gnu Make.
Hdup 2.0 offers a much better include/exclude mechanism and can see nobackup keywords in directories. But because of some limitation in the current stable version of Gnu tar this means that not all directory information is included in the archive. You need a Gnu tar version > 1.3.25, pref. one of the newer stable releases (1.15.x or greater).
I currently have a SOLUTION for this. This involves patching tar and running hdup with the -P (patched_tar) option. This patch makes tar and hdup include the directory information in the archives once again.
Main features:
- simple to use,
- small and versatile backup program,
- support for incremental backups,
- support for backups over the network (with ssh),
- support for network restore (with ssh),
- support for encrypted backups (using mcrypt, gnupg),
- support for split up archives (called chunks),
- support for .nobackup files (to exclude certain directories),
- flexible regular expression based include/exclude mechanism,
- designed to be run from cron.
Enhancements:
- Files specified with the "dir" keyword are now also seperated with NULLs in the filelist.
Download (0.085MB)
Added: 2005-12-10 License: GPL (GNU General Public License) Price:
1419 downloads
BINKI GNU/Linux 0.3
BINKI GNU/Linux is a distro inspired by the www.linuxfromscratch.com project. more>>
BINKI GNU/Linux is a distro inspired by the www.linuxfromscratch.com project.
BINKI is many things, first of all, it is the name of the horse of Death as it is told by my favourite author Terry Pratchet in his "Discworld" series. It is the name of a sheep that was eaten at a St. Georges Day in Bulgaria. And last it is my custom distro, based on inspirations from www.linuxfromscratch.com
Packages:
1. a2ps-4.13 convert any into PostScript format
2. a52dec-0.7.4 decode ATSC A/52 (AC-3) streams
3. aalib-1.4.0 render any graphic into ASCII Art
4. akregator-1.0.2 RSS reader
5. alsa-lib-1.0.11 ALSA sound interface library
6. alsa-oss-1.0.11 ALSA OSS compatibility lib
7. alsa-plugins-1.0.11 ALSA OSS and JACK plugins
8. alsa-utils-1.0.11 ALSA utilities
9. amarok-1.4.0 advanced audio player
10. apache-2.2.0 apache web server
11. arts-1.5.0 arts sound support for KDE libs
12. aspell-0.60.4 interactive spell checking program
13. atk-1.11.4 accessibility solutions for GTK2
14. audacity-1.3.0b audio editor and recorder
15. audiofile-0.2.6 oss version of SGIs audiofile library
16. autoconf-2.59 automatically configures source code
17. autofs-4.1.4 Automate Mounting of File Systems
18. automake-1.9.6 generates Makefiles for autoconf
19. avidemux-2.1.2 linear video editor
20. avifile-0.7.43 AVI tools and support libraries
21. bash-3.1 Bourne-Again SHell
22. bc-1.06 arbitrary precision numeric processor
23. berkeley-db-4.4.20 Berkeley database library ver.4
24. bind-9.3.1 DNS server and utilities
25. binkibase-0.3 BINKI 0.2 Base Config
26. binutils-2.16.1 GNU binary development tools
27. bison-2.1 parser generator
28. bluefish-1.0.5 powerful programmers editor for X
29. boehm-gc-6.7 garbage collector
30. bzip2-1.0.3 compress and decompress bz2 files
31. cairo-1.0.4 2D graphics library
32. calcchecksum-1.6 various checksum calulator
33. cdparanoia-3.9.8 CD audio extraction tool
34. cdrdao-1.2.1 record audio or data CDR in DAO mode
35. cdrtools-2.01 CD recording utilities
36. cfv-1.18.1 checksum verification files tool
37. chmlib-0.37.4 ITSS/CHM file format lib
38. consolecyr-0.1 console cyrillic support
39. coreutils-5.94 core GNU utilities
40. cpio-2.6 cpio and tar archiver
41. cream-0.35 vim graphical interface for X
42. cups-1.2.1 Common Unix Printing System
43. curl-7.15.3 transfer files with URL syntax
44. cvs-1.11.21 CVS version control system
45. cxx-4.0.3-runtime g++,fortran,objc,java runtime libs
46. cxx-libs-5.0.7 C++ shared library compatibility
47. d4x-2.5.6 Downloader for X
48. dejagnu-1.4.4 framework for testing other programs
49. desktop-file-utils-0.10 desktop entries command line tool
50. dhcp-3.0.4b3 DHCP client and server tools
51. dhcpcd-2.0.4 DHCP Client Daemon
52. dialog-1.0 curses based dialog interface
53. diffutils-2.8.7 find differences between files
54. distcc-2.18.3 distributed C/C++ compiler
55. dlume-0.2.4 address book
56. dosfstools-2.11 FAT-16 and FAT-32 file system tools
57. drgeo-1.1.0 interactive geometry for children
58. dvd+rw-tools-6.1 tools for burning DVD/-R/+R/+RW/-RW
59. dvd-slideshow-0.7.5 DVD slides creation tool
60. dvdauthor-0.6.11 DVD authoring tools
61. e2fsprogs-1.38 ext2 and ext3 file system tools
62. easytag-1.99.12 various media tags viewer/editor
63. enscript-1.6.4 converts ASCII to PS, HTML, RTF, ANSI
64. esound-0.2.36 Enlightened sound daemon
65. espgs-8.15.1 versatile processor for PostScript data
66. ethereal-0.10.14 network packet sniffer and analizer
67. ettercap-0.7.3 network packet sniffer and analizer
68. expat-2.0.0 C library for parsing XML streams
69. expect-5.43.0 dialog with interactive programs
70. faac-1.24.1 free AAC encoder
71. faad-2.0.1 free AAC decoder
72. fcron-3.0.0 periodical command scheduler
73. ffmpeg-0.4.9 audio and video conversion tools
74. fftw-3.1.1 fast fourier transform lib
75. file-4.17 tool for determining file type
76. findutils-4.2.27 tools to find files
77. firefox-1.5.0.3 firefox web browser
78. flac-1.1.2 free lossless audio codec
79. flex-2.5.33 programs to recognize text patterns
80. fontconfig-2.3.2 library for configuring font access
81. fortune-mod-1.99.1 fortune telling program
82. freeglut-2.4.0 free openGL toolkit
83. freetype-2.1.10 TrueType font lib
84. fyre-1.0.0 tool for computation artwork
85. gaim-1.5.0 Instant Messenger
86. galculator-1.2.5.2 scientific calculator
87. gawk-3.1.5 programs for manipulating text files
88. gbgoffice-1.3 office dictionary
89. gcc-4.0.3 gcc,g77,g++,gnat,gcj compilers
90. gcolor2-0.4 simple color selector
91. gd-2.0.33 graphic library for image creation
92. gdb-6.4 GNU Project Debugger
93. gdbm-1.8.3 GNU Database Manager
94. gettext-0.14.5 internationalization and localization
95. gftp-2.0.18 ftp client for X
96. giflib-4.1.4 libs for reading and writing GIFs
97. gimp-2.2.11 The GIMP image editor
98. gimp-help-2.0.9 The GIMP help
99. gimp-print-4.2.7 high quality printer drivers
100. glib-1.2.10 low-level core library
101. glib-2.10.3 low-level core library
102. glibc-2.3.6 main C library
103. glibmm-2.8.6 C++ interface for glib2
104. gmp-4.1.4 arbitrary precision math lib
105. gnupg-1.4.3 public/private key encryptor
106. gnutls-1.3.1 gnu Transport Layer Security lib
107. gpa-0.7.0 GnuPG Assistant Manager
108. gparted-0.2.5 GUI for parted
109. gpgme-1.0.3 GnuPG Make access Easy
110. gphoto2-2.1.99 GNU Digital Camera download software
111. gpm-1.20.1 General Purpose Mouse daemon
112. gqview-2.1.1 very fast image viewer
113. graveman-0.3.12-4 cdrtools/dvd+rw-tools GUI
114. grep-2.5.1a programs for searching through files
115. gresistor-0.0.1 translate resistor color codes
116. groff-1.18.1.1 processing and formatting text
117. grsync-0.4.2 GUI for rsync
118. grub-0.97 GRand Unified Bootloader
119. gtk+-1.2.10 GTK+ libs
120. gtk2-2.8.18 GTK2 libs
121. gtkam-0.1.13 digital camera front-end for X
122. gtkglext-1.2.0 GTK2 openGL extension
123. gtkglextmm-1.2.0 GTKmm openGL extension
124. gtkmm-2.8.5 C++ interface of GTK2 libs
125. guile-1.6.7 extensions language lib
126. gzip-1.3.5 compress and decompress gz files
127. hd2u-1.0.0 dos2unix plain text convertor
128. hicolor-theme-0.9 hicolor icon theme
129. htop-0.6.2 interactive process viewer
130. icu-3.4.1 Unicode support fot C/C++/Java
131. id3lib-3.8.3 manipule ID3v1 and ID3v2 tags
132. imagemagick-6.2.6-8 interactive image manipulation tool
133. imlib-1.9.15 image rendering lib
134. imlib2-1.2.1 faster image rendering lib
135. inetutils-1.4.2 basic networking programs
136. inkscape-0.43 SVG-based vector drawing program
137. intltool-0.34.1 internationalization tool
138. iproute2-2.6.16 basic and advanced IPV4-based networking
139. iptables-1.3.5 principal linux firewall
140. iptraf-3.0.0 IP Network monitor stat tool
141. jack-0.100.0 Jack Audio Connection Kit
142. k3b-0.12.15 The Ultimate CD/DVD Burner
143. k9copy-1.0.4 linux DVD shrinker
144. kaffeine-0.8.1 full featured media player
145. kanatest-0.3.6 learn japanese alphabet
146. kbabel-3.5.2 advanced PO-file editor
147. kbd-1.12 key-table files and keyboard tools
148. kcdlabel-2.13 tool for making CD covers
149. kchmviewer-2.5 CHM viewer
150. kdelibs-3.5.0 core KDE programs and libs
151. kdetv-0.8.9 watch TV on Linux
152. kernel-headers-2.6.12.0 sanitized kernel headers API
153. kino-0.8.1 non-linear video editor
154. kmagnify-3.5.2 magnifies screen portions
155. knowde-1.8.0 knowledge management tool
156. kompare-3.5.2 compares files
157. kpdf-3.5.0 PDF Viewer
158. kphotoalbum-2.2 photo album utility
159. krename-3.0.11 multirename tool
160. ksubeditor-0.2 subtitle file editor
161. kuser-3.5.2 user manager
162. lame-3.97 MP3 encoder
163. lcms-1.15 provide color management facilities
164. leafpad-0.8.9 simple notepad for X
165. less-394 text file viewer
166. lha-114i LHA archiver
167. libIDL-0.8.6 Interface Definition Language libs
168. libao-0.8.6 cross-platform audio library
169. libart_lgpl-2.3.17 high-performance 2D graphics lib
170. libavc1394-0.5.1 1934 AV/C program interface
171. libcdio-0.77 CD Input and Control library
172. libcroco-0.6.1 general CSS parsing and manipulation
173. libdv-0.104 software DV video codec
174. libdvdcss-1.2.9 access DVDs as a block device
175. libdvdread-0.9.4 simple DVD reading lib
176. libexif-0.6.13 parse, edit, and save EXIF data
177. libexif-gtk-0.3.5 libexif GTK bindings
178. libfame-0.9.1 realtime MPEG-1/4 video encoding lib
179. libfpx-1.2.0.13 Flash FPX image lib
180. libgcrypt-1.2.2 general-purpose cryptographic library
181. libglade-2.5.1 loads Glade interface files
182. libgpg-error-1.3 error handling for GnuPG, libgcrypt
183. libgphoto2-2.1.99 access digital camera by programs
184. libgsf-1.14.0 abstraction layer for structured files
185. libgtkhtml-2.6.3 lightweight HTML engine
186. libid3tag-0.15.1b ID3 tag library
187. libiec61883-1.0.0 high level DV streaming API
188. libieee1284-0.2.10 paralel port IEEE 1284 Driver
189. libjpeg-6b JPEG image compression lib
190. libmad-0.15.1b high-quality MPEG audio decoder
191. libmikmod-3.2.0 module formats and samples sound lib
192. libmng-1.0.9 MNG image (animated PNG) lib
193. libmpeg2-0.4.0b advanced manipulation of MPEG-2 streams
194. libmpeg3-1.6 advanced manipulation of MPEG streams
195. libnet-1.1.3 generic networking API
196. libogg-1.1.3 ogg file structure lib
197. libpcap-0.9.4 user-level network packet capture
198. libpng-1.2.8 PNG image manipulation lib
199. libquicktime-0.9.8 manipulate quicktime files
200. libraw1394-1.2.1 IEEE 1394 direct access
201. librsvg-2.14.3 SVG image manipulation lib
202. libsamplerate-0.1.2 Sample Rate Converter for audio
203. libsigc++-2.0.17 typesafe callback system for C++
204. libsndfile-1.0.15 Sampled Sound file library
205. libtheora-1.0 free video compression lib
206. libtiff-3.8.2 TIFF image manipulation lib
207. libtool-1.5.22 generic library support script
208. libusb-0.1.12 USB device access lib
209. libvorbis-1.1.2 general purpose audio format
210. libxml-1.8.17 XML parsing lib
211. libxml2-2.6.22 XML and HTML parser lib
212. libxslt-1.1.15 XSLT XML support lib
213. linux-2.6.16.2 Linux Kernel source
214. lmms-0.1.4 Linux MultiMedia Studio
215. lshw-0.2 hardware lister
216. lynx-2.8.5 text based web browser with color
217. lzo-2.02 realtime data (de)compression library
218. m4-1.4.4 macro processor
219. make-3.80 program for compiling packages
220. man-1.6c find and view man pages
221. man-pages-2.25 GNU Linux 1,200 man pages
222. mc-4.6.1 midnight commander
223. mixmos-0.2.0 enchanced audio mixer for X
224. mjpegtools-1.8.0 MPEG-2 tools
225. mktemp-1.5 create secure temporary files
226. modinit-tools-3.2.2 kernel module (un)loading tools
227. mpeg4ip-1.5 audio/video streaming tools
228. mpfr-2.2.0 multi-precision float-point lib
229. mplayer-1.0 Mplayer video audio player
230. mysql-5.0.20 fast SQL database server
231. nas-1.7 Network Audio Server
232. nasm-0.98.39 80x86 assembler and disassebler
233. ncftp-3.1.9 powerful and flexible ftp client
234. ncurses-5.5 terminal-independent screen library
235. net-tools-1.60 linux kernel networking tools
236. netpbm-10.26.27 graphic sofware lib
237. nmap-4.0.2 network exploration and security
238. nss-3.11 network security services libs
239. ntp-4.2.0 Network Time Protocol client/server
240. ocrad-0.14 optical character recognition tool
241. ogmtools-1.5 OGM video tools
242. openexr-1.2.2 HDR image format libs
243. openldap-2.3.30 Lightweight Directory Access Protocol
244. openssh-4.3p2 secure shell client and daemon
245. openssl-0.9.8a cryptography tools and libs
246. p7zip-4.42 7zip archiver
247. pango-1.12.1 layout and text rendering lib
248. parted-1.7.1 advanced partition editor
249. patch-2.5.9 apply and create patch files
250. pciutils-2.2.1 lists PCI devices
251. pcre-6.6 Perl Compatible Regular Expression
252. perl-5.8.8 Perl development environment
253. perl-archive-zip-1.16 perl module
254. perl-compress-zlib-1.41 perl module
255. perl-xml-parser-2.34 perl module
256. php-5.1.4 PHP Hypertext Preprocessor
257. pine-4.64 mail user agent
258. pkg-config-0.20 manage library compile/link flags
259. poppler-0.4.5 PDF rendering library
260. popt-1.7.5 parse command-line options
261. postfix-2.2.10 mail transport agent server
262. postgresql-8.1.4 advanced object-relational DBMS
263. ppp-2.4.3 dial-up PPP daemon
264. procps-3.2.6 programs for monitoring processes
265. proftpd-1.2.10 highly configurable secure FTP daemon
266. psmisc-22.2 display info about running processes
267. psutils-p17 PostScript Utilities
268. pygtk-2.8.6 Python bindings for the GTK widget
269. python-2.4.2 Python development environment
270. qcomicbook-0.2.7 comic books reading tool
271. qt-3.3.6 C++ GUI library (for KDE)
272. readline-5.1 command-line editing support
273. recode-3.6 converts files between character sets
274. reiserfsprogs-3.6.19 Reiserfs file system tools
275. rp-pppoe-3.8 PPPoE client and server
276. rsync-2.6.7 fast incremental file transfers daemon
277. ruby-1.8.4 Ruby development environment
278. samba-3.0.22 provides services to SMB/CIFS clients
279. sane-backends-1.0.17 Scanner Access Now Easy backends
280. screen-4.0.2 screen manager VT100/ANSI emulation
281. sdl-1.2.10 Simple DirectMedia Layer toolkit
282. sdl-guilib-1.1.2 SDL GUI library
283. sdl-image-1.2.5 SDL image loader
284. sdl-mixer-1.2.7 SDL mixer lib
285. sdl-mpeg-0.4.4 SDL video lib
286. sdl-net-1.2.6 SDL network lib
287. sdl-rtf-0.1.0 SDL rich text format lib
288. sdl-sound-1.0.1 SDL Sound lib
289. sdl-ttf-2.0.8 SDL TrueType font lib
290. sed-4.1.5 stream line editing tool
291. shadow-4.0.15 shadow password suite
292. shared-mime-info-0.17 shared MIME-info database
293. sharutils-4.6 create shell archives out of many files
294. slang-2.0.6 powerful interpreted language
295. smb4k-0.7.0 SAMBA network browser
296. sox-12.17.9 audio converting tool
297. speex-1.1.9 speech audio encoder/decoder
298. sqlite-3.3.5 lite SQL engine
299. squid-3.0 high performance web proxy cache
300. startup-notify-0.8 busy cursor for loading apps
301. strace-4.5.14 system call tracer
302. subversion-1.3.1 SVN version control system
303. sudo-1.6.8p12 gives temporary root access
304. supertux-0.1.3 Super Mario clone
305. sysklogd-1.4.1 programs for logging system messages
306. sysvinit-2.86 Linux System V Init tools
307. taglib-1.4 manipulate audio meta data
308. tar-1.15.1 GNU tar archiver
309. tcl-8.4.12 Tool Command Language
310. tcp_wrappers-7.6 daemon wrapper programs
311. tcpdump-3.9.4 network monitoring and data acquisition
312. tcsh-6.14.00 enhanced C shell
313. tellico-1.1.6 collection manager
314. texinfo-4.8 GNU software documentation system
315. thunderbird-1.5.0.2 Thunderbird mail client
316. tightvnc-1.3 optimized VNC distribution
317. tk-8.4.12 TCL GUI toolkit
318. traceroute-1.4 IP packet route tracing utility
319. transcode-1.0.2 transcoding video and audio
320. ttf-basic-0.3 basic TrueType fonts for X
321. tuxpaint-0.9.15b drawing program for children
322. udev-089 dynamic creation of device nodes tools
323. udftools-1.0.0b3 UDF file system tools
324. unzip-5.52 ZIP extraction utilities
325. usbutils-0.71 list USB devices
326. util-linux-2.12r huge collection of essential tools
327. vcdimager-0.7.23 VCD BIN/CUE image creation and ripping
328. vim-6.4 vim text editor
329. vnc2swf-0.5.0 screen recorging tool
330. vorbis-tools-1.1.1 Ogg Vorbis Tools
331. wget-1.10.2 non-interactive download manager
332. which-2.16 shows full path of (shell) commands
333. whois-4.7.12 whois directory client
334. wireless-tools-2.8 wireless tools
335. wxgtk-2.6.3 cross platform GTK lib
336. x264-20060508 free H.264/MPEG-4 AVC lib
337. xchat-2.6.2 IRC client for X
338. xfc-4.3.1 XFCE Foundation Classes
339. xfce-4.3-plugins XFCE Goodies
340. xfce-4.3 XFCE Desktop environment
341. xfsprogs-2.7.11 Utilities for SGIs XFS filesystem
342. xine-lib-1.1.1 xine multimedia playback libs
343. xinetd-2.3.14 eXtended InterNET services Daemon
344. xmahjongg-3.7 a MahJongg game for X
345. xmms-1.2.10 MP3 player and MPlayer frontend
346. xorg-6.9.0 xorg X11 server
347. xpad-2.11 leave sticky notes
348. xsane-0.97 SANE front end for X
349. xvid-1.1.0 XviD (MPEG-4 compliant) video codec
350. zip-2.31 ZIP creation utilities
351. zlib-1.2.3 compression and decompression lib
352. zsh-4.2.5 the Z shell (enhanced korn shell)
<<lessBINKI is many things, first of all, it is the name of the horse of Death as it is told by my favourite author Terry Pratchet in his "Discworld" series. It is the name of a sheep that was eaten at a St. Georges Day in Bulgaria. And last it is my custom distro, based on inspirations from www.linuxfromscratch.com
Packages:
1. a2ps-4.13 convert any into PostScript format
2. a52dec-0.7.4 decode ATSC A/52 (AC-3) streams
3. aalib-1.4.0 render any graphic into ASCII Art
4. akregator-1.0.2 RSS reader
5. alsa-lib-1.0.11 ALSA sound interface library
6. alsa-oss-1.0.11 ALSA OSS compatibility lib
7. alsa-plugins-1.0.11 ALSA OSS and JACK plugins
8. alsa-utils-1.0.11 ALSA utilities
9. amarok-1.4.0 advanced audio player
10. apache-2.2.0 apache web server
11. arts-1.5.0 arts sound support for KDE libs
12. aspell-0.60.4 interactive spell checking program
13. atk-1.11.4 accessibility solutions for GTK2
14. audacity-1.3.0b audio editor and recorder
15. audiofile-0.2.6 oss version of SGIs audiofile library
16. autoconf-2.59 automatically configures source code
17. autofs-4.1.4 Automate Mounting of File Systems
18. automake-1.9.6 generates Makefiles for autoconf
19. avidemux-2.1.2 linear video editor
20. avifile-0.7.43 AVI tools and support libraries
21. bash-3.1 Bourne-Again SHell
22. bc-1.06 arbitrary precision numeric processor
23. berkeley-db-4.4.20 Berkeley database library ver.4
24. bind-9.3.1 DNS server and utilities
25. binkibase-0.3 BINKI 0.2 Base Config
26. binutils-2.16.1 GNU binary development tools
27. bison-2.1 parser generator
28. bluefish-1.0.5 powerful programmers editor for X
29. boehm-gc-6.7 garbage collector
30. bzip2-1.0.3 compress and decompress bz2 files
31. cairo-1.0.4 2D graphics library
32. calcchecksum-1.6 various checksum calulator
33. cdparanoia-3.9.8 CD audio extraction tool
34. cdrdao-1.2.1 record audio or data CDR in DAO mode
35. cdrtools-2.01 CD recording utilities
36. cfv-1.18.1 checksum verification files tool
37. chmlib-0.37.4 ITSS/CHM file format lib
38. consolecyr-0.1 console cyrillic support
39. coreutils-5.94 core GNU utilities
40. cpio-2.6 cpio and tar archiver
41. cream-0.35 vim graphical interface for X
42. cups-1.2.1 Common Unix Printing System
43. curl-7.15.3 transfer files with URL syntax
44. cvs-1.11.21 CVS version control system
45. cxx-4.0.3-runtime g++,fortran,objc,java runtime libs
46. cxx-libs-5.0.7 C++ shared library compatibility
47. d4x-2.5.6 Downloader for X
48. dejagnu-1.4.4 framework for testing other programs
49. desktop-file-utils-0.10 desktop entries command line tool
50. dhcp-3.0.4b3 DHCP client and server tools
51. dhcpcd-2.0.4 DHCP Client Daemon
52. dialog-1.0 curses based dialog interface
53. diffutils-2.8.7 find differences between files
54. distcc-2.18.3 distributed C/C++ compiler
55. dlume-0.2.4 address book
56. dosfstools-2.11 FAT-16 and FAT-32 file system tools
57. drgeo-1.1.0 interactive geometry for children
58. dvd+rw-tools-6.1 tools for burning DVD/-R/+R/+RW/-RW
59. dvd-slideshow-0.7.5 DVD slides creation tool
60. dvdauthor-0.6.11 DVD authoring tools
61. e2fsprogs-1.38 ext2 and ext3 file system tools
62. easytag-1.99.12 various media tags viewer/editor
63. enscript-1.6.4 converts ASCII to PS, HTML, RTF, ANSI
64. esound-0.2.36 Enlightened sound daemon
65. espgs-8.15.1 versatile processor for PostScript data
66. ethereal-0.10.14 network packet sniffer and analizer
67. ettercap-0.7.3 network packet sniffer and analizer
68. expat-2.0.0 C library for parsing XML streams
69. expect-5.43.0 dialog with interactive programs
70. faac-1.24.1 free AAC encoder
71. faad-2.0.1 free AAC decoder
72. fcron-3.0.0 periodical command scheduler
73. ffmpeg-0.4.9 audio and video conversion tools
74. fftw-3.1.1 fast fourier transform lib
75. file-4.17 tool for determining file type
76. findutils-4.2.27 tools to find files
77. firefox-1.5.0.3 firefox web browser
78. flac-1.1.2 free lossless audio codec
79. flex-2.5.33 programs to recognize text patterns
80. fontconfig-2.3.2 library for configuring font access
81. fortune-mod-1.99.1 fortune telling program
82. freeglut-2.4.0 free openGL toolkit
83. freetype-2.1.10 TrueType font lib
84. fyre-1.0.0 tool for computation artwork
85. gaim-1.5.0 Instant Messenger
86. galculator-1.2.5.2 scientific calculator
87. gawk-3.1.5 programs for manipulating text files
88. gbgoffice-1.3 office dictionary
89. gcc-4.0.3 gcc,g77,g++,gnat,gcj compilers
90. gcolor2-0.4 simple color selector
91. gd-2.0.33 graphic library for image creation
92. gdb-6.4 GNU Project Debugger
93. gdbm-1.8.3 GNU Database Manager
94. gettext-0.14.5 internationalization and localization
95. gftp-2.0.18 ftp client for X
96. giflib-4.1.4 libs for reading and writing GIFs
97. gimp-2.2.11 The GIMP image editor
98. gimp-help-2.0.9 The GIMP help
99. gimp-print-4.2.7 high quality printer drivers
100. glib-1.2.10 low-level core library
101. glib-2.10.3 low-level core library
102. glibc-2.3.6 main C library
103. glibmm-2.8.6 C++ interface for glib2
104. gmp-4.1.4 arbitrary precision math lib
105. gnupg-1.4.3 public/private key encryptor
106. gnutls-1.3.1 gnu Transport Layer Security lib
107. gpa-0.7.0 GnuPG Assistant Manager
108. gparted-0.2.5 GUI for parted
109. gpgme-1.0.3 GnuPG Make access Easy
110. gphoto2-2.1.99 GNU Digital Camera download software
111. gpm-1.20.1 General Purpose Mouse daemon
112. gqview-2.1.1 very fast image viewer
113. graveman-0.3.12-4 cdrtools/dvd+rw-tools GUI
114. grep-2.5.1a programs for searching through files
115. gresistor-0.0.1 translate resistor color codes
116. groff-1.18.1.1 processing and formatting text
117. grsync-0.4.2 GUI for rsync
118. grub-0.97 GRand Unified Bootloader
119. gtk+-1.2.10 GTK+ libs
120. gtk2-2.8.18 GTK2 libs
121. gtkam-0.1.13 digital camera front-end for X
122. gtkglext-1.2.0 GTK2 openGL extension
123. gtkglextmm-1.2.0 GTKmm openGL extension
124. gtkmm-2.8.5 C++ interface of GTK2 libs
125. guile-1.6.7 extensions language lib
126. gzip-1.3.5 compress and decompress gz files
127. hd2u-1.0.0 dos2unix plain text convertor
128. hicolor-theme-0.9 hicolor icon theme
129. htop-0.6.2 interactive process viewer
130. icu-3.4.1 Unicode support fot C/C++/Java
131. id3lib-3.8.3 manipule ID3v1 and ID3v2 tags
132. imagemagick-6.2.6-8 interactive image manipulation tool
133. imlib-1.9.15 image rendering lib
134. imlib2-1.2.1 faster image rendering lib
135. inetutils-1.4.2 basic networking programs
136. inkscape-0.43 SVG-based vector drawing program
137. intltool-0.34.1 internationalization tool
138. iproute2-2.6.16 basic and advanced IPV4-based networking
139. iptables-1.3.5 principal linux firewall
140. iptraf-3.0.0 IP Network monitor stat tool
141. jack-0.100.0 Jack Audio Connection Kit
142. k3b-0.12.15 The Ultimate CD/DVD Burner
143. k9copy-1.0.4 linux DVD shrinker
144. kaffeine-0.8.1 full featured media player
145. kanatest-0.3.6 learn japanese alphabet
146. kbabel-3.5.2 advanced PO-file editor
147. kbd-1.12 key-table files and keyboard tools
148. kcdlabel-2.13 tool for making CD covers
149. kchmviewer-2.5 CHM viewer
150. kdelibs-3.5.0 core KDE programs and libs
151. kdetv-0.8.9 watch TV on Linux
152. kernel-headers-2.6.12.0 sanitized kernel headers API
153. kino-0.8.1 non-linear video editor
154. kmagnify-3.5.2 magnifies screen portions
155. knowde-1.8.0 knowledge management tool
156. kompare-3.5.2 compares files
157. kpdf-3.5.0 PDF Viewer
158. kphotoalbum-2.2 photo album utility
159. krename-3.0.11 multirename tool
160. ksubeditor-0.2 subtitle file editor
161. kuser-3.5.2 user manager
162. lame-3.97 MP3 encoder
163. lcms-1.15 provide color management facilities
164. leafpad-0.8.9 simple notepad for X
165. less-394 text file viewer
166. lha-114i LHA archiver
167. libIDL-0.8.6 Interface Definition Language libs
168. libao-0.8.6 cross-platform audio library
169. libart_lgpl-2.3.17 high-performance 2D graphics lib
170. libavc1394-0.5.1 1934 AV/C program interface
171. libcdio-0.77 CD Input and Control library
172. libcroco-0.6.1 general CSS parsing and manipulation
173. libdv-0.104 software DV video codec
174. libdvdcss-1.2.9 access DVDs as a block device
175. libdvdread-0.9.4 simple DVD reading lib
176. libexif-0.6.13 parse, edit, and save EXIF data
177. libexif-gtk-0.3.5 libexif GTK bindings
178. libfame-0.9.1 realtime MPEG-1/4 video encoding lib
179. libfpx-1.2.0.13 Flash FPX image lib
180. libgcrypt-1.2.2 general-purpose cryptographic library
181. libglade-2.5.1 loads Glade interface files
182. libgpg-error-1.3 error handling for GnuPG, libgcrypt
183. libgphoto2-2.1.99 access digital camera by programs
184. libgsf-1.14.0 abstraction layer for structured files
185. libgtkhtml-2.6.3 lightweight HTML engine
186. libid3tag-0.15.1b ID3 tag library
187. libiec61883-1.0.0 high level DV streaming API
188. libieee1284-0.2.10 paralel port IEEE 1284 Driver
189. libjpeg-6b JPEG image compression lib
190. libmad-0.15.1b high-quality MPEG audio decoder
191. libmikmod-3.2.0 module formats and samples sound lib
192. libmng-1.0.9 MNG image (animated PNG) lib
193. libmpeg2-0.4.0b advanced manipulation of MPEG-2 streams
194. libmpeg3-1.6 advanced manipulation of MPEG streams
195. libnet-1.1.3 generic networking API
196. libogg-1.1.3 ogg file structure lib
197. libpcap-0.9.4 user-level network packet capture
198. libpng-1.2.8 PNG image manipulation lib
199. libquicktime-0.9.8 manipulate quicktime files
200. libraw1394-1.2.1 IEEE 1394 direct access
201. librsvg-2.14.3 SVG image manipulation lib
202. libsamplerate-0.1.2 Sample Rate Converter for audio
203. libsigc++-2.0.17 typesafe callback system for C++
204. libsndfile-1.0.15 Sampled Sound file library
205. libtheora-1.0 free video compression lib
206. libtiff-3.8.2 TIFF image manipulation lib
207. libtool-1.5.22 generic library support script
208. libusb-0.1.12 USB device access lib
209. libvorbis-1.1.2 general purpose audio format
210. libxml-1.8.17 XML parsing lib
211. libxml2-2.6.22 XML and HTML parser lib
212. libxslt-1.1.15 XSLT XML support lib
213. linux-2.6.16.2 Linux Kernel source
214. lmms-0.1.4 Linux MultiMedia Studio
215. lshw-0.2 hardware lister
216. lynx-2.8.5 text based web browser with color
217. lzo-2.02 realtime data (de)compression library
218. m4-1.4.4 macro processor
219. make-3.80 program for compiling packages
220. man-1.6c find and view man pages
221. man-pages-2.25 GNU Linux 1,200 man pages
222. mc-4.6.1 midnight commander
223. mixmos-0.2.0 enchanced audio mixer for X
224. mjpegtools-1.8.0 MPEG-2 tools
225. mktemp-1.5 create secure temporary files
226. modinit-tools-3.2.2 kernel module (un)loading tools
227. mpeg4ip-1.5 audio/video streaming tools
228. mpfr-2.2.0 multi-precision float-point lib
229. mplayer-1.0 Mplayer video audio player
230. mysql-5.0.20 fast SQL database server
231. nas-1.7 Network Audio Server
232. nasm-0.98.39 80x86 assembler and disassebler
233. ncftp-3.1.9 powerful and flexible ftp client
234. ncurses-5.5 terminal-independent screen library
235. net-tools-1.60 linux kernel networking tools
236. netpbm-10.26.27 graphic sofware lib
237. nmap-4.0.2 network exploration and security
238. nss-3.11 network security services libs
239. ntp-4.2.0 Network Time Protocol client/server
240. ocrad-0.14 optical character recognition tool
241. ogmtools-1.5 OGM video tools
242. openexr-1.2.2 HDR image format libs
243. openldap-2.3.30 Lightweight Directory Access Protocol
244. openssh-4.3p2 secure shell client and daemon
245. openssl-0.9.8a cryptography tools and libs
246. p7zip-4.42 7zip archiver
247. pango-1.12.1 layout and text rendering lib
248. parted-1.7.1 advanced partition editor
249. patch-2.5.9 apply and create patch files
250. pciutils-2.2.1 lists PCI devices
251. pcre-6.6 Perl Compatible Regular Expression
252. perl-5.8.8 Perl development environment
253. perl-archive-zip-1.16 perl module
254. perl-compress-zlib-1.41 perl module
255. perl-xml-parser-2.34 perl module
256. php-5.1.4 PHP Hypertext Preprocessor
257. pine-4.64 mail user agent
258. pkg-config-0.20 manage library compile/link flags
259. poppler-0.4.5 PDF rendering library
260. popt-1.7.5 parse command-line options
261. postfix-2.2.10 mail transport agent server
262. postgresql-8.1.4 advanced object-relational DBMS
263. ppp-2.4.3 dial-up PPP daemon
264. procps-3.2.6 programs for monitoring processes
265. proftpd-1.2.10 highly configurable secure FTP daemon
266. psmisc-22.2 display info about running processes
267. psutils-p17 PostScript Utilities
268. pygtk-2.8.6 Python bindings for the GTK widget
269. python-2.4.2 Python development environment
270. qcomicbook-0.2.7 comic books reading tool
271. qt-3.3.6 C++ GUI library (for KDE)
272. readline-5.1 command-line editing support
273. recode-3.6 converts files between character sets
274. reiserfsprogs-3.6.19 Reiserfs file system tools
275. rp-pppoe-3.8 PPPoE client and server
276. rsync-2.6.7 fast incremental file transfers daemon
277. ruby-1.8.4 Ruby development environment
278. samba-3.0.22 provides services to SMB/CIFS clients
279. sane-backends-1.0.17 Scanner Access Now Easy backends
280. screen-4.0.2 screen manager VT100/ANSI emulation
281. sdl-1.2.10 Simple DirectMedia Layer toolkit
282. sdl-guilib-1.1.2 SDL GUI library
283. sdl-image-1.2.5 SDL image loader
284. sdl-mixer-1.2.7 SDL mixer lib
285. sdl-mpeg-0.4.4 SDL video lib
286. sdl-net-1.2.6 SDL network lib
287. sdl-rtf-0.1.0 SDL rich text format lib
288. sdl-sound-1.0.1 SDL Sound lib
289. sdl-ttf-2.0.8 SDL TrueType font lib
290. sed-4.1.5 stream line editing tool
291. shadow-4.0.15 shadow password suite
292. shared-mime-info-0.17 shared MIME-info database
293. sharutils-4.6 create shell archives out of many files
294. slang-2.0.6 powerful interpreted language
295. smb4k-0.7.0 SAMBA network browser
296. sox-12.17.9 audio converting tool
297. speex-1.1.9 speech audio encoder/decoder
298. sqlite-3.3.5 lite SQL engine
299. squid-3.0 high performance web proxy cache
300. startup-notify-0.8 busy cursor for loading apps
301. strace-4.5.14 system call tracer
302. subversion-1.3.1 SVN version control system
303. sudo-1.6.8p12 gives temporary root access
304. supertux-0.1.3 Super Mario clone
305. sysklogd-1.4.1 programs for logging system messages
306. sysvinit-2.86 Linux System V Init tools
307. taglib-1.4 manipulate audio meta data
308. tar-1.15.1 GNU tar archiver
309. tcl-8.4.12 Tool Command Language
310. tcp_wrappers-7.6 daemon wrapper programs
311. tcpdump-3.9.4 network monitoring and data acquisition
312. tcsh-6.14.00 enhanced C shell
313. tellico-1.1.6 collection manager
314. texinfo-4.8 GNU software documentation system
315. thunderbird-1.5.0.2 Thunderbird mail client
316. tightvnc-1.3 optimized VNC distribution
317. tk-8.4.12 TCL GUI toolkit
318. traceroute-1.4 IP packet route tracing utility
319. transcode-1.0.2 transcoding video and audio
320. ttf-basic-0.3 basic TrueType fonts for X
321. tuxpaint-0.9.15b drawing program for children
322. udev-089 dynamic creation of device nodes tools
323. udftools-1.0.0b3 UDF file system tools
324. unzip-5.52 ZIP extraction utilities
325. usbutils-0.71 list USB devices
326. util-linux-2.12r huge collection of essential tools
327. vcdimager-0.7.23 VCD BIN/CUE image creation and ripping
328. vim-6.4 vim text editor
329. vnc2swf-0.5.0 screen recorging tool
330. vorbis-tools-1.1.1 Ogg Vorbis Tools
331. wget-1.10.2 non-interactive download manager
332. which-2.16 shows full path of (shell) commands
333. whois-4.7.12 whois directory client
334. wireless-tools-2.8 wireless tools
335. wxgtk-2.6.3 cross platform GTK lib
336. x264-20060508 free H.264/MPEG-4 AVC lib
337. xchat-2.6.2 IRC client for X
338. xfc-4.3.1 XFCE Foundation Classes
339. xfce-4.3-plugins XFCE Goodies
340. xfce-4.3 XFCE Desktop environment
341. xfsprogs-2.7.11 Utilities for SGIs XFS filesystem
342. xine-lib-1.1.1 xine multimedia playback libs
343. xinetd-2.3.14 eXtended InterNET services Daemon
344. xmahjongg-3.7 a MahJongg game for X
345. xmms-1.2.10 MP3 player and MPlayer frontend
346. xorg-6.9.0 xorg X11 server
347. xpad-2.11 leave sticky notes
348. xsane-0.97 SANE front end for X
349. xvid-1.1.0 XviD (MPEG-4 compliant) video codec
350. zip-2.31 ZIP creation utilities
351. zlib-1.2.3 compression and decompression lib
352. zsh-4.2.5 the Z shell (enhanced korn shell)
Download (14MB)
Added: 2006-06-05 License: GPL (GNU General Public License) Price:
1252 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 gnupg 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