Main > Free Download Search >

Free vcs software for linux

vcs

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 17
VCS 0.14

VCS 0.14


VCS project is a Perl library for generic Version Control System access in Perl. more>>
VCS project is a Perl library for generic Version Control System access in Perl.

SYNOPSIS

use VCS;
$file = VCS::File->new($ARGV[0]);
print $file->url, ":n";
for $version ($file->versions) {
print $version->version,
was checked in by ,
$version->author,
"n";
}

VCS is an API for abstracting access to all version control systems from Perl code. This is achieved in a similar fashion to the DBI suite of modules. There are "container" classes, VCS::Dir, VCS::File, and VCS::Version, and "implementation" classes, such as VCS::Cvs::Dir, VCS::Cvs::File, and VCS::Cvs::Version, which are subclasses of their respective "container" classes.
The container classes are instantiated with URLs. There is a URL scheme for entities under version control. The format is as follows:

vcs://localhost/VCS::Cvs/fs/path/?query=1

The "query" part is ignored for now. The path must be an absolute path, meaningful to the given class. The class is an implementation class, such as VCS::Cvs.

The "container" classes work as follows: when the new method of a container class is called, it will parse the given URL, using the VCS->parse_url method. It will then call the new of the implementations appropriate container subclass, and return the result. For example,

