timezone
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 45
DateTime::TimeZone::Tzfile 0.000
DateTime::TimeZone::Tzfile is a Perl module that contains tzfile (zoneinfo) timezone files. more>>
DateTime::TimeZone::Tzfile is a Perl module that contains tzfile (zoneinfo) timezone files.
SYNOPSIS
use DateTime::TimeZone::Tzfile;
$tz = DateTime::TimeZone::Tzfile->new("/etc/localtime");
if($tz->is_floating) { ...
if($tz->is_utc) { ...
if($tz->is_olson) { ...
$category = $tz->category;
$tz_string = $tz->name;
if($tz->has_dst_changes) { ...
if($tz->is_dst_for_datetime($dt)) { ...
$offset = $tz->offset_for_datetime($dt);
$abbrev = $tz->short_name_for_datetime($dt);
$offset = $tz->offset_for_local_datetime($dt);
An instance of this class represents a timezone that was encoded in a file in the tzfile(5) format. These can express arbitrary patterns of offsets from Universal Time, changing over time. Offsets and change times are limited to a resolution of one second.
This class implements the DateTime::TimeZone interface, so that its instances can be used with DateTime objects.
<<lessSYNOPSIS
use DateTime::TimeZone::Tzfile;
$tz = DateTime::TimeZone::Tzfile->new("/etc/localtime");
if($tz->is_floating) { ...
if($tz->is_utc) { ...
if($tz->is_olson) { ...
$category = $tz->category;
$tz_string = $tz->name;
if($tz->has_dst_changes) { ...
if($tz->is_dst_for_datetime($dt)) { ...
$offset = $tz->offset_for_datetime($dt);
$abbrev = $tz->short_name_for_datetime($dt);
$offset = $tz->offset_for_local_datetime($dt);
An instance of this class represents a timezone that was encoded in a file in the tzfile(5) format. These can express arbitrary patterns of offsets from Universal Time, changing over time. Offsets and change times are limited to a resolution of one second.
This class implements the DateTime::TimeZone interface, so that its instances can be used with DateTime objects.
Download (0.010MB)
Added: 2007-05-17 License: Perl Artistic License Price:
893 downloads
DateTime::TimeZone::SystemV 0.000
DateTime::TimeZone::SystemV is a Perl module with System V and POSIX timezone strings. more>>
DateTime::TimeZone::SystemV is a Perl module with System V and POSIX timezone strings.
SYNOPSIS
use DateTime::TimeZone::SystemV;
$tz = DateTime::TimeZone::SystemV->new("EST5EDT");
if($tz->is_floating) { ...
if($tz->is_utc) { ...
if($tz->is_olson) { ...
$category = $tz->category;
$tz_string = $tz->name;
if($tz->has_dst_changes) { ...
if($tz->is_dst_for_datetime($dt)) { ...
$offset = $tz->offset_for_datetime($dt);
$abbrev = $tz->short_name_for_datetime($dt);
$offset = $tz->offset_for_local_datetime($dt);
An instance of this class represents a timezone that was specified by means of a System V timezone string or the POSIX extended form of the same syntax. These can express a plain offset from Universal Time, or a system of two offsets (standard and daylight saving time) switching on a yearly cycle according to certain types of rule.
This class implements the DateTime::TimeZone interface, so that its instances can be used with DateTime objects.
<<lessSYNOPSIS
use DateTime::TimeZone::SystemV;
$tz = DateTime::TimeZone::SystemV->new("EST5EDT");
if($tz->is_floating) { ...
if($tz->is_utc) { ...
if($tz->is_olson) { ...
$category = $tz->category;
$tz_string = $tz->name;
if($tz->has_dst_changes) { ...
if($tz->is_dst_for_datetime($dt)) { ...
$offset = $tz->offset_for_datetime($dt);
$abbrev = $tz->short_name_for_datetime($dt);
$offset = $tz->offset_for_local_datetime($dt);
An instance of this class represents a timezone that was specified by means of a System V timezone string or the POSIX extended form of the same syntax. These can express a plain offset from Universal Time, or a system of two offsets (standard and daylight saving time) switching on a yearly cycle according to certain types of rule.
This class implements the DateTime::TimeZone interface, so that its instances can be used with DateTime objects.
Download (0.008MB)
Added: 2007-05-17 License: Perl Artistic License Price:
891 downloads
Data::ICal::Entry::TimeZone 0.12
Data::ICal::Entry::TimeZone is a Perl module to represents a time zone definition in an iCalendar file. more>>
Data::ICal::Entry::TimeZone is a Perl module to represents a time zone definition in an iCalendar file.
SYNOPSIS
my $vtimezone = Data::ICal::Entry::TimeZone->new();
$vtimezone->add_properties(
tzid => "US-Eastern",
tzurl => "http://zones.stds_r_us.net/tz/US-Eastern"
);
$vtimezone->add_entry($daylight); # daylight/ standard not yet implemented
$vtimezone->add_entry($standard); # :-(
$calendar->add_entry($vtimezone);
A Data::ICal::Entry::TimeZone object represents the declaration of a time zone in an iCalendar file. (Note that the iCalendar RFC refers to entries as "components".) It is a subclass of Data::ICal::Entry and accepts all of its methods.
This module is not yet useful, because every time zone declaration needs to contain at least one STANDARD or DAYLIGHT component, and these have not yet been implemented.
<<lessSYNOPSIS
my $vtimezone = Data::ICal::Entry::TimeZone->new();
$vtimezone->add_properties(
tzid => "US-Eastern",
tzurl => "http://zones.stds_r_us.net/tz/US-Eastern"
);
$vtimezone->add_entry($daylight); # daylight/ standard not yet implemented
$vtimezone->add_entry($standard); # :-(
$calendar->add_entry($vtimezone);
A Data::ICal::Entry::TimeZone object represents the declaration of a time zone in an iCalendar file. (Note that the iCalendar RFC refers to entries as "components".) It is a subclass of Data::ICal::Entry and accepts all of its methods.
This module is not yet useful, because every time zone declaration needs to contain at least one STANDARD or DAYLIGHT component, and these have not yet been implemented.
Download (0.10MB)
Added: 2007-01-15 License: Perl Artistic License Price:
1013 downloads
Time::Zone 1.16
Time::Zone is a miscellaneous timezone manipulations routines. more>>
Time::Zone is a miscellaneous timezone manipulations routines.
SYNOPSIS
use Time::Zone;
print tz2zone();
print tz2zone($ENV{TZ});
print tz2zone($ENV{TZ}, time());
print tz2zone($ENV{TZ}, undef, $isdst);
$offset = tz_local_offset();
$offset = tz_offset($TZ);
This is a collection of miscellaneous timezone manipulation routines.
tz2zone() parses the TZ environment variable and returns a timezone string suitable for inclusion in date-like output. It opionally takes a timezone string, a time, and a is-dst flag.
tz_local_offset() determins the offset from GMT time in seconds. It only does the calculation once.
tz_offset() determines the offset from GMT in seconds of a specified timezone.
tz_name() determines the name of the timezone based on its offset
<<lessSYNOPSIS
use Time::Zone;
print tz2zone();
print tz2zone($ENV{TZ});
print tz2zone($ENV{TZ}, time());
print tz2zone($ENV{TZ}, undef, $isdst);
$offset = tz_local_offset();
$offset = tz_offset($TZ);
This is a collection of miscellaneous timezone manipulation routines.
tz2zone() parses the TZ environment variable and returns a timezone string suitable for inclusion in date-like output. It opionally takes a timezone string, a time, and a is-dst flag.
tz_local_offset() determins the offset from GMT time in seconds. It only does the calculation once.
tz_offset() determines the offset from GMT in seconds of a specified timezone.
tz_name() determines the name of the timezone based on its offset
Download (0.022MB)
Added: 2006-06-29 License: Perl Artistic License Price:
1214 downloads
Time::Piece 1.11
Time::Piece is a Perl module that contains Object Oriented time objects. more>>
Time::Piece is a Perl module that contains Object Oriented time objects.
SYNOPSIS
use Time::Piece;
my $t = localtime;
print "Time is $tn";
print "Year is ", $t->year, "n";
This module replaces the standard localtime and gmtime functions with implementations that return objects. It does so in a backwards compatible manner, so that using localtime/gmtime in the way documented in perlfunc will still return what you expect.
The module actually implements most of an interface described by Larry Wall on the perl5-porters mailing list here: http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2000-01/msg00241.html
USAGE
After importing this module, when you use localtime or gmtime in a scalar context, rather than getting an ordinary scalar string representing the date and time, you get a Time::Piece object, whose stringification happens to produce the same effect as the localtime and gmtime functions. There is also a new() constructor provided, which is the same as localtime(), except when passed a Time::Piece object, in which case its a copy constructor. The following methods are available on the object:
$t->sec # also available as $t->second
$t->min # also available as $t->minute
$t->hour # 24 hour
$t->mday # also available as $t->day_of_month
$t->mon # 1 = January
$t->_mon # 0 = January
$t->monname # Feb
$t->month # same as $t->monname
$t->fullmonth # February
$t->year # based at 0 (year 0 AD is, of course 1 BC)
$t->_year # year minus 1900
$t->yy # 2 digit year
$t->wday # 1 = Sunday
$t->_wday # 0 = Sunday
$t->day_of_week # 0 = Sunday
$t->wdayname # Tue
$t->day # same as wdayname
$t->fullday # Tuesday
$t->yday # also available as $t->day_of_year, 0 = Jan 01
$t->isdst # also available as $t->daylight_savings
$t->hms # 12:34:56
$t->hms(".") # 12.34.56
$t->time # same as $t->hms
$t->ymd # 2000-02-29
$t->date # same as $t->ymd
$t->mdy # 02-29-2000
$t->mdy("/") # 02/29/2000
$t->dmy # 29-02-2000
$t->dmy(".") # 29.02.2000
$t->datetime # 2000-02-29T12:34:56 (ISO 8601)
$t->cdate # Tue Feb 29 12:34:56 2000
"$t" # same as $t->cdate
$t->epoch # seconds since the epoch
$t->tzoffset # timezone offset in a Time::Seconds object
$t->julian_day # number of days since Julian period began
$t->mjd # modified Julian date (JD-2400000.5 days)
$t->week # week number (ISO 8601)
$t->is_leap_year # true if it its
$t->month_last_day # 28-31
$t->time_separator($s) # set the default separator (default ":")
$t->date_separator($s) # set the default separator (default "-")
$t->day_list(@days) # set the default weekdays
$t->mon_list(@days) # set the default months
$t->strftime(FORMAT) # same as POSIX::strftime (without the overhead
# of the full POSIX extension)
$t->strftime() # "Tue, 29 Feb 2000 12:34:56 GMT"
Time::Piece->strptime(STRING, FORMAT)
# see strptime man page. Creates a new
# Time::Piece object
<<lessSYNOPSIS
use Time::Piece;
my $t = localtime;
print "Time is $tn";
print "Year is ", $t->year, "n";
This module replaces the standard localtime and gmtime functions with implementations that return objects. It does so in a backwards compatible manner, so that using localtime/gmtime in the way documented in perlfunc will still return what you expect.
The module actually implements most of an interface described by Larry Wall on the perl5-porters mailing list here: http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2000-01/msg00241.html
USAGE
After importing this module, when you use localtime or gmtime in a scalar context, rather than getting an ordinary scalar string representing the date and time, you get a Time::Piece object, whose stringification happens to produce the same effect as the localtime and gmtime functions. There is also a new() constructor provided, which is the same as localtime(), except when passed a Time::Piece object, in which case its a copy constructor. The following methods are available on the object:
$t->sec # also available as $t->second
$t->min # also available as $t->minute
$t->hour # 24 hour
$t->mday # also available as $t->day_of_month
$t->mon # 1 = January
$t->_mon # 0 = January
$t->monname # Feb
$t->month # same as $t->monname
$t->fullmonth # February
$t->year # based at 0 (year 0 AD is, of course 1 BC)
$t->_year # year minus 1900
$t->yy # 2 digit year
$t->wday # 1 = Sunday
$t->_wday # 0 = Sunday
$t->day_of_week # 0 = Sunday
$t->wdayname # Tue
$t->day # same as wdayname
$t->fullday # Tuesday
$t->yday # also available as $t->day_of_year, 0 = Jan 01
$t->isdst # also available as $t->daylight_savings
$t->hms # 12:34:56
$t->hms(".") # 12.34.56
$t->time # same as $t->hms
$t->ymd # 2000-02-29
$t->date # same as $t->ymd
$t->mdy # 02-29-2000
$t->mdy("/") # 02/29/2000
$t->dmy # 29-02-2000
$t->dmy(".") # 29.02.2000
$t->datetime # 2000-02-29T12:34:56 (ISO 8601)
$t->cdate # Tue Feb 29 12:34:56 2000
"$t" # same as $t->cdate
$t->epoch # seconds since the epoch
$t->tzoffset # timezone offset in a Time::Seconds object
$t->julian_day # number of days since Julian period began
$t->mjd # modified Julian date (JD-2400000.5 days)
$t->week # week number (ISO 8601)
$t->is_leap_year # true if it its
$t->month_last_day # 28-31
$t->time_separator($s) # set the default separator (default ":")
$t->date_separator($s) # set the default separator (default "-")
$t->day_list(@days) # set the default weekdays
$t->mon_list(@days) # set the default months
$t->strftime(FORMAT) # same as POSIX::strftime (without the overhead
# of the full POSIX extension)
$t->strftime() # "Tue, 29 Feb 2000 12:34:56 GMT"
Time::Piece->strptime(STRING, FORMAT)
# see strptime man page. Creates a new
# Time::Piece object
Download (0.020MB)
Added: 2007-08-21 License: Perl Artistic License Price:
795 downloads
PasTmon 0.10-1
PasTmon measure the transaction response times of your web and application servers. more>>
PasTmon project measure the transaction response times of your web and application servers. Perform continuous passive monitoring of network traffic.
Record historical data of measurements in a backend database and present via a PHP based web front-end.
PasTmon is a passive network traffic analyser that can measure user transaction response times of web, ftp, dns, irc, pop, mail, postgresql, and mysql database servers.
You can even define your own signature rules to monitor custom TCP based applications. PasTmon is a server administrators tool for measuring application performance and response times.
Installation:
The `configure shell script attempts to guess correct values for various system-dependent variables used during compilation.
It uses those values to create a `Makefile in each directory of the package. It may also create one or more `.h files containing system-dependent definitions.
Finally, it creates a shell script `config.status that you can run in the future to recreate the current configuration, a file `config.cache that saves the results of its tests to speed up
reconfiguring, and a file `config.log containing compiler output (useful mainly for debugging `configure).
If you need to do unusual things to compile the package, please try to figure out how `configure could check whether to do them, and mail diffs or instructions to the address given in the `README so they can be considered for the next release.
If at some point `config.cache contains results you dont want to keep, you may remove or edit it.
The file `configure.in is used to create `configure by a program called `autoconf. You only need `configure.in if you want to change it or regenerate `configure using a newer version of `autoconf.
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system.
If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute
`configure itself.
Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Optionally, type `make check to run any self-tests that come with the package.
4. Type `make install to install the programs and any data files and documentation.
5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean.
There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
Enhancements:
- This release fixes rule match ambiguity in the tcpsynack plugin, a bug caused by debug code in the tcpsynack plugin, and timezone issues with plots.
<<lessRecord historical data of measurements in a backend database and present via a PHP based web front-end.
PasTmon is a passive network traffic analyser that can measure user transaction response times of web, ftp, dns, irc, pop, mail, postgresql, and mysql database servers.
You can even define your own signature rules to monitor custom TCP based applications. PasTmon is a server administrators tool for measuring application performance and response times.
Installation:
The `configure shell script attempts to guess correct values for various system-dependent variables used during compilation.
It uses those values to create a `Makefile in each directory of the package. It may also create one or more `.h files containing system-dependent definitions.
Finally, it creates a shell script `config.status that you can run in the future to recreate the current configuration, a file `config.cache that saves the results of its tests to speed up
reconfiguring, and a file `config.log containing compiler output (useful mainly for debugging `configure).
If you need to do unusual things to compile the package, please try to figure out how `configure could check whether to do them, and mail diffs or instructions to the address given in the `README so they can be considered for the next release.
If at some point `config.cache contains results you dont want to keep, you may remove or edit it.
The file `configure.in is used to create `configure by a program called `autoconf. You only need `configure.in if you want to change it or regenerate `configure using a newer version of `autoconf.
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system.
If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute
`configure itself.
Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Optionally, type `make check to run any self-tests that come with the package.
4. Type `make install to install the programs and any data files and documentation.
5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean.
There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
Enhancements:
- This release fixes rule match ambiguity in the tcpsynack plugin, a bug caused by debug code in the tcpsynack plugin, and timezone issues with plots.
Download (1.1MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
1089 downloads
DateTime::Astro::Sunrise 0.01_01
DateTime::Astro::Sunrise is a Perl DateTime extension for computing the sunrise/sunset on a given day. more>>
DateTime::Astro::Sunrise is a Perl DateTime extension for computing the sunrise/sunset on a given day.
SYNOPSIS
use DateTime; use DateTime::Astro::Sunrise; ^
my $dt = DateTime->new( year => 2000,
month => 6,
day => 20,
);
my $sunrise = DateTime::Astro::Sunrise ->new(-118,33,undef,1);
my ($tmp_rise, $tmp_set) = $sunrise->sunrise($dt);
This module will return a DateTime Object for sunrise and sunset for a given day.
USAGE
my $sunrise = DateTime::Astro::Sunrise -new(longitutide,latatude,ALT,Iteration);>
inter is set to either 0 or 1. If set to 0 no Iteration will occur. If set to 1 Iteration will occur. Default is 0.
There are a number of sun altitides to chose from. The default is -0.833 because this is what most countries use. Feel free to specify it if you need to. Here is the list of values to specify altitude (ALT) with:
0 degrees
Center of Suns disk touches a mathematical horizon
-0.25 degrees
Suns upper limb touches a mathematical horizon
-0.583 degrees
Center of Suns disk touches the horizon; atmospheric refraction accounted for
-0.833 degrees
Suns supper limb touches the horizon; atmospheric refraction accounted for
-6 degrees
Civil twilight (one can no longer read outside without artificial illumination)
-12 degrees
Nautical twilight (navigation using a sea horizon no longer possible)
-15 degrees
Amateur astronomical twilight (the sky is dark enough for most astronomical observations)
-18 degrees
Astronomical twilight (the sky is completely dark)
Notes on Iteration
The orginal method only gives an approximate value of the Suns rise/set times. The error rarely exceeds one or two minutes, but at high latitudes, when the Midnight Sun soon will start or just has ended, the errors may be much larger. If you want higher accuracy, you must then use the iteration feature. This feature is new as of version 0.7. Here is what I have tried to accomplish with this.
a) Compute sunrise or sunset as always, with one exception: to convert LHA from degrees to hours, divide by 15.04107 instead of 15.0 (this accounts for the difference between the solar day and the sidereal day.
b) Re-do the computation but compute the Suns RA and Decl, and also GMST0, for the moment of sunrise or sunset last computed.
c) Iterate b) until the computed sunrise or sunset no longer changes significantly. Usually 2 iterations are enough, in rare cases 3 or 4 iterations may be needed.
($sunrise, $sunset) = $sunrise->($dt);
Returns two DateTime objects sunrise and sunset. Please note that the time zone for these objects is set to UTC. So dont forget to set your timezone!!
<<lessSYNOPSIS
use DateTime; use DateTime::Astro::Sunrise; ^
my $dt = DateTime->new( year => 2000,
month => 6,
day => 20,
);
my $sunrise = DateTime::Astro::Sunrise ->new(-118,33,undef,1);
my ($tmp_rise, $tmp_set) = $sunrise->sunrise($dt);
This module will return a DateTime Object for sunrise and sunset for a given day.
USAGE
my $sunrise = DateTime::Astro::Sunrise -new(longitutide,latatude,ALT,Iteration);>
inter is set to either 0 or 1. If set to 0 no Iteration will occur. If set to 1 Iteration will occur. Default is 0.
There are a number of sun altitides to chose from. The default is -0.833 because this is what most countries use. Feel free to specify it if you need to. Here is the list of values to specify altitude (ALT) with:
0 degrees
Center of Suns disk touches a mathematical horizon
-0.25 degrees
Suns upper limb touches a mathematical horizon
-0.583 degrees
Center of Suns disk touches the horizon; atmospheric refraction accounted for
-0.833 degrees
Suns supper limb touches the horizon; atmospheric refraction accounted for
-6 degrees
Civil twilight (one can no longer read outside without artificial illumination)
-12 degrees
Nautical twilight (navigation using a sea horizon no longer possible)
-15 degrees
Amateur astronomical twilight (the sky is dark enough for most astronomical observations)
-18 degrees
Astronomical twilight (the sky is completely dark)
Notes on Iteration
The orginal method only gives an approximate value of the Suns rise/set times. The error rarely exceeds one or two minutes, but at high latitudes, when the Midnight Sun soon will start or just has ended, the errors may be much larger. If you want higher accuracy, you must then use the iteration feature. This feature is new as of version 0.7. Here is what I have tried to accomplish with this.
a) Compute sunrise or sunset as always, with one exception: to convert LHA from degrees to hours, divide by 15.04107 instead of 15.0 (this accounts for the difference between the solar day and the sidereal day.
b) Re-do the computation but compute the Suns RA and Decl, and also GMST0, for the moment of sunrise or sunset last computed.
c) Iterate b) until the computed sunrise or sunset no longer changes significantly. Usually 2 iterations are enough, in rare cases 3 or 4 iterations may be needed.
($sunrise, $sunset) = $sunrise->($dt);
Returns two DateTime objects sunrise and sunset. Please note that the time zone for these objects is set to UTC. So dont forget to set your timezone!!
Download (0.006MB)
Added: 2007-02-15 License: GPL (GNU General Public License) Price:
983 downloads
b2evolution 1.9.3
b2evolution is a classy news/weblog tool. more>>
b2evolution is a classy news/weblog tool (aka logware), i-e software allowing you to run newsfeeds and weblogs.
It does basically the same thing blogger.com and typepad.com do, but with two main differences:
b2evolution is free as free can be! (GNU General Public License). It runs on your own domain/website. That means you need a host which can run web applications written in PHP.
Main features:
- Advanced browsing (paged, calendar, categories, search.
- Extended & multipaged posts;
- Image/file upload;
- Multiple and sub-categories;
- Draft and quick publishing;
- Spell checker;
- RSS & Atom feeds;
- Bookmarklet and sidebar blogging;
- Blog with a desktop client (w.bloggar, etc...);
- Automatic pinging of blog directories;
- Simple installation;
- Skin switching;
- Localized in many languages;
- Multilingual blogging;
- Timezone handling;
- Multiple blogs;
- Web standards compliance with integrated XHTML checker;
- Clean and search engine friendly permalinks;
- User rights management;
- Private/protected posts;
- Open/closed/disabled comments;
- Trackback & feedback;
- Integrated hitlogs and stats;
- Anti-blogspam (referrer & comments);
- Plug-in architecture;
- Advanced rendering plug-ins (Textile, Auto-P, BBcode.
Enhancements:
- Fixed "basic antispam de-activates itself". (blueyed)
- Fixed inclusion of sub-categories in item list (e.g. ?cat=1). (blueyed)
- Fixed handling of formats in pre-rendering content. You should delete the cache from the "Tools" menu after upgrading. (blueyed)
- Some more minor fixes.
<<lessIt does basically the same thing blogger.com and typepad.com do, but with two main differences:
b2evolution is free as free can be! (GNU General Public License). It runs on your own domain/website. That means you need a host which can run web applications written in PHP.
Main features:
- Advanced browsing (paged, calendar, categories, search.
- Extended & multipaged posts;
- Image/file upload;
- Multiple and sub-categories;
- Draft and quick publishing;
- Spell checker;
- RSS & Atom feeds;
- Bookmarklet and sidebar blogging;
- Blog with a desktop client (w.bloggar, etc...);
- Automatic pinging of blog directories;
- Simple installation;
- Skin switching;
- Localized in many languages;
- Multilingual blogging;
- Timezone handling;
- Multiple blogs;
- Web standards compliance with integrated XHTML checker;
- Clean and search engine friendly permalinks;
- User rights management;
- Private/protected posts;
- Open/closed/disabled comments;
- Trackback & feedback;
- Integrated hitlogs and stats;
- Anti-blogspam (referrer & comments);
- Plug-in architecture;
- Advanced rendering plug-ins (Textile, Auto-P, BBcode.
Enhancements:
- Fixed "basic antispam de-activates itself". (blueyed)
- Fixed inclusion of sub-categories in item list (e.g. ?cat=1). (blueyed)
- Fixed handling of formats in pre-rendering content. You should delete the cache from the "Tools" menu after upgrading. (blueyed)
- Some more minor fixes.
Download (2.79MB)
Added: 2007-03-12 License: Freeware Price:
1044 downloads
DateTime::Format::Pg 0.15
DateTime::Format::Pg is a Perl module to parse and format PostgreSQL dates and times. more>>
DateTime::Format::Pg is a Perl module to parse and format PostgreSQL dates and times.
SYNOPSIS
use DateTime::Format::Pg;
my $dt = DateTime::Format::Pg->parse_datetime( 2003-01-16 23:12:01 );
# 2003-01-16T23:12:01+0200
DateTime::Format::Pg->format_datetime($dt);
This module understands the formats used by PostgreSQL for its DATE, TIME, TIMESTAMP, and INTERVAL data types. It can be used to parse these formats in order to create DateTime or DateTime::Duration objects, and it can take a DateTime or DateTime::Duration object and produce a string representing it in a format accepted by PostgreSQL.
CONSTRUCTORS
The following methods can be used to create DateTime::Format::Pg objects.
new( name => value, ... )
Creates a new DateTime::Format::Pg instance. This is generally not required for simple operations. If you wish to use a different parsing style from the default then it is more comfortable to create an object.
my $parser = DateTime::Format::Pg->new()
my $copy = $parser->new( european => 1 );
This method accepts the following options:
european
If european is set to non-zero, dates are assumed to be in european dd/mm/yyyy format. The default is to assume US mm/dd/yyyy format (because this is the default for PostgreSQL).
This option only has an effect if PostgreSQL is set to output dates in the PostgreSQL (DATE only) and SQL (DATE and TIMESTAMP) styles.
Note that you dont have to set this option if the PostgreSQL server has been set to use the ISO format, which is the default.
server_tz
This option can be set to a DateTime::TimeZone object or a string that contains a time zone name.
This value must be set to the same value as the PostgreSQL servers time zone in order to parse TIMESTAMP WITH TIMEZONE values in the PostgreSQL, SQL, and German formats correctly.
Note that you dont have to set this option if the PostgreSQL server has been set to use the ISO format, which is the default.
clone()
This method is provided for those who prefer to explicitly clone via a method called clone().
my $clone = $original->clone();
If called as a class method it will die.
<<lessSYNOPSIS
use DateTime::Format::Pg;
my $dt = DateTime::Format::Pg->parse_datetime( 2003-01-16 23:12:01 );
# 2003-01-16T23:12:01+0200
DateTime::Format::Pg->format_datetime($dt);
This module understands the formats used by PostgreSQL for its DATE, TIME, TIMESTAMP, and INTERVAL data types. It can be used to parse these formats in order to create DateTime or DateTime::Duration objects, and it can take a DateTime or DateTime::Duration object and produce a string representing it in a format accepted by PostgreSQL.
CONSTRUCTORS
The following methods can be used to create DateTime::Format::Pg objects.
new( name => value, ... )
Creates a new DateTime::Format::Pg instance. This is generally not required for simple operations. If you wish to use a different parsing style from the default then it is more comfortable to create an object.
my $parser = DateTime::Format::Pg->new()
my $copy = $parser->new( european => 1 );
This method accepts the following options:
european
If european is set to non-zero, dates are assumed to be in european dd/mm/yyyy format. The default is to assume US mm/dd/yyyy format (because this is the default for PostgreSQL).
This option only has an effect if PostgreSQL is set to output dates in the PostgreSQL (DATE only) and SQL (DATE and TIMESTAMP) styles.
Note that you dont have to set this option if the PostgreSQL server has been set to use the ISO format, which is the default.
server_tz
This option can be set to a DateTime::TimeZone object or a string that contains a time zone name.
This value must be set to the same value as the PostgreSQL servers time zone in order to parse TIMESTAMP WITH TIMEZONE values in the PostgreSQL, SQL, and German formats correctly.
Note that you dont have to set this option if the PostgreSQL server has been set to use the ISO format, which is the default.
clone()
This method is provided for those who prefer to explicitly clone via a method called clone().
my $clone = $original->clone();
If called as a class method it will die.
Download (0.019MB)
Added: 2007-05-17 License: Perl Artistic License Price:
890 downloads
App::datetime 0.964
App::datetime is a date and time considerations. more>>
App::datetime is a date and time considerations.
Most Enterprise development includes processing of dates and times. There are many date and time modules on CPAN, and choosing the right one can be confusing. There are no special perl data types for dates and times, so some direction is needed.
The short answer is that we recommend the following for most common date and time operations.
Class::Date
Class::Date::Rel
However, other modules are appropriate in certain circumstances. So for the longer answer, read on.
PERL 5 LANGUAGE SUPPORT
The native Perl 5 datetime type is an integer. It is not different from other integers in any way other than how it is used. It represents the number of non-leap seconds since January 1, 1970 UTC (the "Epoch" at GMT). The following internal Perl function gets the current time.
$current_time = time;
$current_time = time();
Other Perl functions that return this "datetime" integer are
($dev, $ino, $mode, $nlink, $uid, $gid, $redev, $size,
$atime, $mtime, $ctime, $blksize, $blocks) = stat($filename);
($dev, $ino, $mode, $nlink, $uid, $gid, $redev, $size,
$atime, $mtime, $ctime, $blksize, $blocks) = lstat($filename);
where $atime, $mtime, and $ctime are the same kind of integers, representing the access time, modification time, and change time of a file.
These $time values may be converted to human-readable form using the following internal perl functions. (See the "perlfunc" man page for more information.)
($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = gmtime($time);
($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($time);
Furthermore, the current time zone needs to be accessed through the environment variable, "TZ".
$timezone = $ENV{TZ};
This leaves the Perl developer with lots of work to do in order to process dates.
Formatting dates for output
Parsing dates on input
Comparing dates
Date math (addition, subtraction)
Other calendar-specific functions (i.e. holidays, days of week, etc)
Numerous modules have been posted to CPAN allowing the Perl developer to accomplish these tasks. However, they have pros and cons related to the following features.
Internationalization
Speed
Portability
Ranges of Dates Supported
Compliance with Perl Styleguide (function naming)
<<lessMost Enterprise development includes processing of dates and times. There are many date and time modules on CPAN, and choosing the right one can be confusing. There are no special perl data types for dates and times, so some direction is needed.
The short answer is that we recommend the following for most common date and time operations.
Class::Date
Class::Date::Rel
However, other modules are appropriate in certain circumstances. So for the longer answer, read on.
PERL 5 LANGUAGE SUPPORT
The native Perl 5 datetime type is an integer. It is not different from other integers in any way other than how it is used. It represents the number of non-leap seconds since January 1, 1970 UTC (the "Epoch" at GMT). The following internal Perl function gets the current time.
$current_time = time;
$current_time = time();
Other Perl functions that return this "datetime" integer are
($dev, $ino, $mode, $nlink, $uid, $gid, $redev, $size,
$atime, $mtime, $ctime, $blksize, $blocks) = stat($filename);
($dev, $ino, $mode, $nlink, $uid, $gid, $redev, $size,
$atime, $mtime, $ctime, $blksize, $blocks) = lstat($filename);
where $atime, $mtime, and $ctime are the same kind of integers, representing the access time, modification time, and change time of a file.
These $time values may be converted to human-readable form using the following internal perl functions. (See the "perlfunc" man page for more information.)
($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = gmtime($time);
($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($time);
Furthermore, the current time zone needs to be accessed through the environment variable, "TZ".
$timezone = $ENV{TZ};
This leaves the Perl developer with lots of work to do in order to process dates.
Formatting dates for output
Parsing dates on input
Comparing dates
Date math (addition, subtraction)
Other calendar-specific functions (i.e. holidays, days of week, etc)
Numerous modules have been posted to CPAN allowing the Perl developer to accomplish these tasks. However, they have pros and cons related to the following features.
Internationalization
Speed
Portability
Ranges of Dates Supported
Compliance with Perl Styleguide (function naming)
Download (0.12MB)
Added: 2006-10-17 License: Perl Artistic License Price:
1102 downloads
eCorrei 1.2.5
eCorrei is a webmail system. more>>
eCorrei is a webmail system. This means it will allow you to access your POP email account via the web. It can do (nearly) all the things a normal email client can do: receiving mail, sending mail, replying, forwarding, etc. eCorrei is fast, simple and cross-platform.
Main features:
- Support for both POP3 and IMAP
- Receiving plain text messages, HTML messages, messages with attachments, HTML messages with attachments and HTML messages with inline images
- Sending emails using a SMTP server or the PHP mail function
- Replying and forwarding of emails
- Deleting emails, one or more at a time
- Autorefresh of Inbox
- Options for setting name and email address
- Parsing of URLs in messages
- Quickly send mails with smart maillinks in messages
- Add signature to mails
- Addressbook with groups to organize your addresses
- Multiple language support (user can choose language)
Enhancements:
- Fixed PHP version bug in check.php
- Now presets language based on browser settings
- Some CSS changes
- Changed config options to $cfg->...
- Added append option in config
- Converted all images to PNG
- Fixed signature problem
- Added Invert selection feature in Inbox
- Fixed some IE6 center problems
- Updated SECURITY
- Fixed inline imaging
- Added option to set timezone in Options
- Added UTF-8 support (receiving)
- JavaScript included in every page is in a .js-file now
- Magic quotes is disabled now
- Possibility to view message header
- New configuration option allows you to set refresh time of Inbox
- Fixed bug in autorefresh of Inbox
- New address parser in create script allows you to mail to entire groups of the addressbook at once
- Fixed bug with high priority
- Tweaked the icons a bit
- Fixed JavaScript problem in Inbox and Contacts
- Fixed CC and BCC problem
<<lessMain features:
- Support for both POP3 and IMAP
- Receiving plain text messages, HTML messages, messages with attachments, HTML messages with attachments and HTML messages with inline images
- Sending emails using a SMTP server or the PHP mail function
- Replying and forwarding of emails
- Deleting emails, one or more at a time
- Autorefresh of Inbox
- Options for setting name and email address
- Parsing of URLs in messages
- Quickly send mails with smart maillinks in messages
- Add signature to mails
- Addressbook with groups to organize your addresses
- Multiple language support (user can choose language)
Enhancements:
- Fixed PHP version bug in check.php
- Now presets language based on browser settings
- Some CSS changes
- Changed config options to $cfg->...
- Added append option in config
- Converted all images to PNG
- Fixed signature problem
- Added Invert selection feature in Inbox
- Fixed some IE6 center problems
- Updated SECURITY
- Fixed inline imaging
- Added option to set timezone in Options
- Added UTF-8 support (receiving)
- JavaScript included in every page is in a .js-file now
- Magic quotes is disabled now
- Possibility to view message header
- New configuration option allows you to set refresh time of Inbox
- Fixed bug in autorefresh of Inbox
- New address parser in create script allows you to mail to entire groups of the addressbook at once
- Fixed bug with high priority
- Tweaked the icons a bit
- Fixed JavaScript problem in Inbox and Contacts
- Fixed CC and BCC problem
Download (0.053MB)
Added: 2006-06-08 License: GPL (GNU General Public License) Price:
1233 downloads
Download Sentinel++ 2.1.0
Download Sentinel++ is an Anti-leech, download limiter / file manager. more>>
Download Sentinel++ is an Anti-leech, download limiter / file manager, that uses tokens to verify downloads instead of HTTP_REFERER or IP which can be spoofed or changed.
The install is as painless as possible with only one file to upload and execute. The install automatically creates the sub-directories and files, all you need to do is follow the on-screen instructions for permissions.
Security has been the focus throughout development, even the install program is built on the latest recomendations for security. Logging is done with text files and can have errors and alerts sent via email or stored in a txt file.
Downloads can be limited to a certain transfer size per time frame, which can be further broken down into smaller intervals, all with only a couple settings. This helps spread out the limitation to different timezone and prevents all available bandwidth being used in a short period
Main features:
- Completely free (free as in speech);
- Multiple language capability (all text is in config file, no hardcoded messages);
- Download counter file;
- xhtml/css compliant message output, fully customizable;
- Install script for easy setup;
- All user supplied input securely handled;
- Uses tokens to validate download requests. A superior method than .htaccess or http_referer which can be spoofed or limit users with firewalls;
- Tokens are good for a day by default, but can be set to expire at any time in 1 minute increments;
- A log is kept of invalid token attempts and information on tracking down the source;
- All errors and warnings can be written to a log file or sent to an email address;
- Supports unlimited directory structure of downloadable files (no need to specify where a file is located);
- Option to turn off bandwidth protection;
- Option to turn off any error/log report;
- Robust error handling;
- Ability to specify the total amount of transfer (bandwidth) allowed, over the total amount of time;
- Ability to specify interval lengths for download cut-off so all the allowed bandwidth does not go to one time zone / day /hour;
- Ability to put in a ratio of download clicks to actual bandwidth used;
- Log of all download details kept;
- Download log can be auto-archived;
- Ability to specify the download log size before archive;
- Ability to specify the download archive size before deleting;
- Ability to have a warning issued (email or log file) about the archive file reaching its maximum;
- Download count can be tracked in a Mysql database;
- Flood control on user clicks. Ability to set the number of times a user can click on a link in a given interval;
- Ability to allow specific offsite downloads via tokens;
- Pre-made example download page that is xhtml/css compliant;
- Pre-made file manager that displays all files, directories, sizes, downloads, dates, authors and descriptions for each file
- Ability to deny link sharing between browsers.
- Alternative install locations for secure files
- Logs automatically rotated, no on-going maintenance
- Ability to have multiple files with the same name
- Turn-Key install operation. Ready to begin secure downloads in 5 minutes or less;
<<lessThe install is as painless as possible with only one file to upload and execute. The install automatically creates the sub-directories and files, all you need to do is follow the on-screen instructions for permissions.
Security has been the focus throughout development, even the install program is built on the latest recomendations for security. Logging is done with text files and can have errors and alerts sent via email or stored in a txt file.
Downloads can be limited to a certain transfer size per time frame, which can be further broken down into smaller intervals, all with only a couple settings. This helps spread out the limitation to different timezone and prevents all available bandwidth being used in a short period
Main features:
- Completely free (free as in speech);
- Multiple language capability (all text is in config file, no hardcoded messages);
- Download counter file;
- xhtml/css compliant message output, fully customizable;
- Install script for easy setup;
- All user supplied input securely handled;
- Uses tokens to validate download requests. A superior method than .htaccess or http_referer which can be spoofed or limit users with firewalls;
- Tokens are good for a day by default, but can be set to expire at any time in 1 minute increments;
- A log is kept of invalid token attempts and information on tracking down the source;
- All errors and warnings can be written to a log file or sent to an email address;
- Supports unlimited directory structure of downloadable files (no need to specify where a file is located);
- Option to turn off bandwidth protection;
- Option to turn off any error/log report;
- Robust error handling;
- Ability to specify the total amount of transfer (bandwidth) allowed, over the total amount of time;
- Ability to specify interval lengths for download cut-off so all the allowed bandwidth does not go to one time zone / day /hour;
- Ability to put in a ratio of download clicks to actual bandwidth used;
- Log of all download details kept;
- Download log can be auto-archived;
- Ability to specify the download log size before archive;
- Ability to specify the download archive size before deleting;
- Ability to have a warning issued (email or log file) about the archive file reaching its maximum;
- Download count can be tracked in a Mysql database;
- Flood control on user clicks. Ability to set the number of times a user can click on a link in a given interval;
- Ability to allow specific offsite downloads via tokens;
- Pre-made example download page that is xhtml/css compliant;
- Pre-made file manager that displays all files, directories, sizes, downloads, dates, authors and descriptions for each file
- Ability to deny link sharing between browsers.
- Alternative install locations for secure files
- Logs automatically rotated, no on-going maintenance
- Ability to have multiple files with the same name
- Turn-Key install operation. Ready to begin secure downloads in 5 minutes or less;
Download (0.14MB)
Added: 2005-10-28 License: GPL (GNU General Public License) Price:
1459 downloads
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
<<lessEverything 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
Download (294.5MB)
Added: 2005-12-21 License: GPL (GNU General Public License) Price:
1405 downloads
ttmap 0.1
ttmap passively analyzes values of TCP Timestamps in captured IP packets. more>>
ttmap passively analyzes values of TCP Timestamps in captured IP packets. After collecting enough data, it computes characteristic remote machine parameters.
These values let it guess remote operating systems and identify unique machines behind a single IP address. For example, it can analyze remote IP load-balanced clusters.
After successful initialization, ttmap starts analysis of packets received on selected network interface. For this, it uses the libpcap library, which injects captured packets to the ttmap_callback() function.
Next, the program checks if received packet is a TCP one and whether it has TCP Timestamps Option. If yes, then ttmap reads essential data from it and passes it to the process_packet() function. However, if the packet has RST or FIN flag set, then a special procedure is called, which removes any data regarding the connection being closed, if any.
The process_packet() function matches a single packet to a TCP connection. It checks whether number of packets collected in a single connection is enough, and if it is, the control is passed to the identify_connection() function.
Now, ttmap has enough sample of packets which were received from a single remote machine to find the proportionality factor (the jiffy), let it be the a parameter, and system start-up time, let it be the b parameter. For best results, the program uses linear regression method from the GNU Scientific Library. Provided that the quality of obtained values is good enough, what is discussed later, an internal database holding information about already identified machines is queried for calculated remote system characteristics. If nothing matches, a new remote machine is detected; if there is a match, then machines a and b parameters are corrected by mean value.
Due to various delays and fluctuations that packets traversing the Internet might be subject of, the obtained data might be of low quality, ie. there will not be any linear function matching collected (time, TCP timestamp) points. So, for best results, only the points lying close enough to the best-fit line should be accepted as meaningful. The ttmap program checks whether ratio of covariance (returned from GSL) and obtained a parameter is small enough. A similar situation appears when querying the internal database for matching machines - here the program user may configure acceptable "delta" for a and b parameters.
When a new remote machine is detected, an informational message is printed to the standard output. Such message contains machines a parameter, with a corresponding remote operating system guess, and b parameter, with probable time when remote machine was turned on (in local timezone).
<<lessThese values let it guess remote operating systems and identify unique machines behind a single IP address. For example, it can analyze remote IP load-balanced clusters.
After successful initialization, ttmap starts analysis of packets received on selected network interface. For this, it uses the libpcap library, which injects captured packets to the ttmap_callback() function.
Next, the program checks if received packet is a TCP one and whether it has TCP Timestamps Option. If yes, then ttmap reads essential data from it and passes it to the process_packet() function. However, if the packet has RST or FIN flag set, then a special procedure is called, which removes any data regarding the connection being closed, if any.
The process_packet() function matches a single packet to a TCP connection. It checks whether number of packets collected in a single connection is enough, and if it is, the control is passed to the identify_connection() function.
Now, ttmap has enough sample of packets which were received from a single remote machine to find the proportionality factor (the jiffy), let it be the a parameter, and system start-up time, let it be the b parameter. For best results, the program uses linear regression method from the GNU Scientific Library. Provided that the quality of obtained values is good enough, what is discussed later, an internal database holding information about already identified machines is queried for calculated remote system characteristics. If nothing matches, a new remote machine is detected; if there is a match, then machines a and b parameters are corrected by mean value.
Due to various delays and fluctuations that packets traversing the Internet might be subject of, the obtained data might be of low quality, ie. there will not be any linear function matching collected (time, TCP timestamp) points. So, for best results, only the points lying close enough to the best-fit line should be accepted as meaningful. The ttmap program checks whether ratio of covariance (returned from GSL) and obtained a parameter is small enough. A similar situation appears when querying the internal database for matching machines - here the program user may configure acceptable "delta" for a and b parameters.
When a new remote machine is detected, an informational message is printed to the standard output. Such message contains machines a parameter, with a corresponding remote operating system guess, and b parameter, with probable time when remote machine was turned on (in local timezone).
Download (0.21MB)
Added: 2006-04-26 License: GPL (GNU General Public License) Price:
1276 downloads
sunrise 0.2
sunrise is a SuperKaramba theme that shows sunrise and sunset times. more>>
sunrise is a SuperKaramba theme that shows sunrise and sunset times.
Its a shameless port of the wmSun dockapp.
- if your timezone is not five characters (e.g. GMT-2) then you will have to fiddle a bit with the theme to get the output straight.
- you MUST edit the theme to set the coordinates of the city where you live.
<<lessIts a shameless port of the wmSun dockapp.
- if your timezone is not five characters (e.g. GMT-2) then you will have to fiddle a bit with the theme to get the output straight.
- you MUST edit the theme to set the coordinates of the city where you live.
Download (0.006MB)
Added: 2006-09-29 License: GPL (GNU General Public License) Price:
1123 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above timezone search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed