Main > Free Download Search >

Free bootstrap software for linux

bootstrap

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 41
objc-bootstrap 3.2.8

objc-bootstrap 3.2.8


objc-bootstrap software is a bootstrap for objc package. more>>
objc-bootstrap software is a bootstrap for objc package.

Objective-C Compiler Commands

Whats the file suffix for Objective-C source ?

Its .m for implementation files, and .h for header files. Objective-C compilers usually also accept .c as a suffix, but compile those files in plain C mode.

How do I compile .m files with the Stepstone compiler ?

objcc -c class.m
objcc -o class class.o

See http://www.stepstn.com for more information.

How do I compile .m files with the Apple compiler ?

cc -c class.m
cc -o class class.o

See http://www.apple.com for more information.

How do I compile .m files with the GNU C compiler ?

gcc -c class.m
gcc -o class class.o -lobjc -lpthread

See http://www.gnu.org for more information.

How do I compile .m files with the POC ?

objc -c class.m
objc -o class class.o

See http://metalab.unc.edu/pub/Linux/devel/lang/objc/ for more information.
<<less
Download (0.34MB)
Added: 2007-02-15 License: GPL (GNU General Public License) Price:
586 downloads
POMStrap 1.0.7

POMStrap 1.0.7


POMStrap is a little opensource (BSD License) application bootstrap designed to avoid the Java library dependency headache. more>>
POMStrap is a little opensource (BSD License) application bootstrap designed to avoid the Java library dependency/version headache. The more we use open-source Java components, the more we have to deal with the classical problem of dependency conflict.
Ive personally experienced this problem when using FOP and Batik simultaneously: FOP required a specific old version of Batik to work (and render vector images), and I needed to use the latest version of Batik for image rendering.
POMStrap allows you clean separation of concern within your application (for component oriented architecture), providing strict hierarchical classloader confinement.
POMStrap is able to load application dependency as they are declared in Maven 2 project file, and execute each dependency in its own classloader without inhering from its parent avoiding version conflict.
By using POMStrap you will be able to have an application dependency schema such as:
Application-1.0
+ DepA-1.0
+ DepB-1.0
+ DepA-2.0
And DepB-1.0 executing DepA-2.0 classes (and not DepA-1.0 as it would be without POMStrap).
POMStrap also work as an application bootstrap. POMStrap project just requires a pom file (Maven 2 project file) and a class/method to fetch all required dependencies and launch the application using a command line syntax such as:
java -jar pomstrap-1.0.jar groupId:artifact:version classname[:method] [method args]
for example:
java -jar pomstrap-1.0.jar pomstrap:testApp:1.0 com.prefetch.pomstrap.App:run
If no method is provided it will try to start the classical java static main method.
Be default POMStrap looks into you local repository (in you [home directory]/.m2/repository) but you can also specify another repository URL using system property:
"-Dmaven2.repository.url=[URL]"
You can use POMStrap via a Servlet with similar init-parameters configuration (see provided example sources).
A JBoss POMStrap Service is also available and allows you to lauch applications as JBoss Service (via .sar file deployed in a JBoss instance).
By the way, POMStrap can easily be embedded in your application with minimal impact (since it does not require any external library).
Enhancements:
- This release fixes a bug in the resource loader and remote repository definition.
- POMStrap has now been successfully used in a different production environment and this release can be considered as gold.
<<less
Download (0.016MB)
Added: 2007-05-08 License: BSD License Price:
900 downloads
rpmstrap 0.5.2

rpmstrap 0.5.2


rpmstrap is a tool for bootstrapping a basic RPM-based system. more>>
rpmstrap is a tool for bootstrapping a basic RPM-based system. rpmstrap package is inspired by debootstrap, and allows you to build chroots and basic systems from RPM sources.
At present rpmstrap can build basic Fedora Core 2, Fedora Core 3, Fedora Core 4, Yellowdog 4, CentOS 3, CentOS 4, Mandriva and Scientific Linux systems. It also has support for custom RPM-based systems managed by PDK.
The best way to answer this is to give a couple of quick examples of its usage:
- You are developing an application which you want to test on Fedora Core 3, but you are running Debian. Use rpmstrap to build a "heidelberg" chroot and you have a scratch Fedora Core 3 which you can test your application in.
- You are running Xen and wish to run a CentOS 4 virtual server, however you do not want to use the Anaconda installer. Use rpmstrap to bootstrap your virtual server.
- You have an application you wish to package cross-platform. You already have debootstrap for a Debian chroot, but you dont have any for Fedora Core 3 or CentOS 4. Use rpmstrap to build chroots for the two RPM distros in question and package your application inside them.
- You have a risky upgrade that could hose a production Fedora Core 2 server. You want to test the upgrade to make sure nothing will go wrong (and, if it does, you want to know how to fix it). Simply create a "tettnang" chroot using rpmstrap and configure it like your production Fedora Core 2 server. Perform your upgrade inside the chroot, using it as a guinea pig.
- You wish to install CentOS 4 across a network on a system you do not have physical access to but do have remote administrative access. SSH in, rpmstrap a CentOS 4 bootstrap into a mounted filesystem, set the new boot preferences, and reboot.
Usage:
Usage: rpmstrap [OPTION]... []
Bootstrap RPM-based systems.
--arch set the target architecture (use if no uname)
[ --arch x86_64 ]
--download-only download packages, but dont perform installation
--delay insert a friendly delay in seconds between each
attempt to download an RPM
[ --delay .5 ]
--local-source specify a local source directory for RPMS
[ --local-source /home/sam/rpm ]
--pdk-source=A,B specify a PDK workspace and component to pull RPMs
from
[ --pdk-source=workspace/path/,component.xml ]
--print-rpms print the packages to be installed, and exit
--unpack-tarball acquire .rpms from a tarball instead of http
--strip-path when unpacking from tarball, use the strip path
(See the texinfo document for tar)
--list-suites list the available suites this program knows
--suite-notes show the notes associated with a specific suite
--find-best-mirror find the best mirror (warning VERY slow, may be
better to just use a slow mirror ;-)
--try-mirrors instead of just using the default mirror, try
sequentially all of the mirrors in the event of
a failure
--force force installation of RPMs even if there are
errors
--ignorearch force installation of RPMs even if they are
for different architecture
--help display this help and exit
--include=A,B,C adds specified names to the list of base packages
--exclude=A,B,C removes specified packages from the list
--pre runs a script before the installation
[ --pre pre-install.sh ]
--post runs a script after the installation has completed
[ --post post-install.sh ]
--verbose run in verbose mode
Enhancements:
- This release updates the sl402, centos3, and centos4 suite scripts.
- It adds suite script migration utilities.
- It adds functionality for rpmstrap to act as an RPM upgrade utility.
<<less
Download (0.035MB)
Added: 2006-02-08 License: GPL (GNU General Public License) Price:
1354 downloads
Etherboot 5.4.3

Etherboot 5.4.3


