tolerant
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 36
Jabberlang 0.2
Jabberlang is a client XMPP/Jabber library for Erlang to implement scalable fault-tolerant XMPP/Jabber agents. more>>
Jabberlang is a client XMPP and Jabber library for Erlang to implement scalable fault-tolerant XMPP/Jabber agents.
The first version has been presented during Erlang User Conference (EUC 2004). For now, it still only supports a minimal subset of the Jabber/XMPP protocol but many changes are planned.
Enhancements:
- This version fixes several problems and improves the behavior of Jabberlang.
- The connection now fails when the expat library fails to load.
- A bug has been fixed regarding the name of the host used in the library, so the "to" attribute in the stream is now set correctly.
<<lessThe first version has been presented during Erlang User Conference (EUC 2004). For now, it still only supports a minimal subset of the Jabber/XMPP protocol but many changes are planned.
Enhancements:
- This version fixes several problems and improves the behavior of Jabberlang.
- The connection now fails when the expat library fails to load.
- A bug has been fixed regarding the name of the host used in the library, so the "to" attribute in the stream is now set correctly.
Download (0.98MB)
Added: 2005-11-23 License: GPL (GNU General Public License) Price:
1430 downloads
strongSwan 4.1.5
strongSwan is an OpenSource IPsec implementation for the Linux operating system. more>>
strongSwan is an OpenSource IPsec implementation for the Linux operating system. strongSwan is an OpenSource IPsec implementation for the Linux operating system.
In order to have a stable IPsec platform to base our future extensions of the X.509 capability on, we decided to lauch the strongSwan project.
Main features:
- runs both on Linux 2.4 (KLIPS) and Linux 2.6 (native IPsec) kernels
- strong 3DES, AES, Serpent, Twofish, or Blowfish encryption
- Authentication based on X.509 certificates or preshared keys
- Powerful IPsec policies based on wildcards or intermediate CAs
- Retrieval and local caching of Certificate Revocation Lists via HTTP or LDAP
- Full support of the Online Certificate Status Protocol (OCSP, RCF 2560).
- Optional storage of RSA private keys on smartcards or USB crypto tokens
- Smartcard access via standardized PKCS #11 interface
- PKCS #11 proxy function offering RSA decryption services via whack
- NAT-Traversal (RFC 3947) and support of Virtual IPs and IKE Mode Config
- CA management (OCSP and CRL URIs, default LDAP server)
- Dead Peer Detection (DPD, RFC 3706)
- Group policies based on X.509 attribute certificates ( RFC 3281)
- Generation of default self-signed certificates during strongSwan setup
Enhancements:
- Source routes installed by the keying daemons are now in a separate routing table with ID 100 in order to avoid conflicts with the main table.
- Route lookup for IKEv2 traffic is done in userspace to ignore routes installed for IPsec, as IKE traffic shouldnt get encapsulated.
- The ipsec starter has become more tolerant to dynamic DNS lookup failures by keeping the last valid IP address.
<<lessIn order to have a stable IPsec platform to base our future extensions of the X.509 capability on, we decided to lauch the strongSwan project.
Main features:
- runs both on Linux 2.4 (KLIPS) and Linux 2.6 (native IPsec) kernels
- strong 3DES, AES, Serpent, Twofish, or Blowfish encryption
- Authentication based on X.509 certificates or preshared keys
- Powerful IPsec policies based on wildcards or intermediate CAs
- Retrieval and local caching of Certificate Revocation Lists via HTTP or LDAP
- Full support of the Online Certificate Status Protocol (OCSP, RCF 2560).
- Optional storage of RSA private keys on smartcards or USB crypto tokens
- Smartcard access via standardized PKCS #11 interface
- PKCS #11 proxy function offering RSA decryption services via whack
- NAT-Traversal (RFC 3947) and support of Virtual IPs and IKE Mode Config
- CA management (OCSP and CRL URIs, default LDAP server)
- Dead Peer Detection (DPD, RFC 3706)
- Group policies based on X.509 attribute certificates ( RFC 3281)
- Generation of default self-signed certificates during strongSwan setup
Enhancements:
- Source routes installed by the keying daemons are now in a separate routing table with ID 100 in order to avoid conflicts with the main table.
- Route lookup for IKEv2 traffic is done in userspace to ignore routes installed for IPsec, as IKE traffic shouldnt get encapsulated.
- The ipsec starter has become more tolerant to dynamic DNS lookup failures by keeping the last valid IP address.
Download (1.7MB)
Added: 2007-08-08 License: GPL (GNU General Public License) Price:
809 downloads
Eleven 1.0
Eleven is a programming language for building robust, scalable Web applications. more>>
Eleven is a programming language for creating robust, scalable web applications quickly and easily.
It offers a 20x programmer productivity increase over traditional server programming languages like ASP, PHP, and JSP by automating state management and taking control of the applications look and feel.
From high-level source code with a simple, C-like syntax, the compiler generates complete, ready-to-run implementations in PHP or mod_perl. Applications generated by Eleven maintain their state in a relational database and are inherently fault-tolerant, secure, and scalable.
Most interactive web applications today are primitive. Of course there are shining exceptions such as Amazon.com, TurboTax, and others. But by and large, most web applications are crudely designed and not especially reliable. Have you ever entered data into a web application, then lost it due to a browser crash? Have you ever gotten part way through an e-commerce transaction, then had the session go into never-never land while waiting for your credit card to be validated? Have you ever reloaded a web page and found that you just duplicated a transaction by accident? Web applications are server based, so in theory they ought to be as reliable as traditional mainframe applications. But they arent.
The problem is that there are two ways of creating web applications. Theres the expensive way, in which massive amounts of engineering are dedicated to making the sites reliable and scalable. These applications tend to keep most of their state in server-side databases, which run in controlled environments and are carefully managed. If your browser crashes during a session, you can usually log in from another computer and pick up where you left off.
Then theres the cheap way (often seen in corporate intranets and extranets). These tend to keep their state on the client (in hidden form fields or HTTP cookies), in the web servers memory, or in the web servers filesystem. These applications tend to be fragile. They dont handle system failures well, and get confused easily if the user presses the back button, restarts the web browser, etc.
The Eleven project solves this problem by making it quick and easy to create robust, scalable, database-backed web applications. Applications are expressed in a high-level language with a syntax similar to C and a conceptual structure similar to BASIC. Here is a simple example.
The code is self-explanatory:
statesafe var first, last;
display
{
print ("Please enter your name.");
edit ("First name: ", first);
edit ("Last name: ", last);
}
display
{
print ("Thank you, ", first, " ", last, ".");
}
Here is another example; the worlds smallest to-do list application. Where the code invokes the edit function on the table data type, the compiler automatically fills in a table editor:
statesafe table
{
var deadline "Task deadline";
var description "Task description";
} todolist;
display
{
edit ("Enter your tasks: ", todolist);
}
The point is that the Eleven compiler takes over the job of state management. The programmer doesnt need to worry about how the variables first and last are passed from one display to the next, how to represent the to-do list in the relational database, how to deal with the back button, how to enable a session to be seamlessly resumed if the computer crashes, and so on. All of those problems are taken care of automatically.
Whats more, those benefits are achieved without any special runtime support. The Eleven compiler translates source code into complete PHP or mod_perl programs that run under the Apache web server. The only runtime support needed is a standard installation of Apache with PHP or mod_perl, and a relational database such as MySQL for the back end. Furthermore, the generated code is fairly readable, and can be inspected before uploading to the web site. This is a great benefit for security-minded system administrators who are wary of installing yet another "framework" onto their production machines.
All applications generated by Eleven automatically save their state to the relational database after every user action. The web browser and web servers are stateless. Thus, the applications have three important characteristics:
1. They are bulletproof, meaning that the applications are resilient to failures of any runtime component. Sessions cannot be derailed by browser crashes, web server crashes, bookmarking or tampering with URLs, etc. as long as the integrity of the relational database is maintained.
2. They are secure, meaning that all application data is safely kept private. It is stored in the database, never in hidden form fields or HTTP cookies where it is vulnerable. Consider the example of a web application that is being used from a laptop. If the laptop is stolen, then any private data stored in HTTP cookies is compromised. This is an important factor in medical applications, for example.
3. They are scalable, meaning that system performance can be increased by replicating the application across a load-balancing server farm. HTTP requests can be directed to random web servers even within a single user session, and the applications will still work reliably. The only performance bottleneck is the database, and there are existing commercial solutions for scaling databases.
We introduce the term statesafe to describe web applications that achieve these three benefits using this architecture. All web applications generated by the Eleven compiler are statesafe.
<<lessIt offers a 20x programmer productivity increase over traditional server programming languages like ASP, PHP, and JSP by automating state management and taking control of the applications look and feel.
From high-level source code with a simple, C-like syntax, the compiler generates complete, ready-to-run implementations in PHP or mod_perl. Applications generated by Eleven maintain their state in a relational database and are inherently fault-tolerant, secure, and scalable.
Most interactive web applications today are primitive. Of course there are shining exceptions such as Amazon.com, TurboTax, and others. But by and large, most web applications are crudely designed and not especially reliable. Have you ever entered data into a web application, then lost it due to a browser crash? Have you ever gotten part way through an e-commerce transaction, then had the session go into never-never land while waiting for your credit card to be validated? Have you ever reloaded a web page and found that you just duplicated a transaction by accident? Web applications are server based, so in theory they ought to be as reliable as traditional mainframe applications. But they arent.
The problem is that there are two ways of creating web applications. Theres the expensive way, in which massive amounts of engineering are dedicated to making the sites reliable and scalable. These applications tend to keep most of their state in server-side databases, which run in controlled environments and are carefully managed. If your browser crashes during a session, you can usually log in from another computer and pick up where you left off.
Then theres the cheap way (often seen in corporate intranets and extranets). These tend to keep their state on the client (in hidden form fields or HTTP cookies), in the web servers memory, or in the web servers filesystem. These applications tend to be fragile. They dont handle system failures well, and get confused easily if the user presses the back button, restarts the web browser, etc.
The Eleven project solves this problem by making it quick and easy to create robust, scalable, database-backed web applications. Applications are expressed in a high-level language with a syntax similar to C and a conceptual structure similar to BASIC. Here is a simple example.
The code is self-explanatory:
statesafe var first, last;
display
{
print ("Please enter your name.");
edit ("First name: ", first);
edit ("Last name: ", last);
}
display
{
print ("Thank you, ", first, " ", last, ".");
}
Here is another example; the worlds smallest to-do list application. Where the code invokes the edit function on the table data type, the compiler automatically fills in a table editor:
statesafe table
{
var deadline "Task deadline";
var description "Task description";
} todolist;
display
{
edit ("Enter your tasks: ", todolist);
}
The point is that the Eleven compiler takes over the job of state management. The programmer doesnt need to worry about how the variables first and last are passed from one display to the next, how to represent the to-do list in the relational database, how to deal with the back button, how to enable a session to be seamlessly resumed if the computer crashes, and so on. All of those problems are taken care of automatically.
Whats more, those benefits are achieved without any special runtime support. The Eleven compiler translates source code into complete PHP or mod_perl programs that run under the Apache web server. The only runtime support needed is a standard installation of Apache with PHP or mod_perl, and a relational database such as MySQL for the back end. Furthermore, the generated code is fairly readable, and can be inspected before uploading to the web site. This is a great benefit for security-minded system administrators who are wary of installing yet another "framework" onto their production machines.
All applications generated by Eleven automatically save their state to the relational database after every user action. The web browser and web servers are stateless. Thus, the applications have three important characteristics:
1. They are bulletproof, meaning that the applications are resilient to failures of any runtime component. Sessions cannot be derailed by browser crashes, web server crashes, bookmarking or tampering with URLs, etc. as long as the integrity of the relational database is maintained.
2. They are secure, meaning that all application data is safely kept private. It is stored in the database, never in hidden form fields or HTTP cookies where it is vulnerable. Consider the example of a web application that is being used from a laptop. If the laptop is stolen, then any private data stored in HTTP cookies is compromised. This is an important factor in medical applications, for example.
3. They are scalable, meaning that system performance can be increased by replicating the application across a load-balancing server farm. HTTP requests can be directed to random web servers even within a single user session, and the applications will still work reliably. The only performance bottleneck is the database, and there are existing commercial solutions for scaling databases.
We introduce the term statesafe to describe web applications that achieve these three benefits using this architecture. All web applications generated by the Eleven compiler are statesafe.
Download (0.50MB)
Added: 2005-04-18 License: GPL (GNU General Public License) Price:
1745 downloads
VP Toolkit 0.3.50
VP Toolkit is an Internet client/server C++ library, with support for object threads. more>>
VP Toolkit is an Internet client/server C++ library, with support for object threads, stream based socket I/O, a multi-threaded server socket framework, a multi-process fault tolerant server framework, XML, HTTP, etc.
VP Toolkit software is now deprecated in favor of UDK.
To build the documentation you will need SDF, and HTMLDOC. SDF can be downloaded freely from the SDF home page at http://www.mincom.com/mtr/sdf/, and HTMLDOC can be had from
http://www.easysw.com/htmldoc/.
<<lessVP Toolkit software is now deprecated in favor of UDK.
To build the documentation you will need SDF, and HTMLDOC. SDF can be downloaded freely from the SDF home page at http://www.mincom.com/mtr/sdf/, and HTMLDOC can be had from
http://www.easysw.com/htmldoc/.
Download (0.17MB)
Added: 2006-08-29 License: GPL (GNU General Public License) Price:
1151 downloads
Featherweight Linux 1.3
Featherweight Linux is a Live-CD installable Linux distribution that is remastered from Feather Linux. more>>
Featherweight Linux is my Live-CD installable Linux distribution that I remastered from Feather Linux, which is built on knoppix technology. Youll find some great people over at Feather and you can find some good documentation there.
Their goal is to make a light and fast Linux with a very small footprint that can be installed on USB pen drives and such. My goal is a bit different. I want a full featured Linux that isnt bloated with a kazillion gigs of crap that Ill never use. I want a small footprint that is light and fast, even on older machines, but still carries a knockout punch.
So I took Feather and stripped out a bunch of apps that I never even thought of using. I wanted to make an easy to understand desktop that was compatible and easily configurable with the latest apps being developed, so I removed all of the window managers and installed a minimal KDE 3.3 desktop.
I included the most popular internet apps like the Mozilla Suite complete with plugins, Gaim, Gftp etc... I added full printer support and wifi support. In my test environment, it automatically detects and configures both my network printer (HP PSC 1210)and my linksys wireless card. Hopefully, itll do the same for you. It is debian based so I installed Synaptic for easy upgrading and totally FREE software management. Customizing your own system with the software that you want is only a few clicks away.
In its current state, the ISO is about 240mb and the HDD install is about 700mb, which is about 1/4 of all the other overweight distros out there. Once you install it, you can install OpenOffice and a bunch of other stuff if you need it, but I just wanted to make a good solid functional base so you can build your own system if you want.
Featherweight is intended for novice users with "some" linux experience, intermediate users, and experienced linux users alike. It has a pretty straight forward install but you should know linux and HDD partitioning basics before trying to install it.
Packages included are:
- aalib1 1.4p5-22 ascii art library
- abcde 2.2.3-1 A Better CD Encoder
- acpi 0.07-1 displays information on ACPI devices
- adduser 3.52 Add and remove users and groups
- alsa-base 1.0.8-6 ALSA driver configuration files
- alsa-headers 1.0.4-3 ALSA sound driver header files
- alsa-oss 1.0.8-1 ALSA wrapper for OSS applications
- alsa-utils 1.0.8-3 ALSA utilities
- amap 4.5-2 Network protocol probing tool
- antiword 0.35-1 Converts MS Word files to text and ps
- apmd 3.2.2-1 Utilities for Advanced Power Management (APM
- apt 0.5.24 Advanced front-end for dpkg
- apt-utils 0.5.28.4 APT utility programs
- ash-knoppix 0.2-4 A smaller version of the Bourne shell enhanc
- aterm 0.4.2-3 Afterstep XVT - a VT102 emulator for the X w
- autofs 3.9.99-4.0.0pr A kernel-based automounter for Linux
- automount-knop 0.5-4 Auto-generate autofs(5) lines on demand
- base-files 3.0.15 Debian base system miscellaneous files
- base-passwd 3.5.7 Debian base system master password and group
- bash 2.05b-14 The GNU Bourne Again SHell
- bc 1.06-17 The GNU bc arbitrary precision calculator la
- bcrypt 1.1-2 Cross platform file encryption utility
- binutils 2.15-5 The GNU assembler, linker and binary utiliti
- bridge-utils 0.9.6-5 Utilities for configuring the Linux 2.4 brid
- bsdutils 2.12-7 Basic utilities from 4.4BSD-Lite
- bvi 1.3.1-2 binary file editor
- bzip2 1.0.2-1 A high-quality block-sorting file compressor
- catdoc 0.93.4-1 MS-Word to TeX or plain text converter
- cd-discid 0.9-1 CDDB DiscID utility
- cdparanoia 3a9.8-11 An audio extraction tool for sampling CDs.
- cdrdao 1.1.9-3 Disk-At-Once (DAO) recording of audio and da
- cdrecord 2.0+a27-1 command line CD writing tool
- checkmem 0.5-2 Simple script to check if enough memory is a
- cloop-module 2.01-3 The compressed loopback block device kernel hi cloop-utils 2.01-3 Tools for handling with cloop compressed vol
- console-common 0.7.41 Basic infrastructure for text console config
- console-data 2002.12.04dbs- Keymaps, fonts, charset maps, fallback table
- console-tools 0.2.3dbs-52 Linux console and font utilities
- coreutils 5.0.91-2 The GNU core utilities
- cpio 2.5-1.1 GNU cpio -- a program to manage archives of
- cpp 3.3.3-3 The GNU C preprocessor (cpp)
- cpp-3.3 3.3.5-4 The GNU C preprocessor
- cron 3.0pl1-86 management of regular background processing
- csh 20020413-1 Shell with C-like syntax, standard login she
- cupsys 1.1.23-7 Common UNIX Printing System(tm) - server
- cupsys-client 1.1.23-7 Common UNIX Printing System(tm) - client pro
- curl 7.9.5-1 Get a file from an FTP, GOPHER, HTTP or HTTP
- dd-rescue 1.02-1 error-tolerant version of dd for rescuing da
- debconf 1.4.25 Debian configuration management system
- debconf-i18n 1.4.25 full internationalization support for debcon
- debconf-utils 1.4.41 debconf utilities
- debhelper 4.2.28 helper programs for debian/rules
- debianutils 2.13.0 Miscellaneous utilities specific to Debian
- deborphan 1.7.1 Find orphaned libraries
- defoma 0.11.8 Debian Font Manager -- automatic font config
- dhcp3-common 3.0+3.0.1rc13- Common files used by all the dhcp3* packages
- dialog 0.9b-20040421- Displays user-friendly dialog boxes from she
- dictionaries-c 0.24.5 Common utilities for spelling dictionary too
- diff 2.8.1-6 File comparison utilities
- dillo 0.8.3-1 GTK-based web browser
- dnsmasq 2.13-1 A small caching DNS proxy and DHCP server.
- docbook-xml 4.3-1.1 standard XML documentation system, for softw
- dosfstools 2.10-1 Utilities to create and check MS-DOS FAT fil
- dpkg 1.10.21 Package maintenance system for Debian
- dpkg-dev 1.10.25 Package building tools for Debian
- dselect 1.10.21 a user tool to manage Debian packages
- dsniff 2.4b1-8 Various tools to sniff network traffic for c
- e2fslibs 1.35-6 The EXT2 filesystem libraries
- e2fsprogs 1.35-6 The EXT2 file system utilities and libraries
- eject 2.0.13deb-3 ejects CDs and operates CD-Changers under Li
- enscript 1.6.4-7 Converts ASCII text to Postscript, HTML, RTF
- esound-common 0.2.29-1 Enlightened Sound Daemon - Common files
- etcskel-knoppi 0.6-28 Skeleton files for all user
- ethereal 0.10.8-1 Network traffic analyzer
- ethereal-commo 0.10.8-1 Network traffic analyser (common files)
- ethtool 1.8-2 Display or change ethernet card settings
- ettercap 0.7.0-1 Multipurpose sniffer/interceptor/logger for
- ettercap-commo 0.7.0-1 Common support files and plugins for etterca
- expect 5.42.1-1.2 A program that "talks" to other programs
- fbset 2.1-14 framebuffer device maintenance program
- fdflush 1.0.1-11 Flush out-of-date disk buffers
- fdisk-udeb 2.11u-3 Partition a hard drive (manual, cfdisk)
- fdutils 5.4-20030718-3 Linux floppy utilities
- feather-captiv 1-2 Converted Slackware tgz package
- feather-lprng 3.8.22 Feather Linux-specific lprng package.
- feather-x 0.5 Standard Feather Linux Kdrive X servers pack
- fetchmail 6.2.5-7 SSL enabled POP3, APOP, IMAP mail gatherer/f
- file 4.07-2 Determines file type using "magic" numbers
- findutils 4.1.20-3 utilities for finding files--find, xargs, an
- flashplayer-mo 7.0.25-woody0. Macromedia Flash Player
- flashplugin-no 7.0.25-5 Macromedia Flash Player plugin installer
- fontconfig 2.2.2-2 generic font configuration library
- foomatic-db 20050218-1 linuxprinting.org printer support - database
- foomatic-db-en 3.0.2-20050218 linuxprinting.org printer support - programs
- foomatic-db-hp 1.5-20050118-1 linuxprinting.org printer support - database
- foomatic-filte 3.0.2-20050114 linuxprinting.org printer support - filters
- freenx 0.2.7-1 FreeNX application/thin-client server based
- gaim 1.1.0-1 multi-protocol instant messaging client
- gcc-3.3-base 3.3.5-4 The GNU Compiler Collection (base package)
- gcombust 0.1.55-1.1 GTK+ based CD mastering and burning program
- gdk-imlib1 1.9.14-2 Gdk-Imlib is an imaging library for use with
- genliloconf 0.1-3 simple utility for auto-generating of lilo.c
- gettext 0.14.1-6 GNU Internationalization utilities
- gettext-base 0.14.1-6 GNU Internationalization utilities for the b
- gftp 2.0.18-3 X/GTK+ FTP client
- gftp-common 2.0.18-3 shared files for other gFTP packages
- gftp-gtk 2.0.18-3 X/GTK+ FTP client
- gftp-text 2.0.18-3 colored FTP client using GLib
- giftcurs 0.6.2-2 text-based interface to the giFT file-sharin
- gkrellm 2.2.4-1 Multiple stacked system monitors: 1 process
- gkrellm-common 2.2.4-1 Multiple stacked system monitors: 1 process
- gksu 1.2.4-1 graphical frontend to su
- gnupod-tools 0.94rc1-1 A collection of Perl-scripts for iPod
- gpart 0.1h-4 Guess PC disk partition table, find lost par
- grep 2.5.1.ds1-2 GNU grep, egrep and fgrep
- grep-dctrl 2.1.3 Grep Debian package information
- grub 0.95+cvs200406 GRand Unified Bootloader
- grun 0.9.2-9 GTK based Run dialog
- gs-common 0.3.6-0.1 Common files for different Ghostscript relea
- gs-gpl 8.01-5 The GPL Ghostscript PostScript interpreter
- gscanbus 0.7.1-4 scan IEEE1394 (firewire/i.link) bus
- gsfonts 8.14+v8.11-0.1 Fonts for the Ghostscript interpreter(s)
- gtkrecover 0.3-9 GUI for recover
- gzip 1.3.5-7 The GNU compression utility
- hdparm 5.5-2 Tune hard disk parameters for high performan
- hfsplus 1.0.4-6 tools to access HFS+ formatted volumes
- hicolor-icon-t 0.7-1 default fallback theme for FreeDesktop.org i
- hostap-utils 0.1.3-1 Utility programs for Host AP driver for Inte
- hostname 2.13 A utility to set/show the host name or domai
- hotplug 0.0.20040329-8 Linux Hotplug Scripts
- hotplug-knoppi 0.5-7 hotplug handler for KNOPPIX
- hotplug-utils 0.0.20020401-4 Linux Hotplug utility programs
- hpijs 2.0.1+0.8.7-4 HP Linux Printing and Imaging - gs IJS drive
- hping2 2.rc2-5 Active Network Smashing Tool
- html2text 1.3.2a-1 An advanced HTML to text converter
- hwdata-knoppix 0.107-8 hardware identification / configuration data
- hwsetup 1.0-14 Automatic hardware setup using the kudzu lib
- iftop 0.16-1 Display bandwidth usage on an interface
- ifupdown 0.6.4-4.8 High level tools to configure network interf
- imlib-base 1.9.14-16 Common files needed by the Imlib/Gdk-Imlib p
- intltool-debia 0.30+20040213 Help i18n of RFC822 compliant config files
- iproute 20010824-13 Professional tools to control the networking
- iptables 1.2.11-10 Linux kernel 2.4+ iptables administration to
- ipw2100-nonfre 0.1-1 IPW2100 wireless device firmware files from
- isapnptools 1.26-2 ISA Plug-And-Play configuration utilities.
- john 1.6-33 An active password cracking tool
- k3b 0.11.20-2 A sophisticated KDE cd burning application
- k3blibs 0.11.20-2 The KDE cd burning application library - run
- kappfinder 3.3.2-1 KDE Application Finder
- kate 3.3.2-1 KDE Advanced Text Editor
- kbdconfig 0.5-3 Lightweight keyboard configuration tool for
- kcontrol 3.3.2-1 KDE Control Center
- kdebase 3.3.2-1 KDE Base metapackage
- kdebase-bin 3.3.2-1 KDE Base (binaries)
- kdebase-data 3.3.2-1 KDE Base (shared data)
- kdebase-kio-pl 3.3.2-1 KDE I/O Slaves
- kdelibs-bin 3.3.2-3 KDE core binaries
- kdelibs-data 3.3.2-3 KDE core shared data
- kdelibs4 3.3.2-3 KDE core libraries
- kdenetwork-fil 3.3.2-1 KDE Network Filesharing Configuration
- kdepasswd 3.3.2-1 KDE password changer
- kdeprint 3.3.2-1 KDE Print
- kdesktop 3.3.2-1 KDE Desktop
- kdm 3.3.2-1 KDE Display Manager
- kernel-image-2 10.00.Custom Linux kernel binary image for version 2.4.27
- kfind 3.3.2-1 KDE File Find Utility
- khelpcenter 3.3.2-1 KDE Help Center
- kicker 3.3.2-1 KDE Desktop Panel
- kismet 2004.04.R1-5 Wireless 802.11b monitoring tool
- klipper 3.3.2-1 KDE Clipboard
- klogd 1.4.1-14 Kernel Logging Daemon
- kmenuedit 3.3.2-1 KDE Menu Editor
- knoppix-remoun 0.5-3 Minimalistic script for r/w remount of parti
- konqueror 3.3.2-1 KDEs advanced File Manager, Web Browser and
- konqueror-nspl 3.3.2-1 Netscape plugin support for Konqueror
- konsole 3.3.2-1 KDE X terminal emulator
- kpager 3.3.2-1 KDE Desktop Pager
- kpersonalizer 3.3.2-1 KDE Personalizer
- ksmserver 3.3.2-1 KDE Session Manager
- ksplash 3.3.2-1 KDE Splash Screen
- ksysguard 3.3.2-1 KDE System Guard
- ksysguardd 3.3.2-1 KDE System Guard Daemon
- ktip 3.3.2-1 Kandalfs Useful Tips
- kwifimanager 3.3.2-1 KDE Wireless Lan Manager
- kwin 3.3.2-1 KDE Window Manager
- less 381-3 Pager program similar to more
- liba52-0.7.4 0.7.4-1 Library for decoding ATSC A/52 streams.
- libacl1 2.2.23-1 Access control list shared library
- libadns1 1.0-8.2 Asynchronous-capable DNS client library and
- libao2 0.8.5-1 Cross Platform Audio Output Library
- libapm1 3.2.2-1 Library for interacting with APM driver in k
- libart-2.0-2 2.3.17-1 Library of functions for 2D graphics - runti
- libarts1 1.3.2-2 aRts Sound system
- libartsc0 1.3.2-1 aRts Sound system C support library
- libasound2 1.0.8-2 ALSA library
- libaspell15 0.60.2+2005012 The GNU Aspell spell-checker runtime toolkit
- libatk1.0-0 1.8.0-4 The ATK accessibility toolkit
- libatm1 2.4.1-15 shared library for ATM (Asynchronous Transfe
- libattr1 2.4.16-1 Extended attribute shared library
- libaudio2 1.6c-3 The Network Audio System (NAS). (shared libr
- libaudiofile0 0.2.6-3 Open-source version of SGIs audiofile libra
- libavcodeccvs 20050222-0.0 library to encode decode multimedia streams
- libblkid1 1.35-6 Block device id library
- libbz2-1.0 1.0.2-1 A high-quality block-sorting file compressor
- libc6 2.3.2.ds1-20 GNU C Library: Shared libraries and Timezone
- libcap1 1.10-14 support for getting/setting POSIX.1e capabil
- libcdparanoia0 3a9.8-11 Shared libraries for cdparanoia (runtime lib
- libcomerr2 1.35-6 The Common Error Description library
- libcompfaceg1 1989.11.11-24 Compress/decompress images for mailheaders,
- libconsole 0.2.3dbs-52 Shared libraries for Linux console and font
- libcupsimage2 1.1.23-7 Common UNIX Printing System(tm) - image libs
- libcupsys2-gnu 1.1.23-7 Common UNIX Printing System(tm) - libs
- libcurl2 7.11.2-1 Multi-protocol file transfer library, now wi
- libdb1-compat 2.1.3-7 The Berkeley database routines [glibc 2.0/2.
- libdb2 2.7.7.0-8.1 The Berkeley database routines (run-time fil
- libdb3 3.2.9-19.1 Berkeley v3 Database Libraries [runtime]
- libdb4.2 4.2.52-16 Berkeley v4.2 Database Libraries [runtime]
- libdevmapper1. 1.00.17-1 The Linux Kernel Device Mapper userspace lib
- libdevmapper1. 1.01.00-1 The Linux Kernel Device Mapper userspace lib
- libdirectfb-0. 0.9.20-4 frame buffer graphics library
- libdivxdecore0 5.0.1-1 DivX MPEG-4 Codec - decoder library
- libdockapp1 0.4.0-8 Window Maker Dock App support (shared librar
- libdps1 4.3.0.dfsg.1-1 Display PostScript (DPS) client library
- libdv2 0.99-1 A software library for DV format digital vid
- libdv4 0.103-2 software library for DV format digital video
- libdvdcss2 1.2.8-0.0 Simple foundation for reading DVDs - runtime
- libdvdread3 0.9.4-4 Simple foundation for reading DVDs
- libenchant1 1.1.4+cvs.2004 a wrapper library for various spell checker
- libesd0 0.2.29-1 Enlightened Sound Daemon - Shared libraries
- libexif10 0.6.9-4 The EXIF library allows you to parse an EXIF
- libexpat1 1.95.8-1 XML parsing C library - runtime library
- libfaac0 1.24-0.3 an AAC audio encoder - library files
- libfaad2-0 2.0.0-0.2 Freeware Advanced Audio Decoder - runtime fi
- libfam0c102 2.7.0-5 client library to control the FAM daemon
- libflac++4 1.1.1-5 Free Lossless Audio Codec - C++ runtime libr
- libflac4 1.1.0-11 Free Lossless Audio Codec - runtime C librar
- libflac6 1.1.1-5 Free Lossless Audio Codec - runtime C librar
- libfontconfig1 2.2.2-2 generic font configuration library (shared l
- libfreetype6 2.1.7-2 FreeType 2 font engine, shared library files
- libfribidi0 0.10.4-6 Free Implementation of the Unicode BiDi algo
- libgcc1 3.4.3-5 GCC support library
- libgcrypt1 1.1.12-4 LGPL Crypto library - runtime library
- libgcrypt11 1.2.0-11 LGPL Crypto library - runtime library
- libgdbm3 1.8.3-2 GNU dbm database routines (runtime version)
- libgdk-pixbuf2 0.22.0-7 The GdkPixBuf image library, gtk+ 1.2 versio
- libggi2 2.0.5-1 General Graphics Interface runtime libraries
- libgii0-target 0.8.5-2 General Input Interface X input target
- libgimpprint1 4.2.7-5 The Gimp-Print printer driver library
- libgksu1.2-0 1.2.5a-1 library providing su and sudo functionality
- libgksuui1.0-0 1.0.3-2 a graphical fronted to su library
- libglade2-0 2.4.2-2 library to load .glade files at runtime
- libglib-perl 1.062-1 Perl interface to the GLib and GObject libra
- libglib1.2 1.2.10-9 The GLib library of C routines
- libglib2.0-0 2.6.2-1 The GLib library of C routines
- libgmp3 4.1.4-5 Multiprecision arithmetic library
- libgnutls11 1.0.16-13 GNU TLS library - runtime library
- libgnutls7 0.8.12-5 GNU TLS library - runtime library
- libgpg-error0 1.0-1 library for common error values and messages
- libgpmg1 1.19.6-19 General Purpose Mouse - shared library
- libgtk1.2 1.2.10-16 The GIMP Toolkit set of widgets for X
- libgtk1.2-comm 1.2.10-16 Common files for the GTK+ library
- libgtk2-perl 1.062-1 Perl interface to the 2.x series of the Gimp
- libgtk2.0-0 2.6.2-4 The GTK+ graphical user interface library
- libgtk2.0-bin 2.6.2-4 The programs for the GTK+ graphical user int
- libgtk2.0-comm 2.6.2-4 Common files for the GTK+ graphical user int
- libgtkspell0 2.0.8-1 a spell-checking addon for GTKs TextView wi
- libgucharmap4 1.4.0-1 Unicode browser widget library (shared libra
- libhfsp0 1.0.4-6 shared library to access HFS+ formatted volu
- libhtml-parser 3.45-1 A collection of modules that parse HTML text
- libhtml-tagset 3.04-1 Data tables pertaining to HTML
- libhtml-tree-p 3.18-1 represent and create HTML syntax trees
- libice6 4.3.0.dfsg.1-1 Inter-Client Exchange library
- libid3-3.8.3 3.8.3-4.1 Library for manipulating ID3v1 and ID3v2 tag
- libid3tag0 0.15.0b-3.1 ID3 tag reading library from the MAD project
- libidl0 0.8.3-1 library for parsing CORBA IDL files
- libidn11 0.5.13-0.1 GNU libidn library, implementation of IETF I
- libimlib2 1.1.2-1 powerful image loading and rendering library
- libiw27 27-2 Wireless tools - library
- libjack0.80.0- 0.99.0-6 JACK Audio Connection Kit (libraries)
- libjasper-1.70 1.701.0-2 The JasPer JPEG-2000 runtime library
- libjpeg62 6b-9 The Independent JPEG Groups JPEG runtime li
- libkonq4 3.3.2-1 Core libraries for KDEs file manager
- libkrb53 1.3.5-1 MIT Kerberos runtime libraries
- liblame0 3.96.1-1 LAME Aint an MP3 Encoder
- liblcms1 1.13-1 Color management library
- libldap2 2.1.30-3 OpenLDAP libraries
- liblircclient0 0.6.6-12 LIRC client library
- liblocale-gett 1.01-17 Using libc functions for internationalizatio
- libltdl3 1.5.6-2 A system independent dlopen wrapper for GNU
- liblua50 5.0.2-5 Main interpreter library for the Lua 5.0 pro
- liblualib50 5.0.2-5 Extension library for the Lua 5.0 programmin
- liblzo1 1.08-1 A real-time data compression library
- libmad0 0.15.1b-1 MPEG audio decoder library
- libmagic1 4.07-2 File type determination library using "magic
- libmagick6 6.0.6.2-1.6 Image manipulation library
- libmng1 1.0.8-1 Multiple-image Network Graphics library
- libmp3-info-pe 1.02-1 Perl MP3::Info - Manipulate / fetch info fro
- libmp4-0 2.0.0-0.2 freeware Advanced Audio Decoder - runtime fi
- libmyspell3 3.1-10 MySpell spellchecking library
- libncurses5 5.4-3 Shared libraries for terminal handling
- libncursesw5 5.4-3 Shared libraries for terminal handling (wide
- libnet0 1.0.2a-7 library for the construction and handling of
- libnet1 1.1.2.1-1 Library for the construction and handling of
- libnetpbm10 10.0-8 Shared libraries for netpbm
- libnewt-utf8-0 0.50.17-13 newt - text mode windowing with slang, with
- libnewt0.51 0.51.6-3 Not Eriks Windowing Toolkit - text mode win
- libnids1 1.19-1 IP defragmentation TCP segment reassembly li
- libnspr4 1.7.5-1 Netscape Portable Runtime Library
- libnss3 1.7.5-1 Network Security Service Libraries - runtime
- libntfs5 1.9.0-1 Library that provides common NTFS access fun
- libnxcomp0 1.4.0-m1-1 NoMachine NX - NX compression library
- libnxcompext0 1.4.0-m1-1 NoMachine NX - NX compression library
- libogg0 1.1.0-1 Ogg Bitstream Library
- liboggflac1 1.1.0-11 Free Lossless Audio Codec - runtime C librar
- libopencdk8 0.5.5-10 Open Crypto Development Kit (OpenCDK) (runti
- libopenexr2 1.2.1-3 runtime files for the OpenEXR image library
- libpam-modules 0.76-21 Pluggable Authentication Modules for PAM
- libpam-runtime 0.76-21 Runtime support for the PAM library
- libpam0g 0.76-21 Pluggable Authentication Modules library
- libpango1.0-0 1.8.0-3 Layout and rendering of internationalized te
- libpango1.0-co 1.8.0-3 Modules and configuration files for the Pang
- libpaper1 1.1.14-3 Library for handling paper characteristics
- libparted1.6-0 1.6.9-2 The GNU Parted disk partitioning shared libr
- pi libpcap0.7 0.7.2-5 System interface for user-level packet captu
- libpcap0.8 0.8.3-4 System interface for user-level packet captu
- libpcre3 4.5-1.1 Perl 5 Compatible Regular Expression Library
- libperl5.8 5.8.4-5 Shared Perl library
- libpisock8 0.11.8-10 Library for communicating with a PalmOS PDA
- libpng10-0 1.0.18-1 PNG library, older version - runtime
- libpng12-0 1.2.8rel-1 PNG library - runtime
- libpng2 1.0.15-5 PNG library, older version - runtime
- libpopt0 1.7-4 lib for parsing cmdline parameters
- libpostproc0 1.0-pre1.1 Mplayer postproc shared libraries
- libqt3c102-mt 3.3.3-8 Qt GUI Library (Threaded runtime version), V
- libraw1394-5 0.10.1-1 library for direct access to IEEE 1394 bus (
- libreadline4 4.3-10 GNU readline and history libraries, run-time
- libreiserfs0.3 0.3.0.4-3 ReiserFS filesystem access and manipulation
- libruby 1.8.2-1 Libraries necessary to run Ruby 1.8.x
- libruby1.8 1.8.2-2 Libraries necessary to run the Ruby 1.8
- libsasl2 2.1.18-4 Authentication abstraction library
- libscrollkeepe 0.3.14-9.1 Library to load .omf files (runtime files)
- libsdl1.2debia 1.2.7+1.2.8cvs Simple DirectMedia Layer
- libsdl1.2debia 1.2.7+1.2.8cvs Simple DirectMedia Layer (with X11 and OSS o
- libsensors3 2.9.0-8 library to read temperature/voltage/fan sens
- libslp1 1.0.11a-1 OpenSLP libraries
- libsm6 4.3.0.dfsg.1-1 X Window System Session Management library
- libsmbclient 3.0.9-1 shared library that allows applications to t
- libsnmp-base 5.1.2-6 NET SNMP (Simple Network Management Protocol
- libsnmp5 5.1.2-6 NET SNMP (Simple Network Management Protocol
- libspeex1 1.0.rel.3-1 The Speex Speech Codec
- libss2 1.35-6 Command-line interface parsing library
- libssl0.9.7 0.9.7d-1 SSL shared libraries
- libstartup-not 0.7-1 library for program launch feedback (shared
- libstdc++2.10- 2.95.4-22 The GNU stdc++ library
- libstdc++5 3.3.5-4 The GNU Standard C++ Library v3
- libsvga1 1.4.3-18 console SVGA display libraries
- libtasn1-0 0.1.2-1 Manage ASN.1 structures (runtime)
- libtasn1-2 0.2.10-4 Manage ASN.1 structures (runtime)
- libtext-charwi 0.04-1 get display widths of characters on the term
- libtext-iconv- 1.2-3 Convert between character sets in Perl
- libtext-wrapi1 0.06-1 internationalized substitute of Text::Wrap
- libtheora0 0.0.0.alpha3-1 The Theora Video Compression Codec
- libtiff3g 3.6.1-1 Tag Image File Format library
- libtiff4 3.6.1-3 Tag Image File Format library
- libungif4g 4.1.3-1 shared library for GIF images (runtime lib)
- libunicode-str 2.07-1 Perl modules for Unicode strings
- liburi-perl 1.30-1 Manipulates and accesses URI strings
- libusb-0.1-4 0.1.8-11 Userspace USB programming library
- libuuid1 1.35-6 Universally unique id library
- libvorbis0a 1.0.1-1 The Vorbis General Audio Compression Codec
- libvorbisenc2 1.0.1-1 The Vorbis General Audio Compression Codec
- libvorbisfile3 1.0.1-1 The Vorbis General Audio Compression Codec
- libvte-common 0.11.11-5 Terminal emulator widget for GTK+ 2.0 - comm
- libvte4 0.11.11-5 Terminal emulator widget for GTK+ 2.0 - runt
- libwmf0.2-7 0.2.8-1.1 Windows metafile conversion library
- libwrap0 7.6.dbs-3 Wietse Venemas TCP wrappers library
- libwvstreams3- 3.75.0-1 C++ network libraries for rapid application
- libwww-perl 5.803-4 WWW client/server library for Perl (aka LWP)
- libx11-6 4.3.0.dfsg.1-1 X Window System protocol client library
- libxaw7 4.3.0.dfsg.1-1 X Athena widget set library
- libxcursor1 1.1.3-1 X cursor management library
- libxext6 4.3.0.dfsg.1-1 X Window System miscellaneous extension libr
- libxft1 4.3.0.dfsg.1-1 FreeType-based font drawing library for X (v
- libxft2 2.1.1-2 advanced font drawing library for X
- libxi6 4.3.0.dfsg.1-1 X Window System Input extension library
- libxml-dom-per 1.43-4 Perl module for building DOM Level 1 complia
- libxml-libxml- 0.13-5 Perl module for common routines & constants
- libxml-libxml- 1.58-0.3 Perl module for using the GNOME libxml2 libr
- libxml-namespa 1.08-3 Perl module for supporting simple generic na
- libxml-parser- 2.34-4 Perl module for parsing XML files
- libxml-perl 0.08-1 Perl modules for working with XML
- libxml-regexp- 0.03-7 Perl module for regular expressions for XML
- libxml-sax-per 0.12-5 Perl module for using and building Perl SAX2
- libxml-simple- 2.14-1 Perl module for reading and writing XML
- libxml2 2.6.16-3 GNOME XML library
- libxmu6 4.3.0.dfsg.1-1 X Window System miscellaneous utility librar
- libxmuu1 4.3.0.dfsg.1-1 lightweight X Window System miscellaneous ut
- libxp6 4.3.0.dfsg.1-1 X Window System printing extension library
- libxpm4 4.3.0.dfsg.1-1 X pixmap library
- libxrandr2 4.3.0.dfsg.1-1 X Window System Resize, Rotate and Reflectio
- libxrender1 0.8.3-7 X Rendering Extension client library
- libxslt1.1 1.1.12-5 XSLT processing library - runtime library
- libxt6 4.3.0.dfsg.1-1 X Toolkit Intrinsics
- libxtrap6 4.3.0.dfsg.1-1 X Window System protocol-trapping extension
- libxtst6 4.3.0.dfsg.1-1 X Window System event recording and testing
- libxv1 4.3.0.dfsg.1-1 X Window System video extension library
- libxvidcore4 1.0.2-0.0 High quality ISO MPEG4 codec library
- libzvbi-common 0.2.9-2 Video Blank Interval decoder - common files
- libzvbi0 0.2.9-2 Video Blank Interval decoder - runtime files
- lilo 22.6.1-5 LInux LOader - The Classic OS loader can loa
- linux-kernel-h 0.5-1 Symlinks to unpackaged Kernel header files f
- linux-wlan-ng 0.2.0+0.2.1pre utilities for wireless prism2 cards
- linux-wlan-ng- +0.2.1pre21-1 drivers for wireless prism2 cards
- login 4.0.3-28 System login tools
- logrotate 3.7-2 Log rotation utility
- loop-aes 2.0g-1 AES (Advanced Encryption Standard) Kernel mo
- lsof 4.74-1 List open files.
- lua50 5.0.2-1 Small embeddable language with simple proced
- luasocket 2.0-alpha-2 TCP/UDP socket library for Lua 5.0
- macchanger 1.5.0-1 utility for manipulating the MAC address of
- madwifi 20030910-1 Setup to use atheros wireless cards
- make 3.80-9 The GNU version of the "make" utility.
- makedev 2.3.1-69 Creates device files in /dev
- mawk 1.3.3-11 a pattern scanning and text processing langu
- menu-xdg 0.2 freedesktop.org menu compliant window manage
- mkbootfloppy-k 0.5-1 Shell(X)dialog GUI for creating a set of KNO
- mkdesktophdico 0.5-2 Automatic KDE/GNOME Desktop harddisk icon cr
- mkdosswapfile- 0.5-11 Shell GUI for generation of Swapfiles on DOS
- mkisofs 2.0+a27-1 Creates ISO-9660 CD-ROM filesystem images
- modconf 0.2.45.1 Device Driver Configuration
- modemlink-knop 0.5-5 Lightweight setup for /dev/modem
- modutils 2.4.26-1.2 Linux module utilities
- mount-aes 2.11x-1 Tools for mounting and manipulating filesyst
- mountapp 3.0-5 Tool to (un)mount devices, dockable in WM-li
- mouseconfig 0.5-2 Lightweight mouse configuration tool for Kno
- mozilla 1.7.5-1 The Mozilla Internet application suite - met
- mozilla-browse 1.7.5-1 The Mozilla Internet application suite - cor
- mozilla-mailne 1.7.5-1 The Mozilla Internet application suite - mai
- mozilla-mplaye 2.70-1 MPlayer-Plugin for Mozilla, Konqueror and Op
- mozilla-psm 1.7.5-1 The Mozilla Internet application suite - Per
- mpg321 0.2.10.3 A Free command-line mp3 player, compatible w
- mplayer-586 1.0-pre6-0.2 The Ultimate Movie Player For Linux
- mtools 3.9.9-2 Tools for manipulating MSDOS files
- mtr-tiny 0.54-1 Full screen ncurses traceroute tool
- myspell-en-us 20030813-3 English (US) dictionary for myspell
- nano-tiny 1.2.3-1 free Pico clone with some new features - tin
- nas 1.7-1 The Network Audio System (NAS). (local serve
- nas-bin 1.7-1 The Network Audio System (NAS). (client bina
- ncurses-base 5.4-3 Descriptions of common terminal types
- ncurses-bin 5.4-3 Terminal-related programs and man pages
- ndiswrapper-mo 1.1rc1@050206- Linux kernel module for NdisWrapper for 2.4.
- ndiswrapper-ut 1.1rc1@050206- User space tools for ndiswrapper
- net-tools 1.60-10 The NET-3 networking toolkit
- netbase 4.16 Basic TCP/IP networking system
- netcardconfig- 0.5-20 Minimalistic ncurses/dialog-based network co
- netcat 1.10-27 TCP/IP swiss army knife
- netkit-inetd 0.10-9 The Internet Superserver
- netkit-ping 0.10-9 The ping utility from netkit
- netpbm 10.0-8 Graphics conversion tools
- networkconfig- 0.5-2 KDE/GNOME Menus for network configuration in
- nfs-common 1.0.6-3 NFS support files common to client and serve
- ngrep 1.40.1-3 grep for network traffic
- nmap 3.75-1 The Network Mapper
- nmapfe 3.50-1 The Network Mapper Front End
- ntfstools 1.9.0-1 Tools for doing neat things in NTFS partitio
- nxagent 1.4.0-m1-1 NoMachine NX - nesting X server with roundtr
- nxclient 1.4.0-91.1 NoMachine NX - NX Client.
- nxlibs 1.4.0-m1-1 NoMachine NX - common agent libraries
- nxproxy 1.4.0-m1-1 NoMachine NX - X protocol compression proxy
- openssl 0.9.7e-3 Secure Socket Layer (SSL) binary and related
- openvpn 1.6.0-5 Virtual Private Network daemon
- orinoco 0.13e-1 Orinoco and Prism 2 wireless card driver wit
- paketto 1.10-4 Unusual TCP/IP testing tools
- parted-bf 1.6.9-2 The GNU Parted disk partition resizing progr
- partimage 0.6.4-5 Linux/UNIX utility to save partitions in a c
- passwd 4.0.3-28 Change and administer password and group dat
- patch 2.5.9-2 Apply a diff file to an original
- pciutils 2.1.11-11 Linux PCI Utilities (for 2.*.* kernels)
- pcmcia-cs 3.2.5-3 PCMCIA Card Services for Linux
- pencam 0.67-1 Download images from STV0680B-001 chip based
- perl 5.8.4-5 Larry Walls Practical Extraction and Report
- perl-base 5.8.4-5 The Pathologically Eclectic Rubbish Lister
- perl-modules 5.8.4-5 Core Perl modules
- perlmagick 6.0.6.2-1.6 A perl interface to the libMagick graphics r
- playmidi 2.4debian-2 MIDI player
- po-debconf 0.8.15 Manage translated Debconf templates files wi
- portmap 5-3 The RPC portmapper
- poster 20020830-2 Create large posters out of PostScript pages
- powermgmt-base 1.20 Common utils and configs for power managemen
- ppp 2.4.2+20040202 Point-to-Point Protocol (PPP) daemon
- ppp-scripts-kn 0.5-3 PPP connection scripts for various providers
- pppconfig 2.1 A text menu based utility for configuring pp
- pppoe 3.5-3 PPP over Ethernet driver
- pppoeconf 1.0.16 configures PPPoE/ADSL connections
- pppstatus 0.4.2-6 console-based PPP status monitor
- procps 3.2.1-2 The /proc file system utilities
- prozilla 1.3.6-7 Multi-threaded download accelerator
- psmisc 21.4-1 Utilities that use the proc filesystem
- psutils 1.17-17 A collection of PostScript document handling
- pump 0.8.19-3 Simple DHCP/BOOTP client.
- python 2.3.5-1 An interactive high-level object-oriented la
- python2.3 2.3.5-1 An interactive high-level object-oriented la
- quagga 0.98.0-3 unoff. successor of the Zebra BGP/OSPF/RIP r
- rebuildfstab-k 0.5-6 fstab-rebuilder for KNOPPIX
- recover 1.3c-8 Undelete files on ext2 partitions
- rootshell-knop 0.5-2 Menu entry for starting a Root Shell
- ruby 1.8.2-1 An interpreter of object-oriented scripting
- ruby1.8 1.8.2-2 Interpreter of object-oriented scripting lan
- samba-common 3.0.10-1 Samba common files used by both the server a
- saveconfig-kno 0.5-13 Shell GUI for generation of a KNOPPIX config
- scanpartitions 0.5-9 fstab-helper for KNOPPIX
- screen 4.0.2-4.1 a terminal multiplexor with VT100/ANSI termi
- scrollkeeper 0.3.14-9.1 A free electronic cataloging system for docu
- sed 4.1.2-8 The GNU sed stream editor
- sendfile 2.1-26 Simple Asynchronous File Transfer
- setserial 2.17-36 Controls configuration of serial ports
- sgml-base 1.26 SGML infrastructure and SGML catalog file su
- sgml-data 2.0.2 common SGML and XML data
- shared-mime-in 0.15-1 FreeDesktop.org shared MIME database and spe
- shellutils 5.0.91-2 The GNU shell programming utilities (transit
- slang1 1.4.9dbs-8 The S-Lang programming library - runtime ver
- slang1a-utf8 1.4.9-2 The S-Lang programming library with utf8 sup
- smbclient 3.0.10-1 a LanManager-like simple client for Unix
- smbfs 3.0.10-1 mount and umount commands for the smbfs (for
- sndconfig-knop 0.57-7 Easy soundcard configuration
- socat 1.3.2.2-1 multipurpose relay for bidirectional data tr
- soundcardconfi 0.5-2 Starts sndconfig as root
- speedtouch 1.2-rel-1 userspace driver for the Alcatel Speedtouch
- splitvt 1.6.5-6 run two programs in a split screen
- ssh 3.8p1-3 Secure rlogin/rsh/rcp replacement (OpenSSH)
- sshstart-knopp 0.5-2 Starts SSH and sets a password for the knopp
- startsyslog-kn 0.5-1 Starts syslog server and traces content of /
- sudo 1.6.7p5-1 Provide limited super user privileges to spe
- sudoers-knoppi 0.5-1 /etc/sudoers for the knoppix user
- synaptic 0.55+cvs200503 Graphical package manager
- sysklogd 1.4.1-14 System Logging Daemon
- syslinux-knopp 2.04-1 Bootloader for Linux/i386 using MS-DOS flopp
- sysutils 1.3.8.5.1 Miscellaneous small system utilities.
- sysvinit 2.84-186 System-V like init with KNOPPIX scripts.
- tar 1.13.93-4 GNU tar
- tcc 0.9.20-2 The smallest ANSI C compiler
- tcl8.4 8.4.9-1 Tcl (the Tool Command Language) v8.4 - run-t
- tcpd 7.6.dbs-3 Wietse Venemas TCP wrapper utilities
- tcpdump 3.8.3-3 A powerful tool for network monitoring and d
- telnet-ssl 0.17.17+0.1-2 The telnet client with SSL encryption suppor
- textutils 5.0.91-2 The GNU text file processing utilities (tran
- torsmo 0.18-2 system monitor that sits in the corner of yo
- traceroute 1.4a12-14 Traces the route taken by packets over a TCP
- ttf-bitstream- 1.10-3 The Bitstream Vera family of free TrueType f
- ucf 1.06 Update Configuration File: preserves user ch
- unzip 5.50-3 De-archiver for .zip files
- usbutils 0.70-1 USB console utilities
- usbview 1.0-5 USB device viewer
- user-profile-k 0.6-28 Skeleton files for the KNOPPIX default user
- usleep-knoppix 0.5-1 sleeps for a number of microseconds, see man
- util-linux 2.12-7 Miscellaneous system utilities
- vorbis-tools 1.0.1-1 Several Ogg Vorbis Tools
- wamerican 5-4 American English dictionary words for /usr/s
- wenglish 5-4 American English dictionary words for /usr/s
- wget 1.9.1-4 retrieves files from the web
- whiptail 0.51.6-3 Displays user-friendly dialog boxes from she
- wireless-tools 27-2 Tools for manipulating Linux Wireless Extens
- wlcardconfig-k 0.5-6 Minimalistic ncurses/dialog-based WLAN confi
- wvdial 1.54.0-1 PPP dialer with built-in intelligence
- xbase-clients 4.3.0.dfsg.1-1 miscellaneous X clients
- xdialog 2.0.6-3 X11 replacement for the text util dialog
- xfonts-75dpi 4.3.0.dfsg.1-1 75 dpi fonts for X
- xfonts-base 4.3.0.dfsg.1-1 standard fonts for X
- xfree86-common 4.3.0.dfsg.1-1 X Window System (XFree86) infrastructure
- xfs 4.3.0.dfsg.1-1 X font server
- xfsprogs 2.6.20-1 Utilities for managing the XFS filesystem
- xkbset 0.5-2 Small utility to change the AccessX settings
- xlibmesa-gl 4.3.0.dfsg.1-1 Mesa 3D graphics library [XFree86]
- xlibmesa-glu 4.3.0.dfsg.1-1 Mesa OpenGL utility library [XFree86]
- xlibs 4.3.0.dfsg.1-1 X Window System client libraries metapackage
- xlibs-data 4.3.0.dfsg.1-1 X Window System client data
- xml-core 0.09 XML infrastructure and XML catalog file supp
- xmms 1.2.10-1.4 Versatile X audio player that looks like Win
- xmms-cdread 0.14a-11 Input plugin for XMMS that reads audio data
- xmms-volnorm 0.8.1-3 XMMS plugin that gives all songs the same vo
- xpaint 2.7.3-1 simple paint program for X
- xpdf-common 3.00-12 Portable Document Format (PDF) suite -- comm
- xpdf-utils 3.00-12 Portable Document Format (PDF) suite -- util
- xserver-common 4.3.0.dfsg.1-1 files and utilities common to all X servers
- xterm 4.3.0.dfsg.1-1 X terminal emulator
- xutils 4.3.0.dfsg.1-1 X Window System utility programs
- xzgv 0.8-1 Picture viewer for X with a thumbnail-based
- zlib1g 1.2.1.1-1 compression library - runtime
Enhancements:
- Ive upgraded e2fsprogs and e2fslibs as well as some other critical core files.
- I updated the apt sources and added abiword and acroread, as well as the acroread mozilla plugin, and I added kppp.
- I upgraded samba and switched the quick start konqueror and kde help buttons with a mozilla button and a konsole button.
- I fixed the install script where some folks were getting a blank screen after installation and added a grub install script for easy installation of grub after the initial install.
- The total installed size is now about 800mb.
<<lessTheir goal is to make a light and fast Linux with a very small footprint that can be installed on USB pen drives and such. My goal is a bit different. I want a full featured Linux that isnt bloated with a kazillion gigs of crap that Ill never use. I want a small footprint that is light and fast, even on older machines, but still carries a knockout punch.
So I took Feather and stripped out a bunch of apps that I never even thought of using. I wanted to make an easy to understand desktop that was compatible and easily configurable with the latest apps being developed, so I removed all of the window managers and installed a minimal KDE 3.3 desktop.
I included the most popular internet apps like the Mozilla Suite complete with plugins, Gaim, Gftp etc... I added full printer support and wifi support. In my test environment, it automatically detects and configures both my network printer (HP PSC 1210)and my linksys wireless card. Hopefully, itll do the same for you. It is debian based so I installed Synaptic for easy upgrading and totally FREE software management. Customizing your own system with the software that you want is only a few clicks away.
In its current state, the ISO is about 240mb and the HDD install is about 700mb, which is about 1/4 of all the other overweight distros out there. Once you install it, you can install OpenOffice and a bunch of other stuff if you need it, but I just wanted to make a good solid functional base so you can build your own system if you want.
Featherweight is intended for novice users with "some" linux experience, intermediate users, and experienced linux users alike. It has a pretty straight forward install but you should know linux and HDD partitioning basics before trying to install it.
Packages included are:
- aalib1 1.4p5-22 ascii art library
- abcde 2.2.3-1 A Better CD Encoder
- acpi 0.07-1 displays information on ACPI devices
- adduser 3.52 Add and remove users and groups
- alsa-base 1.0.8-6 ALSA driver configuration files
- alsa-headers 1.0.4-3 ALSA sound driver header files
- alsa-oss 1.0.8-1 ALSA wrapper for OSS applications
- alsa-utils 1.0.8-3 ALSA utilities
- amap 4.5-2 Network protocol probing tool
- antiword 0.35-1 Converts MS Word files to text and ps
- apmd 3.2.2-1 Utilities for Advanced Power Management (APM
- apt 0.5.24 Advanced front-end for dpkg
- apt-utils 0.5.28.4 APT utility programs
- ash-knoppix 0.2-4 A smaller version of the Bourne shell enhanc
- aterm 0.4.2-3 Afterstep XVT - a VT102 emulator for the X w
- autofs 3.9.99-4.0.0pr A kernel-based automounter for Linux
- automount-knop 0.5-4 Auto-generate autofs(5) lines on demand
- base-files 3.0.15 Debian base system miscellaneous files
- base-passwd 3.5.7 Debian base system master password and group
- bash 2.05b-14 The GNU Bourne Again SHell
- bc 1.06-17 The GNU bc arbitrary precision calculator la
- bcrypt 1.1-2 Cross platform file encryption utility
- binutils 2.15-5 The GNU assembler, linker and binary utiliti
- bridge-utils 0.9.6-5 Utilities for configuring the Linux 2.4 brid
- bsdutils 2.12-7 Basic utilities from 4.4BSD-Lite
- bvi 1.3.1-2 binary file editor
- bzip2 1.0.2-1 A high-quality block-sorting file compressor
- catdoc 0.93.4-1 MS-Word to TeX or plain text converter
- cd-discid 0.9-1 CDDB DiscID utility
- cdparanoia 3a9.8-11 An audio extraction tool for sampling CDs.
- cdrdao 1.1.9-3 Disk-At-Once (DAO) recording of audio and da
- cdrecord 2.0+a27-1 command line CD writing tool
- checkmem 0.5-2 Simple script to check if enough memory is a
- cloop-module 2.01-3 The compressed loopback block device kernel hi cloop-utils 2.01-3 Tools for handling with cloop compressed vol
- console-common 0.7.41 Basic infrastructure for text console config
- console-data 2002.12.04dbs- Keymaps, fonts, charset maps, fallback table
- console-tools 0.2.3dbs-52 Linux console and font utilities
- coreutils 5.0.91-2 The GNU core utilities
- cpio 2.5-1.1 GNU cpio -- a program to manage archives of
- cpp 3.3.3-3 The GNU C preprocessor (cpp)
- cpp-3.3 3.3.5-4 The GNU C preprocessor
- cron 3.0pl1-86 management of regular background processing
- csh 20020413-1 Shell with C-like syntax, standard login she
- cupsys 1.1.23-7 Common UNIX Printing System(tm) - server
- cupsys-client 1.1.23-7 Common UNIX Printing System(tm) - client pro
- curl 7.9.5-1 Get a file from an FTP, GOPHER, HTTP or HTTP
- dd-rescue 1.02-1 error-tolerant version of dd for rescuing da
- debconf 1.4.25 Debian configuration management system
- debconf-i18n 1.4.25 full internationalization support for debcon
- debconf-utils 1.4.41 debconf utilities
- debhelper 4.2.28 helper programs for debian/rules
- debianutils 2.13.0 Miscellaneous utilities specific to Debian
- deborphan 1.7.1 Find orphaned libraries
- defoma 0.11.8 Debian Font Manager -- automatic font config
- dhcp3-common 3.0+3.0.1rc13- Common files used by all the dhcp3* packages
- dialog 0.9b-20040421- Displays user-friendly dialog boxes from she
- dictionaries-c 0.24.5 Common utilities for spelling dictionary too
- diff 2.8.1-6 File comparison utilities
- dillo 0.8.3-1 GTK-based web browser
- dnsmasq 2.13-1 A small caching DNS proxy and DHCP server.
- docbook-xml 4.3-1.1 standard XML documentation system, for softw
- dosfstools 2.10-1 Utilities to create and check MS-DOS FAT fil
- dpkg 1.10.21 Package maintenance system for Debian
- dpkg-dev 1.10.25 Package building tools for Debian
- dselect 1.10.21 a user tool to manage Debian packages
- dsniff 2.4b1-8 Various tools to sniff network traffic for c
- e2fslibs 1.35-6 The EXT2 filesystem libraries
- e2fsprogs 1.35-6 The EXT2 file system utilities and libraries
- eject 2.0.13deb-3 ejects CDs and operates CD-Changers under Li
- enscript 1.6.4-7 Converts ASCII text to Postscript, HTML, RTF
- esound-common 0.2.29-1 Enlightened Sound Daemon - Common files
- etcskel-knoppi 0.6-28 Skeleton files for all user
- ethereal 0.10.8-1 Network traffic analyzer
- ethereal-commo 0.10.8-1 Network traffic analyser (common files)
- ethtool 1.8-2 Display or change ethernet card settings
- ettercap 0.7.0-1 Multipurpose sniffer/interceptor/logger for
- ettercap-commo 0.7.0-1 Common support files and plugins for etterca
- expect 5.42.1-1.2 A program that "talks" to other programs
- fbset 2.1-14 framebuffer device maintenance program
- fdflush 1.0.1-11 Flush out-of-date disk buffers
- fdisk-udeb 2.11u-3 Partition a hard drive (manual, cfdisk)
- fdutils 5.4-20030718-3 Linux floppy utilities
- feather-captiv 1-2 Converted Slackware tgz package
- feather-lprng 3.8.22 Feather Linux-specific lprng package.
- feather-x 0.5 Standard Feather Linux Kdrive X servers pack
- fetchmail 6.2.5-7 SSL enabled POP3, APOP, IMAP mail gatherer/f
- file 4.07-2 Determines file type using "magic" numbers
- findutils 4.1.20-3 utilities for finding files--find, xargs, an
- flashplayer-mo 7.0.25-woody0. Macromedia Flash Player
- flashplugin-no 7.0.25-5 Macromedia Flash Player plugin installer
- fontconfig 2.2.2-2 generic font configuration library
- foomatic-db 20050218-1 linuxprinting.org printer support - database
- foomatic-db-en 3.0.2-20050218 linuxprinting.org printer support - programs
- foomatic-db-hp 1.5-20050118-1 linuxprinting.org printer support - database
- foomatic-filte 3.0.2-20050114 linuxprinting.org printer support - filters
- freenx 0.2.7-1 FreeNX application/thin-client server based
- gaim 1.1.0-1 multi-protocol instant messaging client
- gcc-3.3-base 3.3.5-4 The GNU Compiler Collection (base package)
- gcombust 0.1.55-1.1 GTK+ based CD mastering and burning program
- gdk-imlib1 1.9.14-2 Gdk-Imlib is an imaging library for use with
- genliloconf 0.1-3 simple utility for auto-generating of lilo.c
- gettext 0.14.1-6 GNU Internationalization utilities
- gettext-base 0.14.1-6 GNU Internationalization utilities for the b
- gftp 2.0.18-3 X/GTK+ FTP client
- gftp-common 2.0.18-3 shared files for other gFTP packages
- gftp-gtk 2.0.18-3 X/GTK+ FTP client
- gftp-text 2.0.18-3 colored FTP client using GLib
- giftcurs 0.6.2-2 text-based interface to the giFT file-sharin
- gkrellm 2.2.4-1 Multiple stacked system monitors: 1 process
- gkrellm-common 2.2.4-1 Multiple stacked system monitors: 1 process
- gksu 1.2.4-1 graphical frontend to su
- gnupod-tools 0.94rc1-1 A collection of Perl-scripts for iPod
- gpart 0.1h-4 Guess PC disk partition table, find lost par
- grep 2.5.1.ds1-2 GNU grep, egrep and fgrep
- grep-dctrl 2.1.3 Grep Debian package information
- grub 0.95+cvs200406 GRand Unified Bootloader
- grun 0.9.2-9 GTK based Run dialog
- gs-common 0.3.6-0.1 Common files for different Ghostscript relea
- gs-gpl 8.01-5 The GPL Ghostscript PostScript interpreter
- gscanbus 0.7.1-4 scan IEEE1394 (firewire/i.link) bus
- gsfonts 8.14+v8.11-0.1 Fonts for the Ghostscript interpreter(s)
- gtkrecover 0.3-9 GUI for recover
- gzip 1.3.5-7 The GNU compression utility
- hdparm 5.5-2 Tune hard disk parameters for high performan
- hfsplus 1.0.4-6 tools to access HFS+ formatted volumes
- hicolor-icon-t 0.7-1 default fallback theme for FreeDesktop.org i
- hostap-utils 0.1.3-1 Utility programs for Host AP driver for Inte
- hostname 2.13 A utility to set/show the host name or domai
- hotplug 0.0.20040329-8 Linux Hotplug Scripts
- hotplug-knoppi 0.5-7 hotplug handler for KNOPPIX
- hotplug-utils 0.0.20020401-4 Linux Hotplug utility programs
- hpijs 2.0.1+0.8.7-4 HP Linux Printing and Imaging - gs IJS drive
- hping2 2.rc2-5 Active Network Smashing Tool
- html2text 1.3.2a-1 An advanced HTML to text converter
- hwdata-knoppix 0.107-8 hardware identification / configuration data
- hwsetup 1.0-14 Automatic hardware setup using the kudzu lib
- iftop 0.16-1 Display bandwidth usage on an interface
- ifupdown 0.6.4-4.8 High level tools to configure network interf
- imlib-base 1.9.14-16 Common files needed by the Imlib/Gdk-Imlib p
- intltool-debia 0.30+20040213 Help i18n of RFC822 compliant config files
- iproute 20010824-13 Professional tools to control the networking
- iptables 1.2.11-10 Linux kernel 2.4+ iptables administration to
- ipw2100-nonfre 0.1-1 IPW2100 wireless device firmware files from
- isapnptools 1.26-2 ISA Plug-And-Play configuration utilities.
- john 1.6-33 An active password cracking tool
- k3b 0.11.20-2 A sophisticated KDE cd burning application
- k3blibs 0.11.20-2 The KDE cd burning application library - run
- kappfinder 3.3.2-1 KDE Application Finder
- kate 3.3.2-1 KDE Advanced Text Editor
- kbdconfig 0.5-3 Lightweight keyboard configuration tool for
- kcontrol 3.3.2-1 KDE Control Center
- kdebase 3.3.2-1 KDE Base metapackage
- kdebase-bin 3.3.2-1 KDE Base (binaries)
- kdebase-data 3.3.2-1 KDE Base (shared data)
- kdebase-kio-pl 3.3.2-1 KDE I/O Slaves
- kdelibs-bin 3.3.2-3 KDE core binaries
- kdelibs-data 3.3.2-3 KDE core shared data
- kdelibs4 3.3.2-3 KDE core libraries
- kdenetwork-fil 3.3.2-1 KDE Network Filesharing Configuration
- kdepasswd 3.3.2-1 KDE password changer
- kdeprint 3.3.2-1 KDE Print
- kdesktop 3.3.2-1 KDE Desktop
- kdm 3.3.2-1 KDE Display Manager
- kernel-image-2 10.00.Custom Linux kernel binary image for version 2.4.27
- kfind 3.3.2-1 KDE File Find Utility
- khelpcenter 3.3.2-1 KDE Help Center
- kicker 3.3.2-1 KDE Desktop Panel
- kismet 2004.04.R1-5 Wireless 802.11b monitoring tool
- klipper 3.3.2-1 KDE Clipboard
- klogd 1.4.1-14 Kernel Logging Daemon
- kmenuedit 3.3.2-1 KDE Menu Editor
- knoppix-remoun 0.5-3 Minimalistic script for r/w remount of parti
- konqueror 3.3.2-1 KDEs advanced File Manager, Web Browser and
- konqueror-nspl 3.3.2-1 Netscape plugin support for Konqueror
- konsole 3.3.2-1 KDE X terminal emulator
- kpager 3.3.2-1 KDE Desktop Pager
- kpersonalizer 3.3.2-1 KDE Personalizer
- ksmserver 3.3.2-1 KDE Session Manager
- ksplash 3.3.2-1 KDE Splash Screen
- ksysguard 3.3.2-1 KDE System Guard
- ksysguardd 3.3.2-1 KDE System Guard Daemon
- ktip 3.3.2-1 Kandalfs Useful Tips
- kwifimanager 3.3.2-1 KDE Wireless Lan Manager
- kwin 3.3.2-1 KDE Window Manager
- less 381-3 Pager program similar to more
- liba52-0.7.4 0.7.4-1 Library for decoding ATSC A/52 streams.
- libacl1 2.2.23-1 Access control list shared library
- libadns1 1.0-8.2 Asynchronous-capable DNS client library and
- libao2 0.8.5-1 Cross Platform Audio Output Library
- libapm1 3.2.2-1 Library for interacting with APM driver in k
- libart-2.0-2 2.3.17-1 Library of functions for 2D graphics - runti
- libarts1 1.3.2-2 aRts Sound system
- libartsc0 1.3.2-1 aRts Sound system C support library
- libasound2 1.0.8-2 ALSA library
- libaspell15 0.60.2+2005012 The GNU Aspell spell-checker runtime toolkit
- libatk1.0-0 1.8.0-4 The ATK accessibility toolkit
- libatm1 2.4.1-15 shared library for ATM (Asynchronous Transfe
- libattr1 2.4.16-1 Extended attribute shared library
- libaudio2 1.6c-3 The Network Audio System (NAS). (shared libr
- libaudiofile0 0.2.6-3 Open-source version of SGIs audiofile libra
- libavcodeccvs 20050222-0.0 library to encode decode multimedia streams
- libblkid1 1.35-6 Block device id library
- libbz2-1.0 1.0.2-1 A high-quality block-sorting file compressor
- libc6 2.3.2.ds1-20 GNU C Library: Shared libraries and Timezone
- libcap1 1.10-14 support for getting/setting POSIX.1e capabil
- libcdparanoia0 3a9.8-11 Shared libraries for cdparanoia (runtime lib
- libcomerr2 1.35-6 The Common Error Description library
- libcompfaceg1 1989.11.11-24 Compress/decompress images for mailheaders,
- libconsole 0.2.3dbs-52 Shared libraries for Linux console and font
- libcupsimage2 1.1.23-7 Common UNIX Printing System(tm) - image libs
- libcupsys2-gnu 1.1.23-7 Common UNIX Printing System(tm) - libs
- libcurl2 7.11.2-1 Multi-protocol file transfer library, now wi
- libdb1-compat 2.1.3-7 The Berkeley database routines [glibc 2.0/2.
- libdb2 2.7.7.0-8.1 The Berkeley database routines (run-time fil
- libdb3 3.2.9-19.1 Berkeley v3 Database Libraries [runtime]
- libdb4.2 4.2.52-16 Berkeley v4.2 Database Libraries [runtime]
- libdevmapper1. 1.00.17-1 The Linux Kernel Device Mapper userspace lib
- libdevmapper1. 1.01.00-1 The Linux Kernel Device Mapper userspace lib
- libdirectfb-0. 0.9.20-4 frame buffer graphics library
- libdivxdecore0 5.0.1-1 DivX MPEG-4 Codec - decoder library
- libdockapp1 0.4.0-8 Window Maker Dock App support (shared librar
- libdps1 4.3.0.dfsg.1-1 Display PostScript (DPS) client library
- libdv2 0.99-1 A software library for DV format digital vid
- libdv4 0.103-2 software library for DV format digital video
- libdvdcss2 1.2.8-0.0 Simple foundation for reading DVDs - runtime
- libdvdread3 0.9.4-4 Simple foundation for reading DVDs
- libenchant1 1.1.4+cvs.2004 a wrapper library for various spell checker
- libesd0 0.2.29-1 Enlightened Sound Daemon - Shared libraries
- libexif10 0.6.9-4 The EXIF library allows you to parse an EXIF
- libexpat1 1.95.8-1 XML parsing C library - runtime library
- libfaac0 1.24-0.3 an AAC audio encoder - library files
- libfaad2-0 2.0.0-0.2 Freeware Advanced Audio Decoder - runtime fi
- libfam0c102 2.7.0-5 client library to control the FAM daemon
- libflac++4 1.1.1-5 Free Lossless Audio Codec - C++ runtime libr
- libflac4 1.1.0-11 Free Lossless Audio Codec - runtime C librar
- libflac6 1.1.1-5 Free Lossless Audio Codec - runtime C librar
- libfontconfig1 2.2.2-2 generic font configuration library (shared l
- libfreetype6 2.1.7-2 FreeType 2 font engine, shared library files
- libfribidi0 0.10.4-6 Free Implementation of the Unicode BiDi algo
- libgcc1 3.4.3-5 GCC support library
- libgcrypt1 1.1.12-4 LGPL Crypto library - runtime library
- libgcrypt11 1.2.0-11 LGPL Crypto library - runtime library
- libgdbm3 1.8.3-2 GNU dbm database routines (runtime version)
- libgdk-pixbuf2 0.22.0-7 The GdkPixBuf image library, gtk+ 1.2 versio
- libggi2 2.0.5-1 General Graphics Interface runtime libraries
- libgii0-target 0.8.5-2 General Input Interface X input target
- libgimpprint1 4.2.7-5 The Gimp-Print printer driver library
- libgksu1.2-0 1.2.5a-1 library providing su and sudo functionality
- libgksuui1.0-0 1.0.3-2 a graphical fronted to su library
- libglade2-0 2.4.2-2 library to load .glade files at runtime
- libglib-perl 1.062-1 Perl interface to the GLib and GObject libra
- libglib1.2 1.2.10-9 The GLib library of C routines
- libglib2.0-0 2.6.2-1 The GLib library of C routines
- libgmp3 4.1.4-5 Multiprecision arithmetic library
- libgnutls11 1.0.16-13 GNU TLS library - runtime library
- libgnutls7 0.8.12-5 GNU TLS library - runtime library
- libgpg-error0 1.0-1 library for common error values and messages
- libgpmg1 1.19.6-19 General Purpose Mouse - shared library
- libgtk1.2 1.2.10-16 The GIMP Toolkit set of widgets for X
- libgtk1.2-comm 1.2.10-16 Common files for the GTK+ library
- libgtk2-perl 1.062-1 Perl interface to the 2.x series of the Gimp
- libgtk2.0-0 2.6.2-4 The GTK+ graphical user interface library
- libgtk2.0-bin 2.6.2-4 The programs for the GTK+ graphical user int
- libgtk2.0-comm 2.6.2-4 Common files for the GTK+ graphical user int
- libgtkspell0 2.0.8-1 a spell-checking addon for GTKs TextView wi
- libgucharmap4 1.4.0-1 Unicode browser widget library (shared libra
- libhfsp0 1.0.4-6 shared library to access HFS+ formatted volu
- libhtml-parser 3.45-1 A collection of modules that parse HTML text
- libhtml-tagset 3.04-1 Data tables pertaining to HTML
- libhtml-tree-p 3.18-1 represent and create HTML syntax trees
- libice6 4.3.0.dfsg.1-1 Inter-Client Exchange library
- libid3-3.8.3 3.8.3-4.1 Library for manipulating ID3v1 and ID3v2 tag
- libid3tag0 0.15.0b-3.1 ID3 tag reading library from the MAD project
- libidl0 0.8.3-1 library for parsing CORBA IDL files
- libidn11 0.5.13-0.1 GNU libidn library, implementation of IETF I
- libimlib2 1.1.2-1 powerful image loading and rendering library
- libiw27 27-2 Wireless tools - library
- libjack0.80.0- 0.99.0-6 JACK Audio Connection Kit (libraries)
- libjasper-1.70 1.701.0-2 The JasPer JPEG-2000 runtime library
- libjpeg62 6b-9 The Independent JPEG Groups JPEG runtime li
- libkonq4 3.3.2-1 Core libraries for KDEs file manager
- libkrb53 1.3.5-1 MIT Kerberos runtime libraries
- liblame0 3.96.1-1 LAME Aint an MP3 Encoder
- liblcms1 1.13-1 Color management library
- libldap2 2.1.30-3 OpenLDAP libraries
- liblircclient0 0.6.6-12 LIRC client library
- liblocale-gett 1.01-17 Using libc functions for internationalizatio
- libltdl3 1.5.6-2 A system independent dlopen wrapper for GNU
- liblua50 5.0.2-5 Main interpreter library for the Lua 5.0 pro
- liblualib50 5.0.2-5 Extension library for the Lua 5.0 programmin
- liblzo1 1.08-1 A real-time data compression library
- libmad0 0.15.1b-1 MPEG audio decoder library
- libmagic1 4.07-2 File type determination library using "magic
- libmagick6 6.0.6.2-1.6 Image manipulation library
- libmng1 1.0.8-1 Multiple-image Network Graphics library
- libmp3-info-pe 1.02-1 Perl MP3::Info - Manipulate / fetch info fro
- libmp4-0 2.0.0-0.2 freeware Advanced Audio Decoder - runtime fi
- libmyspell3 3.1-10 MySpell spellchecking library
- libncurses5 5.4-3 Shared libraries for terminal handling
- libncursesw5 5.4-3 Shared libraries for terminal handling (wide
- libnet0 1.0.2a-7 library for the construction and handling of
- libnet1 1.1.2.1-1 Library for the construction and handling of
- libnetpbm10 10.0-8 Shared libraries for netpbm
- libnewt-utf8-0 0.50.17-13 newt - text mode windowing with slang, with
- libnewt0.51 0.51.6-3 Not Eriks Windowing Toolkit - text mode win
- libnids1 1.19-1 IP defragmentation TCP segment reassembly li
- libnspr4 1.7.5-1 Netscape Portable Runtime Library
- libnss3 1.7.5-1 Network Security Service Libraries - runtime
- libntfs5 1.9.0-1 Library that provides common NTFS access fun
- libnxcomp0 1.4.0-m1-1 NoMachine NX - NX compression library
- libnxcompext0 1.4.0-m1-1 NoMachine NX - NX compression library
- libogg0 1.1.0-1 Ogg Bitstream Library
- liboggflac1 1.1.0-11 Free Lossless Audio Codec - runtime C librar
- libopencdk8 0.5.5-10 Open Crypto Development Kit (OpenCDK) (runti
- libopenexr2 1.2.1-3 runtime files for the OpenEXR image library
- libpam-modules 0.76-21 Pluggable Authentication Modules for PAM
- libpam-runtime 0.76-21 Runtime support for the PAM library
- libpam0g 0.76-21 Pluggable Authentication Modules library
- libpango1.0-0 1.8.0-3 Layout and rendering of internationalized te
- libpango1.0-co 1.8.0-3 Modules and configuration files for the Pang
- libpaper1 1.1.14-3 Library for handling paper characteristics
- libparted1.6-0 1.6.9-2 The GNU Parted disk partitioning shared libr
- pi libpcap0.7 0.7.2-5 System interface for user-level packet captu
- libpcap0.8 0.8.3-4 System interface for user-level packet captu
- libpcre3 4.5-1.1 Perl 5 Compatible Regular Expression Library
- libperl5.8 5.8.4-5 Shared Perl library
- libpisock8 0.11.8-10 Library for communicating with a PalmOS PDA
- libpng10-0 1.0.18-1 PNG library, older version - runtime
- libpng12-0 1.2.8rel-1 PNG library - runtime
- libpng2 1.0.15-5 PNG library, older version - runtime
- libpopt0 1.7-4 lib for parsing cmdline parameters
- libpostproc0 1.0-pre1.1 Mplayer postproc shared libraries
- libqt3c102-mt 3.3.3-8 Qt GUI Library (Threaded runtime version), V
- libraw1394-5 0.10.1-1 library for direct access to IEEE 1394 bus (
- libreadline4 4.3-10 GNU readline and history libraries, run-time
- libreiserfs0.3 0.3.0.4-3 ReiserFS filesystem access and manipulation
- libruby 1.8.2-1 Libraries necessary to run Ruby 1.8.x
- libruby1.8 1.8.2-2 Libraries necessary to run the Ruby 1.8
- libsasl2 2.1.18-4 Authentication abstraction library
- libscrollkeepe 0.3.14-9.1 Library to load .omf files (runtime files)
- libsdl1.2debia 1.2.7+1.2.8cvs Simple DirectMedia Layer
- libsdl1.2debia 1.2.7+1.2.8cvs Simple DirectMedia Layer (with X11 and OSS o
- libsensors3 2.9.0-8 library to read temperature/voltage/fan sens
- libslp1 1.0.11a-1 OpenSLP libraries
- libsm6 4.3.0.dfsg.1-1 X Window System Session Management library
- libsmbclient 3.0.9-1 shared library that allows applications to t
- libsnmp-base 5.1.2-6 NET SNMP (Simple Network Management Protocol
- libsnmp5 5.1.2-6 NET SNMP (Simple Network Management Protocol
- libspeex1 1.0.rel.3-1 The Speex Speech Codec
- libss2 1.35-6 Command-line interface parsing library
- libssl0.9.7 0.9.7d-1 SSL shared libraries
- libstartup-not 0.7-1 library for program launch feedback (shared
- libstdc++2.10- 2.95.4-22 The GNU stdc++ library
- libstdc++5 3.3.5-4 The GNU Standard C++ Library v3
- libsvga1 1.4.3-18 console SVGA display libraries
- libtasn1-0 0.1.2-1 Manage ASN.1 structures (runtime)
- libtasn1-2 0.2.10-4 Manage ASN.1 structures (runtime)
- libtext-charwi 0.04-1 get display widths of characters on the term
- libtext-iconv- 1.2-3 Convert between character sets in Perl
- libtext-wrapi1 0.06-1 internationalized substitute of Text::Wrap
- libtheora0 0.0.0.alpha3-1 The Theora Video Compression Codec
- libtiff3g 3.6.1-1 Tag Image File Format library
- libtiff4 3.6.1-3 Tag Image File Format library
- libungif4g 4.1.3-1 shared library for GIF images (runtime lib)
- libunicode-str 2.07-1 Perl modules for Unicode strings
- liburi-perl 1.30-1 Manipulates and accesses URI strings
- libusb-0.1-4 0.1.8-11 Userspace USB programming library
- libuuid1 1.35-6 Universally unique id library
- libvorbis0a 1.0.1-1 The Vorbis General Audio Compression Codec
- libvorbisenc2 1.0.1-1 The Vorbis General Audio Compression Codec
- libvorbisfile3 1.0.1-1 The Vorbis General Audio Compression Codec
- libvte-common 0.11.11-5 Terminal emulator widget for GTK+ 2.0 - comm
- libvte4 0.11.11-5 Terminal emulator widget for GTK+ 2.0 - runt
- libwmf0.2-7 0.2.8-1.1 Windows metafile conversion library
- libwrap0 7.6.dbs-3 Wietse Venemas TCP wrappers library
- libwvstreams3- 3.75.0-1 C++ network libraries for rapid application
- libwww-perl 5.803-4 WWW client/server library for Perl (aka LWP)
- libx11-6 4.3.0.dfsg.1-1 X Window System protocol client library
- libxaw7 4.3.0.dfsg.1-1 X Athena widget set library
- libxcursor1 1.1.3-1 X cursor management library
- libxext6 4.3.0.dfsg.1-1 X Window System miscellaneous extension libr
- libxft1 4.3.0.dfsg.1-1 FreeType-based font drawing library for X (v
- libxft2 2.1.1-2 advanced font drawing library for X
- libxi6 4.3.0.dfsg.1-1 X Window System Input extension library
- libxml-dom-per 1.43-4 Perl module for building DOM Level 1 complia
- libxml-libxml- 0.13-5 Perl module for common routines & constants
- libxml-libxml- 1.58-0.3 Perl module for using the GNOME libxml2 libr
- libxml-namespa 1.08-3 Perl module for supporting simple generic na
- libxml-parser- 2.34-4 Perl module for parsing XML files
- libxml-perl 0.08-1 Perl modules for working with XML
- libxml-regexp- 0.03-7 Perl module for regular expressions for XML
- libxml-sax-per 0.12-5 Perl module for using and building Perl SAX2
- libxml-simple- 2.14-1 Perl module for reading and writing XML
- libxml2 2.6.16-3 GNOME XML library
- libxmu6 4.3.0.dfsg.1-1 X Window System miscellaneous utility librar
- libxmuu1 4.3.0.dfsg.1-1 lightweight X Window System miscellaneous ut
- libxp6 4.3.0.dfsg.1-1 X Window System printing extension library
- libxpm4 4.3.0.dfsg.1-1 X pixmap library
- libxrandr2 4.3.0.dfsg.1-1 X Window System Resize, Rotate and Reflectio
- libxrender1 0.8.3-7 X Rendering Extension client library
- libxslt1.1 1.1.12-5 XSLT processing library - runtime library
- libxt6 4.3.0.dfsg.1-1 X Toolkit Intrinsics
- libxtrap6 4.3.0.dfsg.1-1 X Window System protocol-trapping extension
- libxtst6 4.3.0.dfsg.1-1 X Window System event recording and testing
- libxv1 4.3.0.dfsg.1-1 X Window System video extension library
- libxvidcore4 1.0.2-0.0 High quality ISO MPEG4 codec library
- libzvbi-common 0.2.9-2 Video Blank Interval decoder - common files
- libzvbi0 0.2.9-2 Video Blank Interval decoder - runtime files
- lilo 22.6.1-5 LInux LOader - The Classic OS loader can loa
- linux-kernel-h 0.5-1 Symlinks to unpackaged Kernel header files f
- linux-wlan-ng 0.2.0+0.2.1pre utilities for wireless prism2 cards
- linux-wlan-ng- +0.2.1pre21-1 drivers for wireless prism2 cards
- login 4.0.3-28 System login tools
- logrotate 3.7-2 Log rotation utility
- loop-aes 2.0g-1 AES (Advanced Encryption Standard) Kernel mo
- lsof 4.74-1 List open files.
- lua50 5.0.2-1 Small embeddable language with simple proced
- luasocket 2.0-alpha-2 TCP/UDP socket library for Lua 5.0
- macchanger 1.5.0-1 utility for manipulating the MAC address of
- madwifi 20030910-1 Setup to use atheros wireless cards
- make 3.80-9 The GNU version of the "make" utility.
- makedev 2.3.1-69 Creates device files in /dev
- mawk 1.3.3-11 a pattern scanning and text processing langu
- menu-xdg 0.2 freedesktop.org menu compliant window manage
- mkbootfloppy-k 0.5-1 Shell(X)dialog GUI for creating a set of KNO
- mkdesktophdico 0.5-2 Automatic KDE/GNOME Desktop harddisk icon cr
- mkdosswapfile- 0.5-11 Shell GUI for generation of Swapfiles on DOS
- mkisofs 2.0+a27-1 Creates ISO-9660 CD-ROM filesystem images
- modconf 0.2.45.1 Device Driver Configuration
- modemlink-knop 0.5-5 Lightweight setup for /dev/modem
- modutils 2.4.26-1.2 Linux module utilities
- mount-aes 2.11x-1 Tools for mounting and manipulating filesyst
- mountapp 3.0-5 Tool to (un)mount devices, dockable in WM-li
- mouseconfig 0.5-2 Lightweight mouse configuration tool for Kno
- mozilla 1.7.5-1 The Mozilla Internet application suite - met
- mozilla-browse 1.7.5-1 The Mozilla Internet application suite - cor
- mozilla-mailne 1.7.5-1 The Mozilla Internet application suite - mai
- mozilla-mplaye 2.70-1 MPlayer-Plugin for Mozilla, Konqueror and Op
- mozilla-psm 1.7.5-1 The Mozilla Internet application suite - Per
- mpg321 0.2.10.3 A Free command-line mp3 player, compatible w
- mplayer-586 1.0-pre6-0.2 The Ultimate Movie Player For Linux
- mtools 3.9.9-2 Tools for manipulating MSDOS files
- mtr-tiny 0.54-1 Full screen ncurses traceroute tool
- myspell-en-us 20030813-3 English (US) dictionary for myspell
- nano-tiny 1.2.3-1 free Pico clone with some new features - tin
- nas 1.7-1 The Network Audio System (NAS). (local serve
- nas-bin 1.7-1 The Network Audio System (NAS). (client bina
- ncurses-base 5.4-3 Descriptions of common terminal types
- ncurses-bin 5.4-3 Terminal-related programs and man pages
- ndiswrapper-mo 1.1rc1@050206- Linux kernel module for NdisWrapper for 2.4.
- ndiswrapper-ut 1.1rc1@050206- User space tools for ndiswrapper
- net-tools 1.60-10 The NET-3 networking toolkit
- netbase 4.16 Basic TCP/IP networking system
- netcardconfig- 0.5-20 Minimalistic ncurses/dialog-based network co
- netcat 1.10-27 TCP/IP swiss army knife
- netkit-inetd 0.10-9 The Internet Superserver
- netkit-ping 0.10-9 The ping utility from netkit
- netpbm 10.0-8 Graphics conversion tools
- networkconfig- 0.5-2 KDE/GNOME Menus for network configuration in
- nfs-common 1.0.6-3 NFS support files common to client and serve
- ngrep 1.40.1-3 grep for network traffic
- nmap 3.75-1 The Network Mapper
- nmapfe 3.50-1 The Network Mapper Front End
- ntfstools 1.9.0-1 Tools for doing neat things in NTFS partitio
- nxagent 1.4.0-m1-1 NoMachine NX - nesting X server with roundtr
- nxclient 1.4.0-91.1 NoMachine NX - NX Client.
- nxlibs 1.4.0-m1-1 NoMachine NX - common agent libraries
- nxproxy 1.4.0-m1-1 NoMachine NX - X protocol compression proxy
- openssl 0.9.7e-3 Secure Socket Layer (SSL) binary and related
- openvpn 1.6.0-5 Virtual Private Network daemon
- orinoco 0.13e-1 Orinoco and Prism 2 wireless card driver wit
- paketto 1.10-4 Unusual TCP/IP testing tools
- parted-bf 1.6.9-2 The GNU Parted disk partition resizing progr
- partimage 0.6.4-5 Linux/UNIX utility to save partitions in a c
- passwd 4.0.3-28 Change and administer password and group dat
- patch 2.5.9-2 Apply a diff file to an original
- pciutils 2.1.11-11 Linux PCI Utilities (for 2.*.* kernels)
- pcmcia-cs 3.2.5-3 PCMCIA Card Services for Linux
- pencam 0.67-1 Download images from STV0680B-001 chip based
- perl 5.8.4-5 Larry Walls Practical Extraction and Report
- perl-base 5.8.4-5 The Pathologically Eclectic Rubbish Lister
- perl-modules 5.8.4-5 Core Perl modules
- perlmagick 6.0.6.2-1.6 A perl interface to the libMagick graphics r
- playmidi 2.4debian-2 MIDI player
- po-debconf 0.8.15 Manage translated Debconf templates files wi
- portmap 5-3 The RPC portmapper
- poster 20020830-2 Create large posters out of PostScript pages
- powermgmt-base 1.20 Common utils and configs for power managemen
- ppp 2.4.2+20040202 Point-to-Point Protocol (PPP) daemon
- ppp-scripts-kn 0.5-3 PPP connection scripts for various providers
- pppconfig 2.1 A text menu based utility for configuring pp
- pppoe 3.5-3 PPP over Ethernet driver
- pppoeconf 1.0.16 configures PPPoE/ADSL connections
- pppstatus 0.4.2-6 console-based PPP status monitor
- procps 3.2.1-2 The /proc file system utilities
- prozilla 1.3.6-7 Multi-threaded download accelerator
- psmisc 21.4-1 Utilities that use the proc filesystem
- psutils 1.17-17 A collection of PostScript document handling
- pump 0.8.19-3 Simple DHCP/BOOTP client.
- python 2.3.5-1 An interactive high-level object-oriented la
- python2.3 2.3.5-1 An interactive high-level object-oriented la
- quagga 0.98.0-3 unoff. successor of the Zebra BGP/OSPF/RIP r
- rebuildfstab-k 0.5-6 fstab-rebuilder for KNOPPIX
- recover 1.3c-8 Undelete files on ext2 partitions
- rootshell-knop 0.5-2 Menu entry for starting a Root Shell
- ruby 1.8.2-1 An interpreter of object-oriented scripting
- ruby1.8 1.8.2-2 Interpreter of object-oriented scripting lan
- samba-common 3.0.10-1 Samba common files used by both the server a
- saveconfig-kno 0.5-13 Shell GUI for generation of a KNOPPIX config
- scanpartitions 0.5-9 fstab-helper for KNOPPIX
- screen 4.0.2-4.1 a terminal multiplexor with VT100/ANSI termi
- scrollkeeper 0.3.14-9.1 A free electronic cataloging system for docu
- sed 4.1.2-8 The GNU sed stream editor
- sendfile 2.1-26 Simple Asynchronous File Transfer
- setserial 2.17-36 Controls configuration of serial ports
- sgml-base 1.26 SGML infrastructure and SGML catalog file su
- sgml-data 2.0.2 common SGML and XML data
- shared-mime-in 0.15-1 FreeDesktop.org shared MIME database and spe
- shellutils 5.0.91-2 The GNU shell programming utilities (transit
- slang1 1.4.9dbs-8 The S-Lang programming library - runtime ver
- slang1a-utf8 1.4.9-2 The S-Lang programming library with utf8 sup
- smbclient 3.0.10-1 a LanManager-like simple client for Unix
- smbfs 3.0.10-1 mount and umount commands for the smbfs (for
- sndconfig-knop 0.57-7 Easy soundcard configuration
- socat 1.3.2.2-1 multipurpose relay for bidirectional data tr
- soundcardconfi 0.5-2 Starts sndconfig as root
- speedtouch 1.2-rel-1 userspace driver for the Alcatel Speedtouch
- splitvt 1.6.5-6 run two programs in a split screen
- ssh 3.8p1-3 Secure rlogin/rsh/rcp replacement (OpenSSH)
- sshstart-knopp 0.5-2 Starts SSH and sets a password for the knopp
- startsyslog-kn 0.5-1 Starts syslog server and traces content of /
- sudo 1.6.7p5-1 Provide limited super user privileges to spe
- sudoers-knoppi 0.5-1 /etc/sudoers for the knoppix user
- synaptic 0.55+cvs200503 Graphical package manager
- sysklogd 1.4.1-14 System Logging Daemon
- syslinux-knopp 2.04-1 Bootloader for Linux/i386 using MS-DOS flopp
- sysutils 1.3.8.5.1 Miscellaneous small system utilities.
- sysvinit 2.84-186 System-V like init with KNOPPIX scripts.
- tar 1.13.93-4 GNU tar
- tcc 0.9.20-2 The smallest ANSI C compiler
- tcl8.4 8.4.9-1 Tcl (the Tool Command Language) v8.4 - run-t
- tcpd 7.6.dbs-3 Wietse Venemas TCP wrapper utilities
- tcpdump 3.8.3-3 A powerful tool for network monitoring and d
- telnet-ssl 0.17.17+0.1-2 The telnet client with SSL encryption suppor
- textutils 5.0.91-2 The GNU text file processing utilities (tran
- torsmo 0.18-2 system monitor that sits in the corner of yo
- traceroute 1.4a12-14 Traces the route taken by packets over a TCP
- ttf-bitstream- 1.10-3 The Bitstream Vera family of free TrueType f
- ucf 1.06 Update Configuration File: preserves user ch
- unzip 5.50-3 De-archiver for .zip files
- usbutils 0.70-1 USB console utilities
- usbview 1.0-5 USB device viewer
- user-profile-k 0.6-28 Skeleton files for the KNOPPIX default user
- usleep-knoppix 0.5-1 sleeps for a number of microseconds, see man
- util-linux 2.12-7 Miscellaneous system utilities
- vorbis-tools 1.0.1-1 Several Ogg Vorbis Tools
- wamerican 5-4 American English dictionary words for /usr/s
- wenglish 5-4 American English dictionary words for /usr/s
- wget 1.9.1-4 retrieves files from the web
- whiptail 0.51.6-3 Displays user-friendly dialog boxes from she
- wireless-tools 27-2 Tools for manipulating Linux Wireless Extens
- wlcardconfig-k 0.5-6 Minimalistic ncurses/dialog-based WLAN confi
- wvdial 1.54.0-1 PPP dialer with built-in intelligence
- xbase-clients 4.3.0.dfsg.1-1 miscellaneous X clients
- xdialog 2.0.6-3 X11 replacement for the text util dialog
- xfonts-75dpi 4.3.0.dfsg.1-1 75 dpi fonts for X
- xfonts-base 4.3.0.dfsg.1-1 standard fonts for X
- xfree86-common 4.3.0.dfsg.1-1 X Window System (XFree86) infrastructure
- xfs 4.3.0.dfsg.1-1 X font server
- xfsprogs 2.6.20-1 Utilities for managing the XFS filesystem
- xkbset 0.5-2 Small utility to change the AccessX settings
- xlibmesa-gl 4.3.0.dfsg.1-1 Mesa 3D graphics library [XFree86]
- xlibmesa-glu 4.3.0.dfsg.1-1 Mesa OpenGL utility library [XFree86]
- xlibs 4.3.0.dfsg.1-1 X Window System client libraries metapackage
- xlibs-data 4.3.0.dfsg.1-1 X Window System client data
- xml-core 0.09 XML infrastructure and XML catalog file supp
- xmms 1.2.10-1.4 Versatile X audio player that looks like Win
- xmms-cdread 0.14a-11 Input plugin for XMMS that reads audio data
- xmms-volnorm 0.8.1-3 XMMS plugin that gives all songs the same vo
- xpaint 2.7.3-1 simple paint program for X
- xpdf-common 3.00-12 Portable Document Format (PDF) suite -- comm
- xpdf-utils 3.00-12 Portable Document Format (PDF) suite -- util
- xserver-common 4.3.0.dfsg.1-1 files and utilities common to all X servers
- xterm 4.3.0.dfsg.1-1 X terminal emulator
- xutils 4.3.0.dfsg.1-1 X Window System utility programs
- xzgv 0.8-1 Picture viewer for X with a thumbnail-based
- zlib1g 1.2.1.1-1 compression library - runtime
Enhancements:
- Ive upgraded e2fsprogs and e2fslibs as well as some other critical core files.
- I updated the apt sources and added abiword and acroread, as well as the acroread mozilla plugin, and I added kppp.
- I upgraded samba and switched the quick start konqueror and kde help buttons with a mozilla button and a konsole button.
- I fixed the install script where some folks were getting a blank screen after installation and added a grub install script for easy installation of grub after the initial install.
- The total installed size is now about 800mb.
Download (272MB)
Added: 2005-09-28 License: GPL (GNU General Public License) Price:
854 downloads
WaveSelect 0.1.2
WaveSelect it makes it a snap to discover local wlans, and connect to them. more>>
Waveselect was first thought of as a replica of the Windows XP wlan-connection tool. The project makes it a snap to discover local wlans, and connect to them.
It depends on QT-3.x (3.3.3 was used to develop it), and wireless-tools (iwlist, iwconfig). It should work with every card that works with wireless-tool. Use of the great KNemo-tool: ( HTTP://kde-apps.org/content/show.php?content=12956 ) as a companion is recommended, for extra comfort.
Future releases of waveselect will support more features, as long as it can be implemented while still keeping a simple and easy GUI.
This tool must be run as root, unless your user have access to change driver-parameters with iwconfig, and start dhcpcd.
Main features:
- Profile-creation for often used APs (home/work/school/etc)
- Automatically roaming between APs defined by a profile
- Integration with kismet/gpsd/mysql, for showing ESSIDs kismet have previously decloaked.
- Support alternative dhcpd-clients other than dhcpcd
- Support for non-dhpcd networks. Letting the user specify ip, gateway, dns, proxy, etc. manually.
- Configure-dialog for specifying paths etc.
- KDE integration (KDE-classes, KDE-systray)
Enhancements:
- GUI improvements. Options are no longer available if no network is selected. Also beautify the "scan-results" if no networks are found.
- Do an "ifconfig up" on the selected device before scanning.
- (some?) cards using the madwifi-driver does not return scan-data unless this is done (reported by TMS)
- Instead of killing all dhcpcd instances before associating, check if the /var/run/dhcpcd-.pid exists. If it does, get the pid of the cards current dhcpcd-process from this file, and kill only this process. If file does not exist, assume dhcpcd is not running for the card. (reported by TMS)
- This time, it handles a notebook with several wlan-cards better.
- In fact, it handles them at all.
- Improved parsing once again to make it even more fault-tolerant.
- Dont know about any way to segfault it now. But if you find one, be sure to mail me and let me know.
- Manage encryption-settings better. It will now manage to set four different encryption keys. You select which one should be the transmitted key, by selecting the key you want to be active in the "key index" combo-box before pressing associate.
- The "security-mode" option was actually connected to code this time, so it will now have effect.
<<lessIt depends on QT-3.x (3.3.3 was used to develop it), and wireless-tools (iwlist, iwconfig). It should work with every card that works with wireless-tool. Use of the great KNemo-tool: ( HTTP://kde-apps.org/content/show.php?content=12956 ) as a companion is recommended, for extra comfort.
Future releases of waveselect will support more features, as long as it can be implemented while still keeping a simple and easy GUI.
This tool must be run as root, unless your user have access to change driver-parameters with iwconfig, and start dhcpcd.
Main features:
- Profile-creation for often used APs (home/work/school/etc)
- Automatically roaming between APs defined by a profile
- Integration with kismet/gpsd/mysql, for showing ESSIDs kismet have previously decloaked.
- Support alternative dhcpd-clients other than dhcpcd
- Support for non-dhpcd networks. Letting the user specify ip, gateway, dns, proxy, etc. manually.
- Configure-dialog for specifying paths etc.
- KDE integration (KDE-classes, KDE-systray)
Enhancements:
- GUI improvements. Options are no longer available if no network is selected. Also beautify the "scan-results" if no networks are found.
- Do an "ifconfig up" on the selected device before scanning.
- (some?) cards using the madwifi-driver does not return scan-data unless this is done (reported by TMS)
- Instead of killing all dhcpcd instances before associating, check if the /var/run/dhcpcd-.pid exists. If it does, get the pid of the cards current dhcpcd-process from this file, and kill only this process. If file does not exist, assume dhcpcd is not running for the card. (reported by TMS)
- This time, it handles a notebook with several wlan-cards better.
- In fact, it handles them at all.
- Improved parsing once again to make it even more fault-tolerant.
- Dont know about any way to segfault it now. But if you find one, be sure to mail me and let me know.
- Manage encryption-settings better. It will now manage to set four different encryption keys. You select which one should be the transmitted key, by selecting the key you want to be active in the "key index" combo-box before pressing associate.
- The "security-mode" option was actually connected to code this time, so it will now have effect.
Download (MB)
Added: 2005-06-02 License: GPL (GNU General Public License) Price:
1607 downloads
StrongBox Linux 1.0 beta14
StrongBox is a next generation Linux-based operating system. more>>
StrongBox is a next generation Linux-based operating system, incorporating tight version control, digital signatures, high security and built-in change management.
StrongBox represents a shift in the Linux paradigm. Moving away from monolithic systems where everything runs together, StrongBox is a fully modular Linux distribution.
It incorporates a small ram-based OS and toolset for administration and security functions, and then allows applications bundles, built using any Linux distribution, to run on top of it. Each of these bundles, running in a secure virtual context, has a large level of independence from the base OS.
This secure partitioning allows StrongBox to have some unique and powerful features. OS versioning, rollbacks, automated hardware detection, fault-tolerant boot process, easy migration from server-to-server, and the ability to incorporate other Linux distributions and existing installations are key features.
StrongBox gets its name from the high standard of security that it provides. Using virtual servers, digital signatures on all OS components, and a large number of read-only pieces in the OS, StrongBox is highly resistant to security breaches.
Also, it has virtual boot medium independence, meaning that it can run with little or no changes from CDRom, compact flash, USB, SCSI, etc. This makes StrongBox ideal for the secure deployment of embedded systems, computing clusters, enterprise Linux deployments, secure web servers, PBX systems, and kiosk systems.
Enhancements:
- makerpm and makedebian scripts greatly improved
- asteriskathome build script
- Improved usb authentication, and automatic key selection for USB keys
- Added a gcc, distcc, linux headers, and kernel source add-ons
- Unionfs, bind, vrenice, rpm, hashlimits subsystem
- Larger default config partition (12MB)
- dmraid support re-added (use dmraid kernel parameter on boot)
- Updated versions of all software
<<lessStrongBox represents a shift in the Linux paradigm. Moving away from monolithic systems where everything runs together, StrongBox is a fully modular Linux distribution.
It incorporates a small ram-based OS and toolset for administration and security functions, and then allows applications bundles, built using any Linux distribution, to run on top of it. Each of these bundles, running in a secure virtual context, has a large level of independence from the base OS.
This secure partitioning allows StrongBox to have some unique and powerful features. OS versioning, rollbacks, automated hardware detection, fault-tolerant boot process, easy migration from server-to-server, and the ability to incorporate other Linux distributions and existing installations are key features.
StrongBox gets its name from the high standard of security that it provides. Using virtual servers, digital signatures on all OS components, and a large number of read-only pieces in the OS, StrongBox is highly resistant to security breaches.
Also, it has virtual boot medium independence, meaning that it can run with little or no changes from CDRom, compact flash, USB, SCSI, etc. This makes StrongBox ideal for the secure deployment of embedded systems, computing clusters, enterprise Linux deployments, secure web servers, PBX systems, and kiosk systems.
Enhancements:
- makerpm and makedebian scripts greatly improved
- asteriskathome build script
- Improved usb authentication, and automatic key selection for USB keys
- Added a gcc, distcc, linux headers, and kernel source add-ons
- Unionfs, bind, vrenice, rpm, hashlimits subsystem
- Larger default config partition (12MB)
- dmraid support re-added (use dmraid kernel parameter on boot)
- Updated versions of all software
Download (465MB)
Added: 2005-09-01 License: GPL (GNU General Public License) Price:
1513 downloads
Pinky-Tagger 0.3.0
Pinky-Tagger project is for editing and mass tagging music file tags. more>>
Pinky-Tagger project is for editing and mass tagging music file tags. Pinkytagger uses the Musicbrainz service to find tags automatically. To do so, Pinkytagger generates fingerprints (TRM-Hashes) of your files and compares them with the data from a Musicbrainz server.
As an extra feature, Pinkytagger can tag complete albums, even if some fingerprints from your files are unknown to the Musicbrainz server. For that, Pinkytagger uses several algorithms like fault-tolerant string comparison, length comparison and so on.
As another benefit, Pinkytagger can find and download album covers if you wish. Pinkytagger has of cause the ability to mass rename and tag your files like you know from other tag programs.
<<lessAs an extra feature, Pinkytagger can tag complete albums, even if some fingerprints from your files are unknown to the Musicbrainz server. For that, Pinkytagger uses several algorithms like fault-tolerant string comparison, length comparison and so on.
As another benefit, Pinkytagger can find and download album covers if you wish. Pinkytagger has of cause the ability to mass rename and tag your files like you know from other tag programs.
Download (0.40MB)
Added: 2006-03-27 License: GPL (GNU General Public License) Price:
1308 downloads
File Service Protocol 2.8.1b24
File Service Protocol is a UDP-based file transfer protocol which is excellent for bad lines. more>>
FSP stands for File Service Protocol. It is a very lightweight UDP based protocol for transferring files.
FSP has many benefits over FTP, mainly for running anonymous archives. FSP protocol is valuable in all kinds of environments because it is one of the only TCP/IP protocols that is not aggressive about bandwidth, while still being sufficiently fault tolerant.
FSP is what anonymous FTP *should* be.
FSP: reliable and bandwidth friendly way to access publicly available data. Some people calls it UDP FTP.
Enhancements:
- use getopt from stdio.h instead of getopt.h in fspscan.c
- fspscan now compiles on AIX and other OS without glibc (hoaxter)
- !! fixed fatal bug from b23. Server sends large packets to clients if
- client request has not prefered reply size inside. This confuses all old fsp clients.
- common/strdup.c removed
- bsd_src/function.c bcopy -> memmove
- removed STDC_HEADER checks, drop support for pre-ANSI compilers started work on alternate SCons based build system
- fspd: use urandom, not random -> avoid hangs on Lin suck 2.6
- build system converted to SCons
- !! fixed directory listing bug in client library introduced in beta23
- improvements to security of FSP clients
- seq. numbers are now randomized
- seed random number generator in fsp clients
- check cmd in received packets
- check pos in received packets
<<lessFSP has many benefits over FTP, mainly for running anonymous archives. FSP protocol is valuable in all kinds of environments because it is one of the only TCP/IP protocols that is not aggressive about bandwidth, while still being sufficiently fault tolerant.
FSP is what anonymous FTP *should* be.
FSP: reliable and bandwidth friendly way to access publicly available data. Some people calls it UDP FTP.
Enhancements:
- use getopt from stdio.h instead of getopt.h in fspscan.c
- fspscan now compiles on AIX and other OS without glibc (hoaxter)
- !! fixed fatal bug from b23. Server sends large packets to clients if
- client request has not prefered reply size inside. This confuses all old fsp clients.
- common/strdup.c removed
- bsd_src/function.c bcopy -> memmove
- removed STDC_HEADER checks, drop support for pre-ANSI compilers started work on alternate SCons based build system
- fspd: use urandom, not random -> avoid hangs on Lin suck 2.6
- build system converted to SCons
- !! fixed directory listing bug in client library introduced in beta23
- improvements to security of FSP clients
- seq. numbers are now randomized
- seed random number generator in fsp clients
- check cmd in received packets
- check pos in received packets
Download (0.33MB)
Added: 2005-04-26 License: MIT/X Consortium License Price:
1642 downloads
JDraw 1.1.5
JDraw is a pixel oriented graphics editor designed especially for small to medium-sized pictures used to decorate web pages. more>>
JDraw is a pixel oriented graphics editor designed especially for small to medium-sized pictures used to decorate web pages.
JDraw image editor is completely written in Java, simple to use and saves (animated) GIFs, ICOs and PNGs.
I started writing this tool because it took me ages to do little things like changing a couple of pixels, making a colour transparent, adjusting some RGB values. Most graphic tools irritate with hundreds of sexy filters but have steep learning curves or just dont care about simple pixels.
So its high time for a good old pixel editor.
Programming language: JDraw is entirely written in Java. Originally written for JDK 1.4 it now supports JDK 1.3 as well.
Supported Platforms: So far I developed and tested JDraw under Windows XP and SuSe Linux 8.1.
Main features:
- plain, filled and gradient filled rectangles
- plain, filled and gradient filled ovals
- plain and gradient filled text
- colour picking, cropping, filling
- image scaling (since v1.2beta)
- image rotation (since v1.2.1beta)
- copying/moving clips
- rotating/flipping clips (since v1.2.2beta)
- save animated GIFs (interlaced/not interlaced)
- save PNGs (interlaced/not interlaced)
- save ICOs (true colour, 32 bit) (since v1.1.3)
- save JPEGs of configurable quality (since v1.1.4)
- read all image formats supported by Java
- colour reduction, colour replacing, colour swapping
- grayscaling (since v1.2.2beta)
- image browser (since v1.3beta)
- tolerant fill tool (since v1.3beta)
- palette operations like editing RGB colours, alpha values
- configuration of the Look&Feel to use (since v.1.1.3)
<<lessJDraw image editor is completely written in Java, simple to use and saves (animated) GIFs, ICOs and PNGs.
I started writing this tool because it took me ages to do little things like changing a couple of pixels, making a colour transparent, adjusting some RGB values. Most graphic tools irritate with hundreds of sexy filters but have steep learning curves or just dont care about simple pixels.
So its high time for a good old pixel editor.
Programming language: JDraw is entirely written in Java. Originally written for JDK 1.4 it now supports JDK 1.3 as well.
Supported Platforms: So far I developed and tested JDraw under Windows XP and SuSe Linux 8.1.
Main features:
- plain, filled and gradient filled rectangles
- plain, filled and gradient filled ovals
- plain and gradient filled text
- colour picking, cropping, filling
- image scaling (since v1.2beta)
- image rotation (since v1.2.1beta)
- copying/moving clips
- rotating/flipping clips (since v1.2.2beta)
- save animated GIFs (interlaced/not interlaced)
- save PNGs (interlaced/not interlaced)
- save ICOs (true colour, 32 bit) (since v1.1.3)
- save JPEGs of configurable quality (since v1.1.4)
- read all image formats supported by Java
- colour reduction, colour replacing, colour swapping
- grayscaling (since v1.2.2beta)
- image browser (since v1.3beta)
- tolerant fill tool (since v1.3beta)
- palette operations like editing RGB colours, alpha values
- configuration of the Look&Feel to use (since v.1.1.3)
Download (0.65MB)
Added: 2006-05-03 License: GPL (GNU General Public License) Price:
1271 downloads
Bio::Root::Object 1.4
Bio::Root::Object is a core Perl 5 object. more>>
Bio::Root::Object is a core Perl 5 object.
SYNOPSIS
# Use this module as the root of your inheritance tree.
Object Creation
require Bio::Root::Object;
$dad = new Bio::Root::Object();
$son = new Bio::Root::Object(-name => Junior,
-parent => $dad,
-make => full);
See the new() method for a complete description of parameters. See also the USAGE section .
Bio::Root::Object attempts to encapsulate the "core" Perl5 object: What are the key data and behaviors ALL (or at least most) Perl5 objects should have?
Rationale
Use of Bio::Root::Object.pm within the Bioperl framework facilitates operational consistency across the different modules defined within the Bio:: namespace. Not all objects need to derive from Bio::Root::Object.pm. However, when generating lots of different types of potentially complex objects which should all conform to a set of basic expectations, this module may be handy.
At the very least, this module saves you from re-writing the new() method for each module you develop. It also permits consistent and robust handling of -tag => value method arguments via the Bio::Root::RootI::_rearrange() method and provides a object-oriented way handle exceptions and warnings via the Bio::Root::Root::throw() and Bio::Root::Root::warn() methods.
See the APPENDIX section for some other handy methods.
Fault-Tolerant Objects
A major motivation for this module was to promote the creation of robust, fault-tolerant Perl5 objects. The Bio::Root::Root::throw() method relies on Perls built-in eval{}/die exception mechanism to generate fatal exceptions. The data comprising an exception is managed by the Bio::Root::Err.pm module, which essentially allows the data thrown by a die() event to be wrapped into an object that can be easily examined and possibly re-thrown.
The intent here is three-fold:
1 Detailed error reporting.
Allow objects to report detailed information about the error condition (who, what, where, why, how).
2 Handle complex errors in objects.
The goal is to make it relatively painless to detect and handle the wide variety of errors possible with a complex Perl object. Perls error handling mechanism is a might clunky when it comes to handling complex errors within complex objects, but it is improving.
3 Efficient & easy exception handling.
To enable robust exception handling without incurring a significant performance penalty in the resulting code. Ideally, exception handling code should be transparent to the cpu until and unless an exception arises.
These goals may at times be at odds and we are not claiming to have achieved the perfect balance. Ultimately, we want self- sufficient object-oriented systems able to deal with their own errors. This area should improve as the module, and Perl, evolve. One possible modification might be to utilize Graham Barrs Error.pm module or Torsten Ekedahls Experimental::Exception.pm module (see "Other Exception Modules").
Technologies such as these may eventually be incorporated into future releases of Perl. The exception handling used by Bio::Root::Object.pm can be expected to change as Perls exception handling mechanism evolves.
TERMINOLOGY NOTE: In this discussion and elsewhere in this module, the terms "Exception" and "Error" are used interchangeably to mean "something unexpected occurred" either as a result of incorrect user input or faulty internal processing.
<<lessSYNOPSIS
# Use this module as the root of your inheritance tree.
Object Creation
require Bio::Root::Object;
$dad = new Bio::Root::Object();
$son = new Bio::Root::Object(-name => Junior,
-parent => $dad,
-make => full);
See the new() method for a complete description of parameters. See also the USAGE section .
Bio::Root::Object attempts to encapsulate the "core" Perl5 object: What are the key data and behaviors ALL (or at least most) Perl5 objects should have?
Rationale
Use of Bio::Root::Object.pm within the Bioperl framework facilitates operational consistency across the different modules defined within the Bio:: namespace. Not all objects need to derive from Bio::Root::Object.pm. However, when generating lots of different types of potentially complex objects which should all conform to a set of basic expectations, this module may be handy.
At the very least, this module saves you from re-writing the new() method for each module you develop. It also permits consistent and robust handling of -tag => value method arguments via the Bio::Root::RootI::_rearrange() method and provides a object-oriented way handle exceptions and warnings via the Bio::Root::Root::throw() and Bio::Root::Root::warn() methods.
See the APPENDIX section for some other handy methods.
Fault-Tolerant Objects
A major motivation for this module was to promote the creation of robust, fault-tolerant Perl5 objects. The Bio::Root::Root::throw() method relies on Perls built-in eval{}/die exception mechanism to generate fatal exceptions. The data comprising an exception is managed by the Bio::Root::Err.pm module, which essentially allows the data thrown by a die() event to be wrapped into an object that can be easily examined and possibly re-thrown.
The intent here is three-fold:
1 Detailed error reporting.
Allow objects to report detailed information about the error condition (who, what, where, why, how).
2 Handle complex errors in objects.
The goal is to make it relatively painless to detect and handle the wide variety of errors possible with a complex Perl object. Perls error handling mechanism is a might clunky when it comes to handling complex errors within complex objects, but it is improving.
3 Efficient & easy exception handling.
To enable robust exception handling without incurring a significant performance penalty in the resulting code. Ideally, exception handling code should be transparent to the cpu until and unless an exception arises.
These goals may at times be at odds and we are not claiming to have achieved the perfect balance. Ultimately, we want self- sufficient object-oriented systems able to deal with their own errors. This area should improve as the module, and Perl, evolve. One possible modification might be to utilize Graham Barrs Error.pm module or Torsten Ekedahls Experimental::Exception.pm module (see "Other Exception Modules").
Technologies such as these may eventually be incorporated into future releases of Perl. The exception handling used by Bio::Root::Object.pm can be expected to change as Perls exception handling mechanism evolves.
TERMINOLOGY NOTE: In this discussion and elsewhere in this module, the terms "Exception" and "Error" are used interchangeably to mean "something unexpected occurred" either as a result of incorrect user input or faulty internal processing.
Download (4.7MB)
Added: 2006-06-16 License: Perl Artistic License Price:
1225 downloads
Trustix Enterprise Firewall 4.7
Trustix Enterprise Firewall represents a revolution within firewall management software. more>>
Trustix Enterprise Firewall represents a revolution within firewall management software. Trustix Enterprise Firewall is the worlds first WYSIWYG Enterprise Firewall, making it easy-to-use and easy-to-deploy. By utilizing the WYSIWYG GUI, your Enterprise Firewall will be out of the box and implemented in an unbeatable 25 minutes- and without the need for a dedicated systems administrator!
A fully-featured packet-filtering router, Trustix Enterprise Firewall has advanced capabilities including an intuitive graphical user interface (GUI) for visualizing and editing firewall policy.
This unique GUI enables you to manage traffic for all your zones (up to 24) as well as port forwarding, network address translation (NAT) and virtual private network (VPN) configurations.
Packet-filtering enables Enterprise Firewall to act as a router to accelerate data transmission. Meaning no more bottle necks due to time consuming proxies.
IP-address sharing by masquerading or NAT.
The underlying rules generated by the program are then fully optimized before being deployed- thereby optimizing the security and performance of your firewalls architecture, and avoiding errors and duplications.
Trustix Enterprise Firewall uses the IPsec protocol to encrypt data transmitted over the net- extending the security of your network to all arms of your business. Communications between your office and home users are protected using 168-bit 3DES encryption- triple the encryption, triple the security! Enables remote, secure configuration of multiple firewalls from one Windows or Linux desktop.
Trustix Enterprise Firewall Blockades and repel malicious attacks from hackers, Trojans, worms and infected files.
Main features:
- Visualise DMZs - drag and drop security policy deployment
- Integrate branch offices with 3DES encrypted VPN tunnels
- Accelerate internet access times with proxy caching server
- Authenticate remote workers with PKI X.509 certificates
- Ensure high availability with fault tolerant automatic failover
<<lessA fully-featured packet-filtering router, Trustix Enterprise Firewall has advanced capabilities including an intuitive graphical user interface (GUI) for visualizing and editing firewall policy.
This unique GUI enables you to manage traffic for all your zones (up to 24) as well as port forwarding, network address translation (NAT) and virtual private network (VPN) configurations.
Packet-filtering enables Enterprise Firewall to act as a router to accelerate data transmission. Meaning no more bottle necks due to time consuming proxies.
IP-address sharing by masquerading or NAT.
The underlying rules generated by the program are then fully optimized before being deployed- thereby optimizing the security and performance of your firewalls architecture, and avoiding errors and duplications.
Trustix Enterprise Firewall uses the IPsec protocol to encrypt data transmitted over the net- extending the security of your network to all arms of your business. Communications between your office and home users are protected using 168-bit 3DES encryption- triple the encryption, triple the security! Enables remote, secure configuration of multiple firewalls from one Windows or Linux desktop.
Trustix Enterprise Firewall Blockades and repel malicious attacks from hackers, Trojans, worms and infected files.
Main features:
- Visualise DMZs - drag and drop security policy deployment
- Integrate branch offices with 3DES encrypted VPN tunnels
- Accelerate internet access times with proxy caching server
- Authenticate remote workers with PKI X.509 certificates
- Ensure high availability with fault tolerant automatic failover
Download (485MB)
Added: 2006-04-19 License: GPL (GNU General Public License) Price:
1290 downloads
iBATIS 2.3.0
iBATIS provides flexible means of moving data between your Java and .NET objects and a relationaldatabase. more>>
iBATIS project provides a very simple and flexible means of moving data between your Java and .NET objects and a relationaldatabase. Use the full power of real SQL without a single line of JDBC or ADO.NET code!
The Data Mapper framework (a.k.a. SQL Maps) will help to significantly reduce the amount of Java and .NET code that is normally neededto access a relational database. This framework maps classes to SQL statements using a very simple XML descriptor. Simplicity is the biggest advantage of iBATIS over other frameworks and object relational mapping tools.
To use iBATIS you need only be familiar with your own application domain objects (basic JavaBeans or .NET classes), XML, and SQL. There is very little else to learn. There is no complex scheme required to join tables or execute complex queries. Using iBATIS you have the full power of real SQL at your fingertips. The iBATIS Data Mapper framework can map nearly any database to any object model and is very tolerant of legacy designs, or even bad designs. This is all achieved without special database tables, peer objects or code generation.
iBATIS Data Access Objects
iBATIS Data Access Objects is an abstraction layer that hides the details of your persistence solution and provides a common API to therest of your application.
When developing robust Java and .NET applications, it is often a good idea to isolate the specifics of your persistence implementationbehind a common API. Data Access Objects allow you to create simple components that provide access to your data withoutrevealing the specifics of the implementation to the rest of your application.
Using DAOs you can allow your application tobe dynamically configured to use different persistence mechanisms. If you have a complex application with a number of differentdatabases and persistence approaches involved, DAOs can help you create a consistent API for the rest of your application.
For Java users, the Data Access Objects framework is bundled as part of the iBATIS Database Layer, which includes the SQL Maps Framework. Although packaged together, the DAO Framework is completely independent and can be used without SQL Maps. .NET users can download the DataAccess framework seperately from the DataMapper framework.
<<lessThe Data Mapper framework (a.k.a. SQL Maps) will help to significantly reduce the amount of Java and .NET code that is normally neededto access a relational database. This framework maps classes to SQL statements using a very simple XML descriptor. Simplicity is the biggest advantage of iBATIS over other frameworks and object relational mapping tools.
To use iBATIS you need only be familiar with your own application domain objects (basic JavaBeans or .NET classes), XML, and SQL. There is very little else to learn. There is no complex scheme required to join tables or execute complex queries. Using iBATIS you have the full power of real SQL at your fingertips. The iBATIS Data Mapper framework can map nearly any database to any object model and is very tolerant of legacy designs, or even bad designs. This is all achieved without special database tables, peer objects or code generation.
iBATIS Data Access Objects
iBATIS Data Access Objects is an abstraction layer that hides the details of your persistence solution and provides a common API to therest of your application.
When developing robust Java and .NET applications, it is often a good idea to isolate the specifics of your persistence implementationbehind a common API. Data Access Objects allow you to create simple components that provide access to your data withoutrevealing the specifics of the implementation to the rest of your application.
Using DAOs you can allow your application tobe dynamically configured to use different persistence mechanisms. If you have a complex application with a number of differentdatabases and persistence approaches involved, DAOs can help you create a consistent API for the rest of your application.
For Java users, the Data Access Objects framework is bundled as part of the iBATIS Database Layer, which includes the SQL Maps Framework. Although packaged together, the DAO Framework is completely independent and can be used without SQL Maps. .NET users can download the DataAccess framework seperately from the DataMapper framework.
Download (2.6MB)
Added: 2007-01-10 License: The Apache License 2.0 Price:
1025 downloads
reTune 0.3.0
reTune is a very useful tool for all iPod users who, for some reason, are not happy about iTunes. more>>
reTune is a very useful tool for all iPod users who, for some reason, are not happy about iTunes and want to manage their music files for themselves.
With reTune, you can copy music to the iPod with Explorer, Finder, Konqueror, Nautilus or any other file manager you like (yes, cp will work, too ;) and have it played back by the iPod with (almost) no hassles.
The only thing you have to do is start this litte program just after plugging the iPod into your USB port and before unplugging it.
Please note that reTune is in an early development stage and may or may not work for you. You should always create a backup of the /iPod_Control/iTunes directory before trying reTune.
Moreover, I wont take any responsibility or liability for any damage caused by the use of reTune. Until now, I could only test with my own iPod nano.
How it works
reTune scans the whole iPod volume for playable files, retrieving metadata (e.g. ID3 tags) from these files, and moving them to a location where the iPod can find them. The collected metadata and file names are then written to an iTunesDB file, which the iPod requires for proper blayback.
This process is called freezing. reTune keeps track of the original filenames of the files added to the database. Thus, it is possible to unfreeze the song database, i.e. move the music files back to the location where they came from (all inside the iPods filesystem, of course).
Main features:
- multiplatform (written in Python)
- support for MP3 sound files
- support for Ogg Vorbis files (will be automatically transcoded into MP3 using OggDec and LAME)
- reads metadata (title, artist, album, ...) from ID3v1, ID3v2 and Vorbis comment tags
- iPod shuffle support (although the iPod shuffle Database Builder is better suited for this model)
Enhancements:
- added playlist support -- two methods are availabe: the "master playlist file" in /retune_playlists.ini every *.m3u is collected and converted to a playlist, unless it exactly covers an album (in which case it would be pointless)
- MP3 detection code is now more error-tolerant (doesnt clip the file at the first broken frame any longer)
- added automatic inference of the compilation flag: if the album tag of all files in a directory is the same, but the artists differ, the whole directory will be marked as a compilation
- fixed crash when OggDec was not present
- added a filename allocator; should improve big (>10GB) iPod compatibility
- now guessing the track number from the file name even if there is an ID3v1.0 tag available
- when freezing, the cache file is now saved as early as possible to minimize data loss if reTune crashes at a later point (e.g. playlist processing)
<<lessWith reTune, you can copy music to the iPod with Explorer, Finder, Konqueror, Nautilus or any other file manager you like (yes, cp will work, too ;) and have it played back by the iPod with (almost) no hassles.
The only thing you have to do is start this litte program just after plugging the iPod into your USB port and before unplugging it.
Please note that reTune is in an early development stage and may or may not work for you. You should always create a backup of the /iPod_Control/iTunes directory before trying reTune.
Moreover, I wont take any responsibility or liability for any damage caused by the use of reTune. Until now, I could only test with my own iPod nano.
How it works
reTune scans the whole iPod volume for playable files, retrieving metadata (e.g. ID3 tags) from these files, and moving them to a location where the iPod can find them. The collected metadata and file names are then written to an iTunesDB file, which the iPod requires for proper blayback.
This process is called freezing. reTune keeps track of the original filenames of the files added to the database. Thus, it is possible to unfreeze the song database, i.e. move the music files back to the location where they came from (all inside the iPods filesystem, of course).
Main features:
- multiplatform (written in Python)
- support for MP3 sound files
- support for Ogg Vorbis files (will be automatically transcoded into MP3 using OggDec and LAME)
- reads metadata (title, artist, album, ...) from ID3v1, ID3v2 and Vorbis comment tags
- iPod shuffle support (although the iPod shuffle Database Builder is better suited for this model)
Enhancements:
- added playlist support -- two methods are availabe: the "master playlist file" in /retune_playlists.ini every *.m3u is collected and converted to a playlist, unless it exactly covers an album (in which case it would be pointless)
- MP3 detection code is now more error-tolerant (doesnt clip the file at the first broken frame any longer)
- added automatic inference of the compilation flag: if the album tag of all files in a directory is the same, but the artists differ, the whole directory will be marked as a compilation
- fixed crash when OggDec was not present
- added a filename allocator; should improve big (>10GB) iPod compatibility
- now guessing the track number from the file name even if there is an ID3v1.0 tag available
- when freezing, the cache file is now saved as early as possible to minimize data loss if reTune crashes at a later point (e.g. playlist processing)
Download (0.026MB)
Added: 2007-05-10 License: GPL (GNU General Public License) Price:
715 downloads
Simple persistence for Java 2.2.0
Simple persistence for Java is an object/relation mapping framework for Java. more>>
Simple persistence for Java is an object/relation mapping framework for Java. It is designed to be easy to use.
There are no XML files to write, no tables to create, no IDs to generate, and no primary keys to fiddle with; just point it to the database, check the API documentation for three basic methods, and code away.
Simple persistence for Java supports transactions, has its own simple query language (very similar to SQL), and can handle object references, lists, and maps.
You may ask: Why another O/R mapping library? Well.. Ive searched the net for a suitable O/R tool for a long time now, also tried a few in live projects, but each time, at the end of the project, I had always had a few thoughts to simplify the database interaction code. Ive started with EJB around 2000. Now, I think everyone who used EJBs also at least once wondered why saveing a friggin object requires a separate server installation, the extensive knowledge of a 200+ page documentation, generating 3 classes/interfaces per object, installing stubs, rmi, and other things I dont even want to know about. Lets just skip this chapter of my life directly to my last experience with an O/R library: pbeans. This library is generally good, I can recommend it for those, who want a stable O/R mapping tool, but it was not the one for me. I found a few points I couldnt get over:
- Save and insert should be one method. I usually dont care if an object is inserted or saved phisically, as long as its saved.
- It should handle Lists and Maps. Well, "Lists should be enough for everybody", but sometimes Maps are handy too. Lists are used very often, I think it should be handled automatically.
- The query code is too difficult, and at the same time does not offer enough features.
- The code you have to write wont be "pretty". It requires classes to be parameters, at least for queries, and I cant read the query itself.
- The Id handling is not transparent.
Enhancements:
- A major scalability feature has been added: the library is now capable of working in a distributed environment, such as load-balanced Web server clusters.
- All the library nodes connected to the same database will form a self-regulating, self-organizing, failure-tolerant network to manage exclusive resources (such as locks, etc).
- The documentation and site were updated accordingly.
<<lessThere are no XML files to write, no tables to create, no IDs to generate, and no primary keys to fiddle with; just point it to the database, check the API documentation for three basic methods, and code away.
Simple persistence for Java supports transactions, has its own simple query language (very similar to SQL), and can handle object references, lists, and maps.
You may ask: Why another O/R mapping library? Well.. Ive searched the net for a suitable O/R tool for a long time now, also tried a few in live projects, but each time, at the end of the project, I had always had a few thoughts to simplify the database interaction code. Ive started with EJB around 2000. Now, I think everyone who used EJBs also at least once wondered why saveing a friggin object requires a separate server installation, the extensive knowledge of a 200+ page documentation, generating 3 classes/interfaces per object, installing stubs, rmi, and other things I dont even want to know about. Lets just skip this chapter of my life directly to my last experience with an O/R library: pbeans. This library is generally good, I can recommend it for those, who want a stable O/R mapping tool, but it was not the one for me. I found a few points I couldnt get over:
- Save and insert should be one method. I usually dont care if an object is inserted or saved phisically, as long as its saved.
- It should handle Lists and Maps. Well, "Lists should be enough for everybody", but sometimes Maps are handy too. Lists are used very often, I think it should be handled automatically.
- The query code is too difficult, and at the same time does not offer enough features.
- The code you have to write wont be "pretty". It requires classes to be parameters, at least for queries, and I cant read the query itself.
- The Id handling is not transparent.
Enhancements:
- A major scalability feature has been added: the library is now capable of working in a distributed environment, such as load-balanced Web server clusters.
- All the library nodes connected to the same database will form a self-regulating, self-organizing, failure-tolerant network to manage exclusive resources (such as locks, etc).
- The documentation and site were updated accordingly.
Download (1.1MB)
Added: 2007-02-25 License: LGPL (GNU Lesser General Public License) Price:
971 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 tolerant 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