VCS::Version->new(vcs://localhost/VCS::Cvs/fs/path/file/1.2);

will return a VCS::Cvs::Version.

An implementation class is recognised as follows: its name starts with VCS::, and require "VCS/Classname.pm" will load the appropriate implementation classes corresponding to the container classes.

VCS METHODS

VCS->parse_url

This returns a four-element list:

($hostname, $classname, $path, $query)

For example,

VCS->parse_url(vcs://localhost/VCS::Cvs/fs/path/file/1.2);

will return

(
localhost,
VCS::Cvs,
/fs/path/file/1.2,

)

This is mostly intended for use by the container classes, and its interface is subject to change.

VCS->class_load

This loads its given implementation class.

This is mostly intended for use by the container classes, and its interface is subject to change.

<<less
Download (0.021MB)
Added: 2007-05-07 License: Perl Artistic License Price:
901 downloads
VCS::PVCS 0.02

VCS::PVCS 0.02


VCS::PVCS is a Perl module with global configuration class for for VCS::PVCS::*. more>>
VCS::PVCS is a Perl module with global configuration class for for VCS::PVCS::*.

SYNOPSIS

use VCS::PVCS::Project; # preferred
$project = new VCS::PVCS::Project("ProjectName");

The VCS::PVCS class simply parses the PVCS global configuration files, including pvcsproj.pub and MASTER.CFG, found in PVCSPROJ. The resulting object is then included in the VCS::PVCS::Project object as its "CONFIG". The class members are used at various times in other subclasses, as needed.

NOTE: This module may require some configuration. If your scripts wont run, you may need to hardwire some of the global parameters, including $ISLVINI, $PVCSPROJ, $NFSMAP, $PVCS_BINDIR and possibly others. You should inspect the module before installing it, to verify the settings will work.

This module also exports several GLOBAL variables, which are used in various places throughout its children, and can be used in scripts which load the VCS::PVCS::Project class. These variables include, but may not always be limited to:

$PVCSERR

PVCSERR is set to the current value of $? after each command.

$PVCSDEBUG

PVCSDEBUG can be turned on to see copious (sometimes useful) debugging output as the module is configuring itself, and running.

$PVCSOUTPUT

PVCSOUTPUT is all of the output from the current method, when it executes a pvcs command. If the command was executed on a folder or project-wide basis, then PVCSOUTPUT contains ALL of the output for all archives.

$PVCSCURROUTPUT

PVCSCURROUTPUT is ONLY the output for the most recent command sent to the shell.

$PVCSSHOWMODE

PVCSSHOWMODE is turned on to see, and not execute, commands.

$PVCS_BINDIR

PVCS_BINDIR is set in the environment or in VCS::PVCS.pm to be the location of the PVCS binaries, get, put, vlog, vcs, vdiff, etc.

$PVCSMASTERCFG

PVCSMASTERCFG is the path to the master configuration file. This variable is not exported to the world through VCS::PVCS::Project, but only intended for internal use.

$PVCSCURRPROJCFG

PVCSCURRPROJCFG is the location of the current projects Config file. This variable is not exported to the world through VCS::PVCS::Project, but only intended for internal use.

$PVCSMULTIPLATFORM

PVCSMULTIPLATFORM tells the modules whether to make certain path translations when operating on something other than WIN. Turn this on if you are using PVCS in a multiplatform environment.

This variable is turned on automatically if an NFSMAP is found

$PVCSPROJ

PVCSPROJ is the base directory for all PVCS control files.

Ordinarily, this class wont be used directly. Rather, it is in the @ISA for VCS::PVCS::Project. When creating a new VCS::PVCS::Project object, this modules new() method is invoked automatically.

<<less
Download (0.026MB)
Added: 2007-05-04 License: Perl Artistic License Price:
905 downloads
VCShell 0.09

VCShell 0.09


VCShell is a command line interface for VCS::Lite::Repository. more>>
VCShell is a command line interface for VCS::Lite::Repository.

SYNOPSIS

B< add > element|repository [element|repository...]
B< remove > name [name...]
B< ci >|check_in name [name...]
B< co >|check_out parent_repository
B< commit >
B< update >
B< cd > repository
B< fetch > name@@gen [>outfile]
B< diff > file1[@@gen1] [file2[@@gen2]] [>outfile]

VCShell provides a command line interface to the VCS Lite Repository. This aims to be usable by non-Perl programmers, as it provides a wrapper to the functionality in the module.

COMMANDS

add

The add command adds something to a repository: an element or a repository. If the parameter given is a directory, it makes it a repository, otherwise an element. An empty file is created for the element if none exists.

remove

Remove breaks the association between a repository and something it contains. It does not delete any files.

ci

This command is used to check in changes to one or more elements and repositories. Each repository checked in is also recursively checked in.

clone

This makes a clone of one repository into another, and recursively for everything in it. The new repository contains a parent link which points at the original.

commit

If the repository is a clone of a parent repository, this propagates any changes to the parent. Note, a check in (ci) is needed on the parent, for this change to be applied.

update

This command is used to apply any changes that have happened to the parent. Three way merging occurs for any change that has happened in the mean time.

diff

This command outputs a udiff listing for two generations of an element, or for two different elements. The default generation used is the latest, and the default generation for the "from" file is the predecessor to the "to" generation if comparing the same element.

The output is in diff -u format.

<<less
Download (0.026MB)
Added: 2007-07-09 License: Perl Artistic License Price:
840 downloads
VCS Report 1.1.4

VCS Report 1.1.4


VCS Report is a free open source Java project to generate statistical reports from your VCS repository. more>>
VCS Report is a free open source Java project to generate statistical reports from your VCS repository. Versions Control System (VCS) helps to manage revisions of your source files.
You can run VCS Report on Microsoft Windows and Linux. VCS Report shows various information about your project files stored in the VCS. VCS Report can be used as a plugin for IntelliJ IDEA, Borland JBuilder, Eclipse, NetBeans.
Main features:
- CVS and Subversion (SVN) support
- Customizable filters
- History table
- Statistical charts
- HTML reports
- CSV (Comma delimited) reports
Enhancements:
- new: The time of a report was added to the status line
- bugfix: Bug with "Get report" button
<<less
Download (0.35MB)
Added: 2006-09-11 License: GPL (GNU General Public License) Price:
1141 downloads
VCS::CMSynergy 1.29

VCS::CMSynergy 1.29


VCS::CMSynergy is a Perl interface to Telelogic SYNERGY/CM (aka Continuus/CM). more>>
VCS::CMSynergy is a Perl interface to Telelogic SYNERGY/CM (aka Continuus/CM).

SYNOPSIS

use VCS::CMSynergy;

$ccm = VCS::CMSynergy->new(%attr);

($rc, $out, $err) = $ccm->ccm($ccm_command, @ccm_args);
($rc, $out, $err) = $ccm->any_ccm_command(@ccm_args);

$ary_ref = $ccm->query(@ccm_args);
$ary_ref = $ccm->query_arrayref($query, @keywords);
$ary_ref = $ccm->query_hashref($query, @keywords);
$ary_ref = $ccm->query_object($query, @keywords);

$ary_ref = $ccm->finduse(@args);
$path = $ccm->findpath($file_spec, $proj_vers);

$ary_ref = $ccm->history(@ccm_args);
$ary_ref = $ccm->history_arrayref($file_spec, @keywords);
$ary_ref = $ccm->history_hashref($file_spec, @keywords);

$ary_ref = $ccm->ls(@ccm_args);
$ary_ref = $ccm->ls_object($file_spec);
$ary_ref = $ccm->ls_arrayref($file_spec, @keywords);
$ary_ref = $ccm->ls_hashref($file_spec, @keywords);

$value = $ccm->get_attribute($attr_name, $file_spec);
$ccm->set_attribute($attr_name, $file_spec, $value);
$hash_ref = $ccm->list_attributes($file_spec);

$delim = $ccm->delimiter;
$database = $ccm->database;
$ENV{CCM_ADDR} = $ccm->ccm_addr;

This synopsis only lists the major methods.

Methods that dont need a CM Synergy session are described in VCS::CMSynergy::Client. In fact, VCS::CMSynergy is derived from VCS::CMSynergy::Client.

Methods for administering users and their roles are described in VCS::CMSynergy::Users.

<<less
Download (0.11MB)
Added: 2007-05-04 License: Perl Artistic License Price:
904 downloads
vcs-load-dirs 1.1.1

vcs-load-dirs 1.1.1


vcs-load-dirs is a tool to automate and simplify the loading of software into version control systems. more>>
vcs-load-dirs is a tool to automate and simplify the loading of software into version control systems. The project is designed primarily for importing from a non-version-controlled upstream, such as processing release tarballs.
While a bit of scripting can help some version control systems achieve a basic version of this, vcs-load-dirs often does better than that, especially concerning renames.
vcs-load-dirs is a Free Software project licensed under the GNU General Public License. You can download it for free, and you can modify it. In fact, you are encouraged to contribute to vcs-load-dirs, and doing so is fast and easy.
vcs-load-dirs is written in pure Python and has been known to work on various versions of Linux and BSD. It was written primarily in response to Subversions svn_load_dirs, which was tied to Subversions internals and not portable to other VCSs.
Main features:
- When a given import directory represents only adds or only deletes from the tree in version control, vcs-load-dirs automatically issues the needed add/delete commands to tell the VCS what happened.
- When an import directory represents both adds or deletes, vcs-load-dirs realizes that, rather than a bunch of discrete adds and deletes, there may be files that were renamed. It enters an interactive mode, showing deleted and added files, and lets you match them up if you believe any were renamed. You can optionally skip this step if you dont want your VCS to track the renames. vcs-load-dirs will inform your VCS about renames, adds, and deletes.
Enhancements:
- Support for Mercurial was added.
- Minor fixes were made.
- A new Web site was made.
<<less
Download (MB)
Added: 2007-03-05 License: GPL (GNU General Public License) Price:
965 downloads
VCS::CMSynergy::Changes 1.28

VCS::CMSynergy::Changes 1.28


VCS::CMSynergy::Changes is a list of changes to VCS::CMSynergy. more>>
VCS::CMSynergy::Changes is a list of changes to VCS::CMSynergy.

This module is a Perl interface to CM Synergy (formerly known as Continuus CM), a change and configuration management system from Telelogic AB (http://www.telelogic.com). It is implemented on top of the CM Synergy CLI, hence you must have the command client ("ccm")
installed to use it.

<<less
Download (0.10MB)
Added: 2006-10-14 License: Perl Artistic License Price:
1105 downloads
The Bazaar VCS 0.18 / 0.90.0 RC1

The Bazaar VCS 0.18 / 0.90.0 RC1


The Bazaar VCS is a simple decentralized revision control system. more>>
The Bazaar VCS is a simple decentralized revision control system. Decentralized revision control systems give users the ability to branch remote repositories to a local context.
Users can commit to local branches without requiring special permission from the branches that they branched from.
Whats New in 0.18 Stable Release:
- This release provides over 50 changes, including 15 bugfixes, 16 user-visible improvements, and over 20 enhancements to internals such as test suite enhancements, cleaner APIs, and much more developer documentation.
- Some of the highlights include better criss-cross merging, improved usability, and faster bundle, merge, missing, pull, update, and info operations.
Whats New in 0.90.0 RC1 Development Release:
- Some of the highlights include pyrex implementations of some performance critical functions, algorithm changes giving performance improvements to merging and merge directive generation, a send command that will make contributing changes back easier, and connection sharing to reduce the number of connections that must be made to a remote location in some situations.
- This release includes 10 bugfixes, 25 user visible improvements, and over 20 enhancements to the internals.
<<less
Download (1.5MB)
Added: 2007-08-16 License: GPL (GNU General Public License) Price:
799 downloads
VcsTools::DataSpec::HpTnd 1.004

VcsTools::DataSpec::HpTnd 1.004


VcsTools::DataSpec::HpTnd is a Hp Tnd custom data for HMS logs. more>>
VcsTools::DataSpec::HpTnd is a Hp Tnd custom data for HMS logs.

SYNOPSIS

use VcsTools::DataSpec::HpTnd qw($description readHook);
use VcsTools::LogParser ;

my $ds = new VcsTools::LogParser
(
readHook => &readHook,
description => $description
) ;

This class contains all the custom information needed to retrieve our data from our database using the generic VcsTools::LogParser class.

The $description hash ref defines the informations that are contained in the log of each version of the HMS file.
Needless to say this file is tailored for HP Tnd needs and HMS keywords. Nevertheless, it can be used as a template for other VCS systems and other needs.

<<less
Download (0.023MB)
Added: 2007-08-20 License: Perl Artistic License Price:
795 downloads
Qct 1.0

Qct 1.0


Qct is a GUI commit tool. more>>
Qct is a GUI commit tool.
Primary goals:
- Platform agnostic (Linux, Windows, MacOS, Cygwin)
- VCS agnostic
- Good keyboard navigation, keep the typical work-flow simple
Enhancements:
- Signed 32-bit return codes are now expected from Windows.
- A minor fix was made for compatibility with PyQt 4.0.
- A clear-filter button and shortcut Ctrl-F were added.
<<less
Download (0.050MB)
Added: 2007-04-10 License: GPL (GNU General Public License) Price:
927 downloads
Video Contact Sheet *NIX 1.0.9a

Video Contact Sheet *NIX 1.0.9a


Video Contact Sheet *NIX is a script that creates a contact sheet (preview) from videos by taking still captures of the video. more>>
Video Contact Sheet *NIX or vcs for short, is a script that creates a contact sheet (preview) from videos by taking still captures distributed over the length of the video.

The output image contains useful information on the video such as codecs, file size, screen size, frame rate, and length.

Notes:

Using -i or -n with values that lead to the same number of vidcaps doesnt necessarily yield exactly the same vidcaps, youll have to play with them for best results.

Example: With a video that lasts for 22min 14secs, -n 6 will create the six vidcaps:

3:22, 6:44, 10:04, 13:28, 16:50 and 20:12, while -i 3m will create
3:00, 6:00, 9:00, 12:00, 15:00 and 18:00.

As you can see, -n distributes the vidcaps all over the video while -i N starts at N and goes in increments of it up to the end.

You can set the aspect ratio of the video with -a. It is only required for anamorphic material and discouraged for the rest.

It can take either a floating point number (like 1.33 or 1.778) or a fraction (like 4/3 or 16/9). The latter is slightly preferable.

<<less
Download (0.014MB)
Added: 2007-06-12 License: LGPL (GNU Lesser General Public License) Price:
867 downloads
Stella 2.4

Stella 2.4


Stella is a multi-platform Atari 2600 VCS emulator released under the GNU General Public License (GPL). more>>
Stella is a multi-platform Atari 2600 VCS emulator.
Stella was originally developed for Linux by Bradford W. Mott, however, since its original release several people have joined the development team to port Stella to other operating systems such as AcornOS, AmigaOS, DOS, FreeBSD, IRIX, Linux, OS/2, MacOS, Unix, and Windows. The development team is working hard to perfect the emulator and we hope you enjoy our effort.
On this site youll find information about downloading, installing, using, and enhancing Stella. Youll also find useful information about the Atari 2600 and emulation.
Enhancements:
Added new video sub-system where fullscreen and windowed modes are treated
differently. Windowed modes now use -zoom_tia and -zoom_ui arguments,
while fullscreen modes can be specified by resolution using the new
-fullres argument.
- Widescreen video modes are now supported; Stella will simply center the
image with surrounding black borders.
- Many UI-related changes, including resizable ROM launcher and debugger
windows, and a new UI palette (the previous classic palette is still
available). This is still a work in progress.
- The locations of all major config files (statedir, palette file,
cheat file, properties file, etc) are now configurable from the
commandline and within the UI.
- Updates to TIA palette support. Added SECAM support, and removed the
built-in original palette. Standard, z26, and user are still
available.
- Various bugfixes to some debugger commands. The run command no
longer causes a crash, and several others have better error-checking.
- Added more complete cartridge auto-detection for Commavid (CV), 3E,
3F and Activision (FE) formats.
- Removed XStart and Width ROM properties, since the forthcoming TIA
rework wont be using them.
- Reworked internal storage of ROM properties to be faster and take up
less space.
- Added several different ways of stretching the OpenGL image to the
-gl_fsmax argument, for more flexibility.
- Removed OpenGL aspect ratio setting favour of the previously mentioned
video changes. Well see how this goes.
- Removed dirty-rect support from software rendering, since it was actually
sub-optimal in Windows and OSX and defaulted to off in previous versions.
- Added support for gzipped ROMs.
- Re-added pause support.
- Re-added support for Windows 98.
- Removed support for STELLA_BASEDIR environment variable, since each
config file can be now configured separately.
- Removed -fastscbios argument, since it must always be turned on.
- Removed PSP support, since it hasnt been updated in over a year, and
someone else is maintaining another port elsewhere.
- For the Unix/Linux port; fixed make install issues, and changed icon to
PNG format.
<<less
Download (0.95MB)
Added: 2007-01-18 License: GPL (GNU General Public License) Price:
1018 downloads
SKForum 1.5

SKForum 1.5


SKForum project is a forum application with a Wiki, comic system, guestbook, and address book. more>>
SKForum project is a forum application with a Wiki, comic system, guestbook, and address book.
SKForum is an open source (see licensing) web-based J2EE forum application. But its so much more, its a comic system, an addressbook, a wiki, a timetracking system, a todo list, a poll system, a guestbook system and a few other small nuts and bolts.
SKForum was first taken into use in september of 2000. By july of 2001 it had grown to 6 464 lines of code, and at october 2003 it is at 49 067 lines total. Of these 37 596 are java source file lines.
Internationalization
SKForum has i18n support and supports the following languages:
- English (US)
- Swedish (SE)
- French (FR)
Installation howto
1. Install mysql.
2. Create a database in mysql called "forum".
3. Install Java 2 SDK
4. Install a J2EE servlet container, I recommend Resin 2.x (it is also a webserver and can be integrated with IIS or Apache if you want)
5. Get the SKForum WAR file.
6. Make sure theres no caching done on the forum, resin for example has a default caching setting, remove the part of the config.
7. Install the forum as a toplevel app. It will currently not work unless "/" leads to its own top level.
8. Set up the data sources. If needed install the JDBC driver in the servlet container (get the mysql driver here).
Setup data source in Resin 2.x
Setup data source in Resin 3.x
Setup data source in Orion
9. This step only if you do not use Resin: If you use tomcat, remove web.xml and rename tomcat-web.xml to web.xml. Otherwise comment out the parts of web.xml that is marked "resin specific" that your server does not support.
10. Get the mysql jdbc driver and put it in your app servers lib directory.
11. Login with the username and password you want for the admin account. The first person who logs into the forum will get full rights and be set up as admin by default.
Enhancements:
- features:
- tasks system added
- description field for areas
- add/remove areas to/from hotlist inside the area
- invitation support for user groups
- planning warns for close events in the hotlist
- custom area type: quotes
- custom area type: pictures
- custom area type: links
- wiki URL rewriting for good wiki URLs
- editing and posting redirects instead of forwards, no more issues with reposting
- added login success/failure logging to database
- bugs:
- checkbox bug in IE fixed
- user addition delay fixed
- fixed address book VCS export for OS X
- planning info box at the bottom displayed at the top
- subscribe broken for comics
- shows deleted status for single-line messages in dynamic collapsing mode
- access rights to areas were ignored
- issue with hotlist resolved
- cant write in empty area
- editing of planning events sometimes fail
- sorting in archive is by unicode, not by character
- improvements:
- switched all maps and arrays to use fastutil
- zip download for archive give a good filename
<<less
Download (2.9MB)
Added: 2007-03-12 License: Public Domain Price:
957 downloads
PWC-Config 0.8

PWC-Config 0.8


PWC-Config is a graphical user interface for configuring all Web cameras supported by the PWC driver. more>>
PWC-Config is a graphical user interface for configuring all Web cameras supported by the PWC driver.

The following cameras are currently supported by this driver:

PCA645VC
PCA646VC
PCVC675K "Vesta"
PCVC680K "Vesta Pro"
PCVC690K "Vesta Scan"
PCVC720K/40 "ToUCam XS" (!)
PCVC730K "ToUCam Fun"
PCVC740K "ToUCam Pro"
PCVC750K "ToUCam Scan"
Askey VC010
Creative Labs Webcam 5
Creative Labs Webcam Pro Ex (soon)
Logitech QuickCam 3000 Pro
Logitech QuickCam 4000 Pro
Logitech QuickCam Notebook Pro
Logitech QuickCam Zoom
Samsung MPC-C10, MPC-C30
Sotec Afina Eye
Visionite VCS UM100, UC300

To install follow these steps:

First, as your normal user, type in the following:
./configure
make

Once that finishes, the program will be installed into the src directory.
Alternatively, by logging in as root you can install it into
/usr/local/bin/cam by typing:

make install
<<less
Download (0.077MB)
Added: 2006-06-22 License: GPL (GNU General Public License) Price:
711 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
Secleted [ 0 ] software to compare
  • Page: 1 of 2
  • 1
  • 2