Etherboot is a source code for making IP boot ROMs to boot Linux and other OSes. more>>
Etherboot project is a software package for creating ROM images that can download code over an Ethernet network to be executed on an x86 computer.
Many network adapters have a socket where a ROM chip can be installed. Etherboot is code that can be put in such a ROM. Etherboot is normally used for for booting PCs diskless. This is useful in various situations, for example:
- An X-terminal.
- Clusters of compute servers.
- Routers.
- Various kinds of remote servers, e.g. a tape drive server that can be accessed with the RMT protocol.
- Machines doing tasks in environments unfriendly to disks.
- A user platform where remote partitions are mounted over the network and you are willing to accept the lower speed compared to disk.
- Maintaining software for a cluster of equally configured workstations centrally.
Etherboot can boot computers faster than from a disk because there are no delays in spinning up disks, etc. A moments calculation will show that even with a 10Mbit Ethernet, sending a 500kB kernel will take only a couple of seconds typically. With 100Mbit Ethernet it gets even better.
Compared to booting from solid-state devices, e.g. Flash disks, Etherboot has the advantage of centralising software adminstration, the tradeoff being the dependence on a server. This can be partly alleviated by providing redundant servers.
Etherboot can work with RAM disks, NFS filesystems, or even local disks, if desired. Its a component technology and can be combined with other technologies to do things the way you want.
Etherboot is usually used to load Linux, FreeBSD or DOS. However the protocol and boot file formats are general, so there is no reason why it could not be used to load arbitrary images to a PC, including other OSes.
Etherboot is Open Source under the GNU General Public License Version 2 (GPL2).
The components needed by Etherboot are:
- A bootstrap loader, usually in an EPROM on a network card, or installed in the flash BIOS, but could be put anywhere in the address space the BIOS probes in. For testing this could be put on a floppy disk or a hard disk partition. Some configurations may even be always run from a floppy disk (e.g. temporary testing setups or pedagogic uses).
- A DHCP or bootp server, for returning an IP address and other information when sent a MAC (Ethernet card) address.
- A tftp server, for sending the kernel images and other files required in the boot process. Alternatively, Etherboot can boot from an NFS mount.
- A Linux or FreeBSD kernel.
- Optionally, a NFS server, for providing the disk partitions that will be mounted if Linux or FreeBSD is being booted.
- Optionally, a RAM disk contained in the loaded image. This can be the initial RAM disk if desired.
- Software tools for building the download image, and tools for debugging.
Enhancements:
- This production release should now compile with gcc 4.x.
- In addition, a number of drivers have been updated, including e1000, MCP51 and MCP55 (nvidia), pcnet32, natsemi, sis900, and tg3.
- NetXtreme II cards are now supported.
<<less
Download (1.1MB)
Added: 2007-02-25 License: GPL (GNU General Public License) Price:
993 downloads
gtk-sharp 2.10.1

gtk-sharp 2.10.1


Gtk# (gtk-sharp) is a .NET language binding for the GTK+ toolkit and assorted GNOME libraries. more>>
Gtk# (gtk-sharp) is a .NET language binding for the GTK+ toolkit and assorted GNOME libraries. Gtk# is free software, licensed under the GNU LGPL. The target is the 2.6 platform.

Building & Installing Gtk#:

./configure
make
make install

You may want to consider using configures prefix option to install Gtk# using the same prefix as Mono. That way all of your .NET assemblies get placed in the same place, and you dont need to do any extra "configuring" to make it so mono (and mint) can find your assemblies. In other words, doing something like:

./configure --prefix=/the/path/that/was/used/for/mono
make
make install

(Of course, replace "/the/path/that/was/used/for/mono" with whatever path which was used for Mono. This might have been "/usr", "/usr/local", or something similar.)

If you are compiling from SVN, you will need libtool and the auto* tools and will need to replace the configure above with bootstrap for the 2.5.x version or bootstrap-2.4 for the 1.9.x version.
<<less
Download (2.0MB)
Added: 2007-06-19 License: LGPL (GNU Lesser General Public License) Price:
520 downloads
nss_ldap 248

nss_ldap 248


nss_ldap is an RFC 2307-compliant set of C library extensions. more>>
nss_ldap is an RFC 2307-compliant set of C library extensions.
The resolution of the entities defined in RFC 2307 is generally performed by a set of UNIX C library calls (such as getpwnam() to return the attributes of a user).
The nss_ldap module provides the means for Solaris and Linux workstations to this information (such as users, hosts, and groups) from LDAP directories.
The module is the reference implementation of RFC 2307, and has been studied by vendors such as Sun (who developed the original Name Service Switch interface).
Main features:
- Support for the RFC 2307/RFC 2307bis (including netgroups) as well as user-defined schema
- Common implementation across platforms
- Support for Kerberos and SSL authentication, integrity and privacy
- Configuration file compatibility with pam_ldap
- Bootstraps from the DNS using SRV records
- Support for AIX, glibc, IRS and ONC+ name service switches
- Support for RFC 2307bis groups (including nested groups)
- Specific Active Directory support including incremental retrieval of multi-valued attributes
- Directory-based authentication for platforms that lack PAM (AIX 4.3.3)
<<less
Download (0.23MB)
Added: 2006-02-15 License: LGPL (GNU Lesser General Public License) Price:
1349 downloads
Xmldoom::doc::GettingStarted 0.015

Xmldoom::doc::GettingStarted 0.015


Xmldoom::doc::GettingStarted is a step-by-step tutorial to setting up Xmldoom. more>>
Xmldoom::doc::GettingStarted is a step-by-step tutorial to setting up Xmldoom.

In the end, you want to have a Perl package made up of custom objects which are backed by the database. You want these object to work straight-out of the box, with no concern to connecting to the database, our initializing Xmldoom --- just use your package, new() some objects, and away you go!

Unfortunately, some setup is required to get Xmldoom going in the first place. Here is an overview of this process:

You must write two XML files, conventionally named database.xml and objects.xml, which describe your database layout and define your objects respectively.

You must "bootstrap" Xmldoom in your code. This means that the first time anyone trys to use your Xmldoom-ized objects, Xmldoom will be initialized, loading the two XML files described above and registering a connection factory which will manage connections to your database.
You must create Perl modules that are bound to the objects described in your object definition (probably objects.xml). Here you can customize your objects with hooks into Xmldoom or by adding methods specific to your project domain.

I know this sounds like a lot, but really it isnt! The database.xml file can be automatically generated from your database (or your database can be generated from your database.xml file), this tutorial will provide you with a standard way to bootstrap Xmldoom, and the minimal Perl module required to use an Xmldoom object is only three lines long.

What that leaves you with is designing your applications objects, which is really what you wanted to spend your time doing anyone, right?

<<less
Download (0.097MB)
Added: 2006-09-09 License: Perl Artistic License Price:
1140 downloads
Statistics::Gap 0.10

Statistics::Gap 0.10


Statistics::Gap Perl module is an adaptation of the Gap Statistic. more>>
Statistics::Gap Perl module is an adaptation of the Gap Statistic.

SYNOPSIS

use Statistics::Gap;
$predictedk = &gap("prefix", "vec", INPUTMATRIX, "rbr", "h2", 30, 10, rep, 90, 4);

OR

use Statistics::Gap;
$predictedk = &gap("prefix", "vec", INPUTMATRIX, "rbr", "h2", 30, 10, rep, 90, 4, 7);

INPUTS

1. Prefix: The string that should be used to as a prefix while naming the intermediate files and the .dat files (plot files).
2. Space: Specifies the space in which the clustering should be performed. Valid parameter values: vec - vector space sim - similarity space
3. InputMatrix: Path to input matrix file. (More details about the input file-format below.)
4. ClusteringMethod: Specifies the clustering method to be used. (Learn more about this at: http://glaros.dtc.umn.edu/gkhome/cluto/cluto/overview)
Valid parameter values:
rb - Repeated Bisections
rbr - Repeated Bisections for by k-way refinement
direct - Direct k-way clustering
agglo - Agglomerative clustering
bagglo - Partitional biased Agglomerative clustering
NOTE: bagglo can be used only if space=vec
5. Crfun: Specifies the criterion function to be used for finding clustering solutions. (Learn more about this at: http://glaros.dtc.umn.edu/gkhome/cluto/cluto/overview)
Valid parameter values:
i1 - I1 Criterion function
i2 - I2 Criterion function
e1 - E1 Criterion function
h1 - H1 Criterion function
h2 - H2 Criterion function
6. K: This is an approximate upper bound for the number of clusters that may be present in the dataset.
7. B: The number of replicates/references to be generated.
8. TypeRef: Specifies whether to generate B replicates from a reference or to generate B references.
Valid parameter values:
rep - replicates
ref - references
9. Percentage: Specifies the percentage confidence to be reported in the log file. Since Statistics::Gap uses parametric bootstrap method for reference distribution generation, it is critical to understand the interval around the sample mean that could contain the population ("true") mean and with what certainty.
10. Precision: Specifies the precision to be used while generating the reference distribution.
11. Seed: The seed to be used with the random number generator. (This is an optional parameter. By default no seed is set.)

<<less
Download (2.5MB)
Added: 2007-05-23 License: Perl Artistic License Price:
884 downloads
netboot dhctp/tftp server 04-07-2007

netboot dhctp/tftp server 04-07-2007


netboot project allows you to easily bootstrap Ubuntu or Debian netinstaller. more>>
netboot project allows you to easily bootstrap Ubuntu or Debian netinstaller. Or assign address to network device like ILO to configure it. Very simple in use and need almost zero configuration. I always hated dhcpd and tftp-ha.

For looking who is asking for boot:

kef@flash:~$ sudo ./netboot
request 1 from 00-e0-91-02-9e-24 ()

If you are lucky it will show hostname in parens.

To boot it type:

kef@flash:~$ sudo ./netboot 192.168.0.255 192.168.0.1 192.168.0.55 00-e0-91-02-9e-24
mac pattern:00 e0 91 02 9e 24
request 1 from 00-e0-91-02-9e-24 ()
matched
request 3 from 00-e0-91-02-9e-24 ()
matched
rrq pxelinux.0
rrq pxelinux.0
end

192.168.0.255 is a broadcast address. (Bcast of ifconfig output)

192.168.0.1 is an address of this interface. (inet addr)

192.168.0.55 is an address offered to client.

00-e0-91-02-9e-24 is a mac address of client to bootstrap. You could type last few digits only and use any separator between them (except whitespace).

Bootfile is hardcoded to pxelinux.0. You could put any file under this name. It will use current directory for serving tftp requests.

Both dhcp and tftp implementations are simplified. For example, tftp can not serve more then one file at time. It has zero security, use it in safe environment only.
<<less
Download (0.008MB)
Added: 2007-07-09 License: GPL (GNU General Public License) Price:
848 downloads
fakechroot 2.6

fakechroot 2.6


fakechroot provides a fake chroot environment to programs. more>>
fakechroot project provides a fake chroot environment to programs. A fake chroot allows you to run programs which require root privileges on an unprivileged user account.
For example, you can create a Debian bootstrap or a development environment and build packages inside a chrooted system using a standard non-root user account.
You can then use the apt-get command to install other packages without root privileges.
Enhancements:
- This release includes a new environment variable FAKECHROOT_EXCLUDE_PATH and fixes for the getcwd(3), readlink(2), and mktemp(3) functions.
- The chroot(2) function is now recursive and allows nested chroots.
<<less
Download (0.019MB)
Added: 2007-05-06 License: LGPL (GNU Lesser General Public License) Price:
904 downloads
Apple Disk Transfer ProDOS 1.0.2

Apple Disk Transfer ProDOS 1.0.2


Apple Disk Transfer ProDOS transfers diskettes and logical disk images between Apple ][-era computers and the modern world. more>>
Apple Disk Transfer ProDOS (or ADTPro for short) transfers diskettes and logical disk images between Apple ][-era computers and the modern world. If youre familiar with the original ADT, ADTPro extends ADTs reach by working with more logical disk formats, drive types, communications devices, and host operating systems.
Main features:
- Compatibility with any device ProDOS can read
- Compatibility with any Apple ][ (or clone) computer with 64k memory
- Compatibility with many logical disk image formats: .DSK, .PO, .NIB, 2IMG
- Server compatibility with original ADT client program
- Server compatibility with Windows, Mac OSX, Linux, and probably Solaris
- Ability to bootstrap an Apple ][ from bare metal over serial or cassette ports
- Ability to send floppies in "batch" mode without having to name each one
Server
The server program runs on a computer capable of running Java. Depending on how you want to connect to your Apple, you might also need a serial port and cables, an Uthernet card for your apple, or a couple of audio patch cables. The server offers a compact user interface that shows what communications are taking place between the host and the Apple ][.
The servers primary role is to send and receive disk images as requested from the client. But if you have recently acquired an Apple and a disk drive, and you have no software for it - youre in a bit of a tricky situation if you want to move software from the Internet all the way to your shiny new Apple. ADTPros server can help get you get bootstrapped.
Client
The client side runs on the Apple ][. It handles most of the user interaction. When choosing disks/volumes to transfer, anything that ProDOS can see is fair game. Transferring data occurs with a 20k buffer on the Apple, so all transfers are broken up into 20k chunks. A progress indicator shows how far it is into the current chunk, as well as a running count of the total progress.
Enhancements:
- This release has been enhanced with Jean-Marc Boutillon (Deckard)s FASTDSK fast Disk II reading routines.
- This results in a speed boost of 25%-33% for Disk II to host transfers.
- Bootstrapping operations have been reduced, as there is no longer a dependency on ProDOS BASIC.
<<less
Download (MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
816 downloads
Desilico 0.5 Beta

Desilico 0.5 Beta


Desilico is a Debian SID based Live CD. more>>
Desilico is a Debian SID based Live CD. No X11, no graphics, only terminal for sysadmins.

Everything in desilico is as is in debian sid, but you can use it as a live cd, very useful for debootstraping or rescue tool. Autodiscovery Included.

Package List:

adduser 3.57 Add and remove users and groups
apache 1.3.31-2 Versatile, high-performance HTTP server
apache-common 1.3.31-2 Support files for all Apache webservers
apache-perl 1.3.31-2 Versatile, high-performance HTTP server with
apache-utils 1.3.31-2 Utility programs for webservers
apt 0.5.26 Advanced front-end for dpkg
apt-build 0.9.3 Frontend to apt to build, optimize and insta
apt-listbugs 0.0.40 Lists critical bugs before each apt installa
apt-src 0.25.1 manage Debian source packages
apt-utils 0.5.26 APT utility programs
aptitude 0.2.15.2-1 curses-based apt frontend
arj 3.10.21-1 archiver for .arj files
aspell 0.50.5-3 GNU Aspell spell-checker
aspell-bin 0.50.5-3 GNU Aspell standalone spell-check utilities
aspell-en 0.51-1-1 English dictionary for GNU Aspell
at 3.1.8-11 Delayed job execution and batch processing
autoconf 2.59-7 automatic configure script builder
automake1.4 1.4-p6-8 A tool for generating GNU Standards-complian
autotools-dev 20040312.1 Update infrastructure for config.{guess,sub}
axel 1.0a-1 A light download accelerator - Console versi
base-config 2.36 Debian base system configurator
base-files 3.0.16 Debian base system miscellaneous files
base-passwd 3.5.7 Debian base system master password and group
bash 2.05b-19 The GNU Bourne Again SHell
bc 1.06-15 The GNU bc arbitrary precision calculator la
bind9-host 9.2.3+9.2.4-rc Version of host bundled with BIND 9.X
binutils 2.14.90.0.7-8 The GNU assembler, linker and binary utiliti
bitchx 1.0-0c19.20030 Advanced Internet Relay Chat client
bootcd 2.41 run your system from cd without need for dis
bootcd-mkinitr 2.41 bootcd extension to create an initrd-image u
bsdgames 2.16-3 a collection of classic textual unix games
bsdmainutils 6.0.14 collection of more utilities from FreeBSD
bsdutils 2.12-7 Basic utilities from 4.4BSD-Lite
build-essentia 10 informational list of build-essential packag
busybox 0.60.5-2.1 Tiny utilities for small and embedded system
bzip2 1.0.2-1 A high-quality block-sorting file compressor
ca-certificate 20031007 Common CA Certificates PEM files
ccal 3.5-7 Colorised calendar utility
cdcd 0.6.5-4 command line or console based CD player
cdparanoia 3a9.8-11 An audio extraction tool for sampling CDs.
cdrecord 2.0+a30.pre1-1 command line CD writing tool
cl-asdf 1.84-1 Another System Definition Facility
cl-defsystem3 3.3i+cvs.2004. Make system for Common Lisp Packages
clamav 0.73-2 Antivirus scanner for Unix
clamav-base 0.73-2 Base package for clamav, an anti-virus utili
clamav-freshcl 0.73-2 Downloads clamav virus databases from the In
clamav-getfile 0.3-5 Update script for clamav
clamav-testfil 0.73-2 Use these files to test that your Antivirus
cmucl 18e-10 The CMUCL lisp compiler and development syst
common-lisp-co 3.91 This is a Common Lisp source and compiler ma
console-common 0.7.46 Basic infrastructure for text console config
console-data 2002.12.04dbs- Keymaps, fonts, charset maps, fallback table
console-tools 0.2.3dbs-53 Linux console and font utilities
coreutils 5.2.1-1 The GNU core utilities
cpio 2.5-1.1 GNU cpio -- a program to manage archives of
cpp 3.3.4-1 The GNU C preprocessor (cpp)
cpp-3.3 3.3.4-3 The GNU C preprocessor
cramfsprogs 1.1-6 Tools for CramFs (Compressed ROM File System
cron 3.0pl1-83 management of regular background processing
curl 7.12.0.is.7.11 Get a file from an HTTP, HTTPS, FTP or GOPHE
cursel 0.2.2-3 simple language to provide text application
curves 0.8.19 colorful console interface for CVS version c
cvs 1.12.9-2 Concurrent Versions System
cvs2svn 0.0.1173-1 Convert a cvs repository to a subversion rep
cvsgraph 1.4.0-3 Create a tree of revisions/branches from a C
dash 0.5.1-1 The Debian Almquist Shell
db4.2-util 4.2.52-16 Berkeley v4.2 Database Utilities
debconf 1.4.29 Debian configuration management system
debconf-i18n 1.4.29 full internationalization support for debcon
debconf-utils 1.4.29 debconf utilities
debhelper 4.2.15 helper programs for debian/rules
debianutils 2.8.4 Miscellaneous utilities specific to Debian
debootstrap 0.2.39.1 Bootstrap a basic Debian system
devscripts 2.7.95.1 Scripts to make the life of a Debian Package
dhcp-client 2.0pl5-19 DHCP Client
dictionaries-c 0.22.30 Common utilities for spelling dictionary too
diff 2.8.1-6 File comparison utilities
discover 2.0.4-5 hardware identification system
discover-data 2.2004.05.03-4 Data lists for Discover hardware detection s
dnstop 20040309-1 A console tool to analyze DNS traffic
dnsutils 9.2.3+9.2.4-rc Clients provided with BIND
dosfstools 2.10-1 Utilities to create and check MS-DOS FAT fil
dpkg 1.10.22 Package maintenance system for Debian
dpkg-dev 1.10.22 Package building tools for Debian
dpkg-ruby 0.3.0 ruby interface for dpkg
dselect 1.10.22 a user tool to manage Debian packages
e2fslibs 1.35-6 The EXT2 filesystem libraries
e2fsprogs 1.35-6 The EXT2 file system utilities and libraries
ed 0.2-20 The classic unix line editor
elmo 1.3.0-1 text-based mail-reader supporting SMTP and P
emacsen-common 1.4.15 Common facilities for all emacsen.
enscript 1.6.4-4 Converts ASCII text to Postscript, HTML, RTF
esound-common 0.2.29-1 Enlightened Sound Daemon - Common files
ethereal-commo 0.10.5-3 Network traffic analyser (common files)
ethstatus 0.4.2-2 Console-based ethernet statistics monitor
ettercap 0.7.0-1 Multipurpose sniffer/interceptor/logger for
ettercap-commo 0.7.0-1 Common support files and plugins for etterca
rc exim 3.36-11 An MTA (Mail Transport Agent)
exuberant-ctag 5.5.4-1 build tag file indexes of source code defini
fakeroot 1.0.5 Gives a fake root environment
fdclone 2.04a-1 A console-base lightweight file manager
fdutils 5.4-20040228-1 Linux floppy utilities
festival 1.4.3-13 general multi-lingual speech synthesis syste
festlex-cmu 1.4.0-6 CMU dictionary for Festival
festlex-poslex 1.4.0-5 Part of speech lexicons and ngram from Engli
festvox-kallpc 1.4.0-5 American English male speaker for festival,
fetchmail 6.2.5-9 SSL enabled POP3, APOP, IMAP mail gatherer/f
figlet 2.2.1-1 Frank, Ian & Glenns Letters
file 4.09-1 Determines file type using "magic" numbers
fileutils 5.2.1-1 The GNU file management utilities (transitio
findutils 4.1.20-4 utilities for finding files--find, xargs, an
fp-compiler 1.0.10-1.2 Free Pascal Compiler
fp-units-rtl 1.0.10-1.2 Free Pascal Runtime Library
fp-utils 1.0.10-1.2 Free Pascal Utils
fping 2.4b2-to-ipv6- sends ICMP ECHO_REQUEST packets to network h
fsh 1.2-1.1 Fast remote command execution over rsh/ssh/l
g++ 3.3.4-1 The GNU C++ compiler
g++-3.3 3.3.4-3 The GNU C++ compiler
gcc 3.3.4-1 The GNU C compiler
gcc-3.3 3.3.4-3 The GNU C compiler
gcc-3.3-base 3.3.4-3 The GNU Compiler Collection (base package)
gdb 6.1-3 The GNU Debugger
gettext 0.14.1-2 GNU Internationalization utilities
gettext-base 0.14.1-2 GNU Internationalization utilities for the b
gnupg 1.2.4-4 GNU privacy guard - a free PGP replacement
gpm 1.19.6-12.1 General Purpose Mouse Interface
grep 2.5.1.ds1-2 GNU grep, egrep and fgrep
groff-base 1.18.1.1-1 GNU troff text-formatting system (base syste
gzip 1.3.5-8 The GNU compression utility
hostap-modules 2.4.26-1-386+0 Host AP driver for Intersil Prism2/2.5/3 (ke
hostap-utils 0.1.3-1 Utility programs for Host AP driver for Inte
hostapd 0.1.3-1 IEEE 802.11 AP and IEEE 802.1X Authenticator
hostname 2.13 A utility to set/show the host name or domai
html2text 1.3.2a-1 An advanced HTML to text converter
hwdata 0.120-1 hardware identification / configuration data
ifupdown 0.6.4-4.8 High level tools to configure network interf
ilisp 5.12.0+cvs.200 Emacs interface to LISP implementations
imcom 1.33-1 A console jabber client
info 4.7-2 Standalone GNU Info documentation browser
initrd-tools 0.1.71 tools to create initrd image for prepackaged
initscripts 2.85-22 Standard scripts needed for booting and shut
intltool-debia 0.30+20040212 Help i18n of RFC822 compliant config files
ipchains 1.3.10-15 Network firewalling for Linux 2.2.x
ipmenu 0.0.3-6 A cursel iptables/iproute2 GUI
iproute 20010824-13.1 Professional tools to control the networking
ipsc 0.4.3-2 IP Subnet Calculator for console
iptables 1.2.9-10 Linux kernel 2.4+ iptables administration to
iptraf 2.7.0-5 Interactive Colorful IP LAN Monitor
irssi-scripts 20040708 collection of scripts for irssi
irssi-text 0.8.9-1 text-mode version of the irssi IRC client
iF kernel-image-2 2.4.25-3 Linux kernel image for version 2.4.25 on 386
rc kernel-image-2 2.4.26-2 Linux kernel image for version 2.4.26 on 386
rc kernel-image-2 2.6.6-1 Linux kernel image for version 2.6.6 on 386.
kernel-source- 2.6.6-2 Linux kernel source for version 2.6.6 with D
klogd 1.4.1-14 Kernel Logging Daemon
kudzu 1.1.67-1 The Red Hat Linux hardware probing tool.
less 382-1 Pager program similar to more
lftp 3.0.5-1 Sophisticated command-line FTP/HTTP client p
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
libapache-mod- 1.29.0.2-9 Integration of perl with the Apache web serv
libappconfig-p 1.52-8 Perl module for configuration file and comma
libapr0 2.0.50-5 The Apache Portable Runtime
libapt-pkg-per 0.1.12 Perl interface to libapt-pkg
libaspell15 0.50.5-3 The GNU Aspell spell-checker runtime toolkit
libatm1 2.4.1-15 shared library for ATM (Asynchronous Transfe
libattr1 2.4.16-1 Extended attribute shared library
libaudiofile0 0.2.6-4 Open-source version of SGIs audiofile libra
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-13 GNU C Library: Shared libraries and Timezone
libc6-dev 2.3.2.ds1-13 GNU C Library: Development Libraries and Hea
libcap1 1.10-14 support for getting/setting POSIX.1e capabil
libcdaudio0 0.99.9-2 library for controlling a CD-ROM when playin
libcdparanoia0 3a9.8-11 Shared libraries for cdparanoia (runtime lib
libclamav1 0.73-2 Virus scanner library
libcomerr2 1.35-6 The Common Error Description library
libconfig-inif 2.38-2 A module for reading .ini-style configuratio
libconsole 0.2.3dbs-53 Shared libraries for Linux console and font
libcupsys2-gnu 1.1.20final+rc Common UNIX Printing System(tm) - libs
libcurl2 7.12.0.is.7.11 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-9 The Berkeley database routines (run-time fil
libdb3 3.2.9-20 Berkeley v3 Database Libraries [runtime]
libdb3-util 3.2.9-20 Berkeley v3 Database Utilities
libdb4.1 4.1.25-17 Berkeley v4.1 Database Libraries [runtime]
libdb4.2 4.2.52-16 Berkeley v4.2 Database Libraries [runtime]
libdbd-mysql-p 2.9003-2 A Perl5 database interface to the MySQL data
libdbi-perl 1.42-3 The Perl5 Database Interface by Tim Bunce
libdevel-symdu 2.03-3 Perl module for inspecting perls symbol tab
libdevmapper1. 1.00.19-2 The Linux Kernel Device Mapper userspace lib
libdiscover2 2.0.4-5 hardware identification library
libdns11 9.2.3+9.2.4-rc DNS Shared Library used by BIND
libdpkg-ruby1. 0.3.0 modules/classes for dpkg on ruby 1.8
libesd0 0.2.29-1 Enlightened Sound Daemon - Shared libraries
libestools1.2c 1.2.3-7 Edinburgh Speech Tools Library
libexpat1 1.95.6-8 XML parsing C library - runtime library
libflac4 1.1.0-11 Free Lossless Audio Codec - runtime C librar
libfreetype6 2.1.7-2.1 FreeType 2 font engine, shared library files
libgc1 6.3-1 Conservative garbage collector for C and C++
libgcc1 3.3.4-3 GCC support library
libgcrypt1 1.1.12-7 LGPL Crypto library - runtime library
libgcrypt7 1.1.90-8 LGPL Crypto library - runtime library
libgd2-noxpm 2.0.23-2 GD Graphics Library version 2 (without XPM s
libgdbm3 1.8.3-2 GNU dbm database routines (runtime version)
libglib2.0-0 2.4.2-1 The GLib library of C routines
libgmp3 4.1.3-1 Multiprecision arithmetic library
libgnutls10 1.0.4-3 GNU TLS library - runtime library
libgnutls7 0.8.12-5 GNU TLS library - runtime library
libgpg-error0 0.7-3 library for common error values and messages
libgpgme11 0.9.0-1 GPGME - GnuPG Made Easy
libgpmg1 1.19.6-12.1 General Purpose Mouse Library [libc6]
libhtml-parser 3.36-1 A collection of modules that parse HTML text
libhtml-tagset 3.03-2 Data tables pertaining to HTML
libhtml-tree-p 3.18-1 represent and create HTML syntax trees
libid3tag0 0.15.1b-1 ID3 tag reading library from the MAD project
libident 0.22-2.2 simple RFC1413 client library - runtime
libidn11 0.4.1-1 GNU libidn library, implementation of IETF I
libintl-gettex 0.11-5 Gettext wrapper for Ruby
libintl-gettex 0.11-5 Gettext wrapper for Ruby 1.8
libisc7 9.2.3+9.2.4-rc ISC Shared Library used by BIND
libiw27 26+27pre22-1 Wireless tools - library
libjpeg62 6b-9 The Independent JPEG Groups JPEG runtime li
libkeynote0 2.3-10 Decentralized Trust-Management system, share
libkrb53 1.3.3-2 MIT Kerberos runtime libraries
libldap2 2.1.30-2 OpenLDAP libraries
liblocale-gett 1.01-17 Using libc functions for internationalizatio
liblockfile1 1.06 NFS-safe locking library, includes dotlockfi
libltdl3 1.5.6-2 A system independent dlopen wrapper for GNU
liblwres1 9.2.3+9.2.4-rc Lightweight Resolver Library used by BIND
liblzo1 1.08-1 A real-time data compression library
libmad0 0.15.1b-1 MPEG audio decoder library
libmagic1 4.09-1 File type determination library using "magic
libmm13 1.3.0-3 Shared memory library - runtime
libmysqlclient 3.23.56-2 LGPL-licensed client library for MySQL datab
libmysqlclient 4.0.20-3 mysql database client library
libnasl2 2.0.10a-1 Nessus Attack Scripting Language, shared lib
libncurses5 5.4-4 Shared libraries for terminal handling
libncursesw5 5.4-4 Shared libraries for terminal handling (wide
libneon24 0.24.6.dfsg-1 An HTTP and WebDAV client library
libnessus2 2.0.10a-1 Nessus shared libraries
libnet-daemon- 0.38-1 Perl module for building portable Perl daemo
libnet0 1.0.2a-5 library for the construction and handling of
libnet1 1.1.2.1-1 Library for the construction and handling of
libnewt0 0.50.17-9.6 Not Eriks Windowing Toolkit - text mode win
libnewt0.51 0.51.6-9 Not Eriks Windowing Toolkit - text mode win
libntfs5 1.9.0-1 Library that provides common NTFS access fun
libogg0 1.1.0-1 Ogg Bitstream Library
liboggflac1 1.1.0-11 Free Lossless Audio Codec - runtime C librar
libopencdk8 0.5.5-3 Open Crypto Development Kit (OpenCDK) (runti
libpam-modules 0.76-22 Pluggable Authentication Modules for PAM
libpam-runtime 0.76-22 Runtime support for the PAM library
libpam0g 0.76-22 Pluggable Authentication Modules library
libpaper1 1.1.14 Library for handling paper characteristics
libparted1.6-0 1.6.9-3.1 The GNU Parted disk partitioning shared libr
libpcap0 0.6.2-2 System interface for user-level packet captu
libpcap0.7 0.7.2-7 System interface for user-level packet captu
libpcap0.8 0.8.3-3 System interface for user-level packet captu
libpcre3 4.5-1.1 Perl 5 Compatible Regular Expression Library
libperl5.8 5.8.4-2 Shared Perl library.
libplrpc-perl 0.2017-1 Perl extensions for writing PlRPC servers an
libpng12-0 1.2.5.0-6 PNG library - runtime
libpopt0 1.7-4 lib for parsing cmdline parameters
libreadline4 4.3-11 GNU readline and history libraries, run-time
libreiserfs0.3 0.3.0.4-4 ReiserFS filesystem access and manipulation
libruby1.8 1.8.1-9 Libraries necessary to run the Ruby
libsasl2 2.1.18-4.1 Authentication abstraction library
libsasl7 1.5.28-6.1 Authentication abstraction library
libsensors3 2.8.7-1 Library to read temperature/voltage/fan sens
libsidplay1-c1 1.36.57-3 SID (MOS 6581) emulation library
libsigc++-1.2- 1.2.5-1 Type-safe Signal Framework for C++ - runtime
libsnmp-base 5.1.1-2 NET SNMP (Simple Network Management Protocol
libsnmp-sessio 1.03-1 Perl support for accessing SNMP-aware device
libsnmp5 5.1.1-2 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-4 SSL shared libraries
libstdc++2.10- 2.95.4-22 The GNU stdc++ library
libstdc++5 3.3.4-3 The GNU Standard C++ Library v3
libstdc++5-3.3 3.3.4-3 The GNU Standard C++ Library v3 (development
libsvn0 1.0.5-1 Shared libraries used by Subversion (aka. sv
libswig1.3.21 1.3.21-5 Runtime support libraries for swig generated
libtasn1-0 0.1.2-4 Manage ASN.1 structures (runtime)
libtasn1-2 0.2.7.0-2 Manage ASN.1 structures (runtime)
libterm-readke 2.21-1.3 A perl module for simple terminal control
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
libtextwrap1 0.1-1 text-wrapping library with i18n - runtime
libuclibc-dev 0.9.26-4 A small implementation of the C library
libuclibc0 0.9.26-4 A small implementation of the C library
liburi-perl 1.30-1 Manipulates and accesses URI strings
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
libwrap0 7.6.dbs-4 Wietse Venemas TCP wrappers library
libwww-perl 5.800-1 WWW client/server library for Perl (aka LWP)
libxml2 2.6.11-1 GNOME XML library
libzlib-ruby 0.6.0+ruby1.8- Extension library to use zlib from Ruby
libzlib-ruby1. 1.8.1-9 Extension library to use zlib from Ruby
lilo 22.5.9-5 LInux LOader - The Classic OS loader can loa
links 0.99-1.2 Character mode WWW browser
linux-kernel-h 2.5.999-test7- Linux Kernel Headers for development
linux-wlan-ng 0.2.0-15 utilities for wireless prism2 cards
iU linux-wlan-ng- 2.4.25-3+0.2.0 drivers for wireless prism2 cards
localepurge 0.0.65 Automagically removing unnecessary locale da
locales 2.3.2.ds1-13 GNU C Library: National Language (locale) da
login 4.0.3-29 System login tools
logrotate 3.7-2 Log rotation utility
lsof 4.71-1 List open files.
lynx 2.8.5-1 Text-mode WWW Browser
m4 1.4.1-1 a macro processing language
mailx 8.1.2-0.200405 A simple mail user agent
make 3.80-8 The GNU version of the "make" utility.
makedev 2.3.1-70 Creates device files in /dev
man-db 2.4.2-17 The on-line manual pager
manpages 1.67-1 Manual pages about using a GNU/Linux system
mawk 1.3.3-11 a pattern scanning and text processing langu
mbr 1.1.5-2 Master Boot Record for IBM-PC compatible com
mc 4.6.0-4.6.1-pr Midnight Commander - a powerful file manager
menu 2.1.15 Provides update-menus functions for some app
mime-support 3.27-1 MIME files mime.types & mailcap, and sup
mimedecode 1.9-2 Decodes transfer encoded text type mime mess
mkinitrd-cd 0.31 Creates an initrd image for booting from a l
mkisofs 2.0+a30.pre1-1 Creates ISO-9660 CD-ROM filesystem images
modconf 0.2.45.1 Device Driver Configuration
module-init-to 3.1-pre5-1 tools for managing Linux kernel modules
modutils 2.4.26-1 Linux module utilities
motor 3.2.4.1-1 C/C++/Java Integrated Development Environmen
motor-common 3.2.4.1-1 C/C++/Java Integrated Development Environmen
mount 2.12-7 Tools for mounting and manipulating filesyst
mp3blaster 3.2.0-5 Full-screen console mp3 and ogg vorbis playe
mp3c 0.27-7 MP3Creator - Creator for MP3/OGG-files
mpg321 0.2.10.3 A Free command-line mp3 player, compatible w
mrtg 2.10.13-1 Multi Router Traffic Grapher
mtools 3.9.9-2 Tools for manipulating MSDOS files
mutt 1.5.6-20040523 Text-based mailreader supporting MIME, GPG,
mysql-client 4.0.20-3 mysql database client binaries
mysql-common 4.0.20-3 mysql database common files (e.g. /etc/mysql
mysql-server 4.0.20-3 mysql database server binaries
mytop 1.2-1 top like query monitor for MySQL
nano 1.2.4-1 free Pico clone with some new features
nast 0.2.0-1 packet sniffer and a lan analyzer
ncurses-base 5.4-4 Descriptions of common terminal types
ncurses-bin 5.4-4 Terminal-related programs and man pages
nessus-plugins 2.0.10a-4 Nessus plugins
nessusd 2.0.10a-6 Remote network security auditor, the server
net-tools 1.60-10 The NET-3 networking toolkit
netbase 4.17 Basic TCP/IP networking system
netcat 1.10-23 TCP/IP swiss army knife
netkit-inetd 0.10-9 The Internet Superserver
netkit-ping 0.10-9 The ping utility from netkit
netris 0.52-1 A free, networked version of T*tris
ngrep 1.40.1-3 grep for network traffic
nload 0.6.0-2 A realtime console network usage monitor
nmap 3.55-1 The Network Mapper
nvi 1.79-21 4.4BSD re-implementation of vi
openssl 0.9.7d-4 Secure Socket Layer (SSL) binary and related
parted 1.6.9-3.1 The GNU Parted disk partition resizing progr
partimage 0.6.4-7 Linux/UNIX utility to save partitions in a c
passwd 4.0.3-29 Change and administer password and group dat
patch 2.5.9-1 Apply a diff file to an original
pbuilder 0.109 personal package builder for Debian packages
pciutils 2.1.11-13 Linux PCI Utilities (for 2.*.* kernels)
pcmcia-cs 3.2.5-7 PCMCIA Card Services for Linux
perl 5.8.4-2 Larry Walls Practical Extraction and Report
perl-base 5.8.4-2 The Pathologically Eclectic Rubbish Lister.
perl-modules 5.8.4-2 Core Perl modules.
php4 4.3.8-1 A server-side, HTML-embedded scripting langu
php4-cgi 4.3.8-1 A server-side, HTML-embedded scripting langu
php4-pear 4.3.8-1 PEAR - PHP Extension and Application Reposit
po-debconf 0.8.12 Manage translated Debconf templates files wi
postfix 2.1.4-1 A high-performance mail transport agent
ppp 2.4.2+20040428 Point-to-Point Protocol (PPP) daemon
pppconfig 2.3.3 A text menu based utility for configuring pp
pppoe 3.5-3 PPP over Ethernet driver
pppoeconf 1.0.3 configures PPPoE/ADSL connections
pppstatus 0.4.2-6 console-based PPP status monitor
procmail 3.22-9 Versatile e-mail processor
procps 3.2.1-2 The /proc file system utilities
progsreiserfs 0.3.0.4-4 Tools for manipulating ReiserFS filesystems
psmisc 21.5-1 Utilities that use the proc filesystem
python 2.3.4-1 An interactive high-level object-oriented la
python-egenix- 2.0.5-1 Date and time handling routines for Python [
python-mysqldb 0.9.2-0.4 A Python interface for MySQL
python2.3 2.3.4-5 An interactive high-level object-oriented la
python2.3-egen 2.0.5-1 Date and time handling routines for Python 2
python2.3-egen 2.0.5-1 A collection of new builtins for Python 2.3
python2.3-mysq 0.9.2-0.4 A Python interface for MySQL
python2.3-subv 1.0.5-1 Python modules for interfacing with Subversi
rcconf 1.8 Debian Runlevel configuration tool
rcs 5.7-13.2 The GNU Revision Control System
realpath 1.9.12 Return the canonicalized absolute pathname
reiser4progs 0.5.3-1 Administration utilities for the Reiser4 fil
reportbug 2.63 Reports bugs in the Debian distribution
ruby 1.8.1-8 An interpreter of object-oriented scripting
ruby1.8 1.8.1-9 Interpreter of object-oriented scripting lan
samba 3.0.4-5 a LanManager-like file and printer server fo
samba-common 3.0.4-5 Samba common files used by both the server a
sbcl 0.8.21+truly.0 A development environment for Common Lisp
screen 4.0.2-3 a terminal multiplexor with VT100/ANSI termi
sed 4.1.1-1 The GNU sed stream editor
setserial 2.17-36 Controls configuration of serial ports
sgml-base 1.25 SGML infrastructure and SGML catalog file su
shapecfg 2.2.12-0.7.3-1 Bandwidth limiter for virtual network interf
shellutils 5.2.1-1 The GNU shell programming utilities (transit
sipcalc 1.1.2-1 Advanced console-based ip subnet calculator
slang1 1.4.9dbs-3 The S-Lang programming library - runtime ver
slang1a-utf8 1.4.9dbs-3 The S-Lang programming library with utf8 sup
smbclient 3.0.4-5 a LanManager-like simple client for Unix
smbfs 3.0.4-5 mount and umount commands for the smbfs (for
snmp 5.1.1-2 NET SNMP (Simple Network Management Protocol
snort 2.1.2-2 Flexible Network Intrusion Detection System
snort-common 2.1.2-2 Flexible Network Intrusion Detection System
snort-rules-de 2.1.2-2 Flexible Network Intrusion Detection System
sntop 1.4.2-4 A curses-based utility that polls hosts to d
sox 12.17.4-8 A universal sound sample translator
spellutils 0.7-4 Utilities to spell-check selectively
ssh 3.8.1p1-5 Secure rlogin/rsh/rcp replacement (OpenSSH)
subversion 1.0.5-1 Advanced version control system (aka. svn)
subversion-too 1.0.5-1 Assorted tools related to Subversion (aka. s
sudo 1.6.7p5-1 Provide limited super user privileges to spe
svn-buildpacka 0.5.8 helper programs to maintain Debian packages
sysklogd 1.4.1-14 System Logging Daemon
syslinux 2.04-2 Bootloader for Linux/i386 using MS-DOS flopp
sysv-rc 2.85-22 Standard boot mechanism using symlinks in /e
sysvinit 2.85-22 System-V like init
tar 1.13.93-4 GNU tar
tasksel 2.06 Tool for selecting tasks for installation on
tcpd 7.6.dbs-4 Wietse Venemas TCP wrapper utilities
tcpdump 3.8.3-3 A powerful tool for network monitoring and d
telnet 0.17-24 The telnet client.
testdisk 5.2-6 Partition scanner and disk recovery tool
tethereal 0.10.5-3 Network traffic analyzer (console)
tetrinet-clien 0.11+CVS200310 Textmode client for tetrinet, a multiplayer
tetrinet-serve 0.11+CVS200310 Server for tetrinet, a multiplayer tetris-li
textutils 5.2.1-1 The GNU text file processing utilities (tran
tintin++ 1.86-2 Classic text-based MUD client
ucf 1.07 Update Configuration File: preserves user ch
uclibc-toolcha 0.9.26-4 A compiler wrapper for uClibc
unace 1.2b-2 extract, test and view .ace archives
unzoo 4.4-2 zoo archive extractor
urlview 0.9-11 Extracts URLs from text
util-linux 2.12-7 Miscellaneous system utilities
vcs-tree 0.2.1-2 Version Control System Tree Walker
viewcvs 0.9.2+cvs.1.0. Viewing CVS Repositories via HTTP
viewcvs-query 0.9.2+cvs.1.0. Viewing CVS (viewcvs-query.cgi)
vim 6.3-013+2 Vi IMproved - enhanced vi editor
vim-common 6.3-013+2 Vi IMproved - Common files
vorbis-tools 1.0.1-1 Several Ogg Vorbis Tools
w3m 0.5.1-1 WWW browsable pager with excellent tables/fr
wamerican 5-4 American English dictionary words for /usr/s
wavemon 0.4.0b-6 Wireless Device Monitoring Application
wenglish 5-4 American English dictionary words for /usr/s
wget 1.9.1-4 retrieves files from the web
whiptail 0.51.6-9 Displays user-friendly dialog boxes from she
wireless-tools 26+27pre22-1 Tools for manipulating Linux Wireless Extens
xml-core 0.09 XML infrastructure and XML catalog file supp
yafc 1.0-7.2 Yet Another FTP Client
zlib1g 1.2.1.1-5 compression library - runtime
<<less
Download (294.5MB)
Added: 2005-12-21 License: GPL (GNU General Public License) Price:
1405 downloads
Studs MVC Framework+ 0.9.7

Studs MVC Framework+ 0.9.7


Studs MVC Framework+ contains a port of Apaches Jakarta Struts to PHP. more>>
Studs MVC Framework+ contains a port of Apaches Jakarta Struts to PHP, though the libraries included in the rest of the project are much more vast.
In order to implement the Struts port, it was necessary to build a core, object-oriented API in the style of the JDK and the Jakarta Commons, a servlet container to handle HTTP requests and to invoke servlet classes, and finally, a parsing engine for JSP-style template pages.
In the end, the result is an environment which is very similar to that provided by a J2EE Web Container, only everything is implemented in PHP.
While it was possible to carry over many of the concepts, designs and mechanisms from J2EE, some limitations do exist due to the nature of the PHP programming language, such as the lack of checked exceptions (runtime only).
Horizon: An Object-Oriented Environment and API
Horizon bootstraps PHP, cloaking it with a core object layer and adding missing functionality, such as imports based on qualified classname, classloading, runtime exception handling, logging, reflection, iterator language constructs and common libraries, such as an XML Digester. Once horizon takes over, the whole nature of programming in PHP changes dramatically.
Stratus: An HTTP Servlet Container
Stratus brings the servlet model to PHP. The two core features are the web.xml parsing and the doService() method call. PHP hands off what it knows about the request to the Stratus HTTP processor and it dispatches the request to a servlet mapped to the URL pattern, paralleling the workflow of Java Servlets. One crucial aspect of Stratus is that it retains state from one page request to the next by use of PHPs serialization, despite claims that PHP is incapable of this task.
Phase: PHP Server Pages Engine
The most exciting part about this project is the JSP compatible parser and compilation engine. There are a horde of templating engines for PHP, but nothing has topped JSP custom tag libraries when it comes to flexibility, ease of use and integration with the business layer. Phase is a servlet which parses regular JSP syntax, with the exception of scriptlets, which are handled by the PHP parser. Phase also ships with a handful of JSTL-like core tab libraries for data manipulation and output, supporting a full implementation of EL.
Studs proves that PHP is a very capable object-oriented language and that it is possible to use best design practices despite limitations in the language. The runtime exception handling layer should be proof that anything is possible.
The reason I really like PHP is because the core functions are so rich that under the covers, PHP can do operations very efficiently, relying on interfaces to hide the implementation details.
Enhancements:
- Automatic reload of Studs configuration file if changed [Studs]
- improved handling of DTD validation for web.xml and struts-config.xml
- get_qualified_class() migrated to Clazz::getQualifiedName() and optimized [Horizon]
- umask() behaves consistently, globally setting the file create permissions [General]
- confirmed that the ternary operator works in EL and documented it [Phase]
- throw exception if web.xml cannot be read in the include path [Stratus]
- it is possible to eliminate index.php from URL and use mod_rewrite instead [Stratus]
- modified EL processing so that arrays can be referenced as foo.bar or foo[bar] so that cases where native arrays are used in place of HashMap will still comply with JSTL EL syntax [Phase]
- changed from Hashtable to HashMap across application [General]
- changes are detected in the Studs config files (struts-config.xml) and the ActionServlet is automatically reloaded if their timestamps have been modified [Studs]
- fixed bug in Assert that caused assertFalse() to fail [Horizon]
- reimplemented the phase string taglib [Phase]
- fixed token handling in form taglib so that now they are usable [Studs]
- redirect taglib can take url as body [Phase]
- enabled more flexibility in specifying configuration directories [General]
- halt with better message when servlet work directory is not writable [Stratus]
- enabled handling of multivalued paramaters in Studs [Studs]
- added HtmlCheckboxTag and HtmlPasswordTag [Studs]
- ActionForm generator [Studs]
<<less
Download (0.11MB)
Added: 2005-07-21 License: GPL (GNU General Public License) Price:
1556 downloads
Steel Bank Common Lisp 1.0.8

Steel Bank Common Lisp 1.0.8


Steel Bank Common Lisp is a common Lisp native compiler. more>>
Steel Bank Common Lisp is a development environment for Common Lisp, with excellent support for the ANSI standard: garbage collection, lexical closures, powerful macros, strong dynamic typing, incremental compilation, and the famous Common Lisp Object System (multimethods and all).

Steel Bank Common Lisp also includes many extensions, such as native threads, socket support, a statistical profiler, programmable streams, and more. These are all available through an integrated, interactive native compiler which feels like an interpreter.

SBCL is unique in being a multiplatform native compiler which bootstraps itself completely from source, using a C compiler and any other ANSI Common Lisp implementation.

Whats New in This Release:

* enhancement: experimental macro SB-EXT:COMPARE-AND-SWAP provides
atomic compare-and-swap operations on threaded platforms.
* enhancement: experimental function SB-EXT:RESTRICT-COMPILER-POLICY
allows assining a global minimum value to optimization qualities
(overriding proclamations and declarations).
* enhancement: closed over variables can be stack-allocated on x86
and x86-64.
* performance bug fix: GETHASH and (SETF GETHASH) are once again
non-consing.
* optimization: slot definition lookup is now O(1). This speeds up
eg. SLOT-VALUE and (SETF SLOT-VALUE) with variable slot names.
* optimization: STRING-TO-OCTETS is now up to 60% faster for UTF-8.
* optimization: ASSOC and MEMBER can now be open-coded for all
combinations of keyword arguments when second argument is constant
and SPEED >= SPACE. In other cases a specialized version is
selected.
* bug fix: using obsoleted structure instances with TYPEP and
generic functions now signals a sensible error.
* bug fix: threads waiting on GET-FOREGROUND can be interrupted.
(reported by Kristoffer Kvello)
* bug fix: backtrace construction is now more careful when making
lisp-objects from pointers on the stack, to avoid creating bogus
objects that can be seen by the GC.
* bug fix: defaulting of values in contexts expecting more than 7
variables now works on x86-64. (reported by Christopher Laux)
* bug fix: modifications to packages (INTERN, EXPORT, etc) are now
thread safe.
* bug fix: (SETF SYMBOL-PLIST) no longer allows assigning a non-list
as the property-list of a symbol.
* bug fix: DEFMETHOD forms with CALL-NEXT-METHOD in the method body,
in EVAL-WHEN forms with both :COMPILE-TOPLEVEL and :LOAD-TOPLEVEL
situations requested, are once again file-compileable. (reported
by Sascha Wilde)

<<less
Download (2.7MB)
Added: 2007-07-25 License: BSD License Price:
822 downloads
STklos 0.96

STklos 0.96


STklos is a scheme system. more>>
STklos is a free Scheme system supporting most of the languages features defined in R5RS. The aim of STklos implementation is to be fast as well as light.
The implementation is based on an ad-hoc Virtual Machine. STklos can also be compiled as a library and embedded in an application.
Main features:
- an efficient and powerful object system based on CLOS providing
- Multiple Inheritance,
- Generic Functions,
- Multi-methods
- an efficient MOP (Meta Object Protocol)
- a simple to use module system
- it implements the full tower of numbers defined in R5RS,
- easy connection to the GTK+ toolkit,
- a Perl compatible regular expressions thanks to the PCRE package,
- it implements properly tail recursive calls.
Enhancements:
- This release introduces a simple FFI (foreign function interface).
- Support for FreeBSD was improved.
- A bug which was triggered when using the -j option of make during bootstrap was fixed.
- Several problems with ScmPkg packages installation were fixed.
<<less
Download (3.4MB)
Added: 2007-07-02 License: GPL (GNU General Public License) Price:
845 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 3
  • 1
  • 2
  • 3