RSC Linux 0.0.1

On November 14th, 2004 the RSC Linux 0.0.1 (Sahira) was released.

RSC Linux 0.0.1 (Sahira) - Release Notes


   Copyright (c) 2000-2004 by Robert Scheck <rsc-linux@robert-scheck.de>

   Permission is granted to copy, distribute, and/or modify this document
   under the terms of the GNU Free Documentation License, Version 1.2 or any
   later version published by the Free Software Foundation; with no Invariant
   Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the
   license is available at http://www.gnu.org/licenses/fdl.html.

   This document may be copied and distributed in any medium, either
   commercially or non-commercially, provided that the GNU Free Documentation
   License (FDL), the copyright notices, and the license notice saying the
   GNU FDL applies to the document are reproduced in all copies, and that you
   add no other conditions whatsoever to those of th GNU FDL.

   Red Hat, Red Hat Network, the Red Hat "Shadow Man" logo, RPM, Maximum RPM,
   the RPM logo, Linux Library, PowerTools, Linux Undercover, RHmember,
   RHmember More, Rough Cuts, Rawhide and all Red Hat-based trademarks and
   logos are trademarks or registered trademarks of Red Hat, Inc. in the
   United States and other countries.

   Linux is a registered trademark of Linus Torvalds.

   Motif and UNIX are registered trademarks of The Open Group.

   Intel and Pentium are registered trademarks of Intel Corporation. Itanium
   and Celeron are trademarks of Intel Corporation.

   AMD, AMD Athlon, AMD Duron, and AMD K6 are trademarks of Advanced Micro
   Devices, Inc.

   Windows is a registered trademark of Microsoft Corporation.

   SSH and Secure Shell are trademarks of SSH Communications Security, Inc.

   All other trademarks and copyrights referred to are the property of their
   respective owners.

     ----------------------------------------------------------------------

An Introduction about RSC Linux

   RSC Linux is an adapted distribution based on Fedora Core Development 
   and Red Hat Enterprise Linux 3 for the personal use of Robert Scheck, 
   who is also the developer and maintainer.

   The distribution name "RSC Linux" bases on my nick name "rsc" which is
   an acronym for my full name, Robert Scheck.

   The main reason for me to start this small own distribution was, that
   Red Hat Linux 9 - which is the original base system of RSC Linux - 
   reached end-of-lifetime at April 30, 2004 and Fedora Legacy only has 
   a very slow and bad update support (at least in my eyes).

   Sure, I could update to a current Fedora Core release, but I don't want
   to have Linux kernel 2.6, UTF-8 optimised stuff (lots of Linux people
   currently really hate UTF-8!) and so on. I still want to have stable 
   and supported but even some totally up-to-date parts and packages for 
   free without paying for it, which means, that Red Hat Enterprise Linux
   3 also isn't the right choice.

   At present, RSC Linux combines the stability of Red Hat Enterprise 
   Linux 3 with the features and current development of Fedora Core 
   Development with the consideration of my personal wishes and properties.

   Last but not least, I want to introduce stance of "your bugs are our 
   features", where "your" is referenced with Red Hat, because Red Hat 
   presently refuses and defers many suggested improvements and changes...

   For more information, please have a look to the homepage:

   http://rsc-linux.robert-scheck.de/


Hardware Requirements

   The following information represents the minimum hardware requirements
   necessary to successfully install RSC Linux 0.0.1:

   CPU:

   NOTE: The following CPU specifications are stated in terms of Intel
   processors. Other processors (notably, offerings from AMD, Cyrix, and VIA)
   that are compatible with and equivalent to the following Intel processors
   may also be used with Fedora Core.

     o Minimum: 200 MHz Pentium-class or better

     o Recommended: 400 MHz Pentium II or better

   Hard Disk Space (NOTE: Additional space will be required for user data):

     o Minimal Installation: 520MB

     o Normal Installation: 1.2GB

   Memory:

     o Minimum: 64MB

     o Recommended: 256MB

   Note that the compatibility/availability of other hardware components
   (such as video and network cards) may be required for specific
   installation modes and/or post-installation usage.


Installation-Related Notes

   This section outlines those issues that are related to installing RSC 
   Linux in general.

     o RSC Linux can be installed using a minimal installation of Red Hat 
       Linux 9 as base system. The migration script delivered with RSC Linux 
       ("/usr/share/rsc-linux/migrate") can be used to migrate to RSC Linux
       version 0.0.1 - this is currently the onliest automatic installation
       and/or migration method.

     o Memory testing may be performed using memtest86 at the boot manager. 
       This causes the Memtest86 standalone memory testing software to run. 
       Memtest86 memory testing continues until the Esc key is pressed.


General Notes

   This section describes post-installation issues.

     o The openldap and sendmail packages are now compiled using version 2 
       of the Cyrus SASL library. For these packages, the default location 
       of each application's SASL configuration files has changed from 
       /usr/lib/sasl to /usr/lib/sasl2. In addition, some SASL configuration 
       options have changed; refer to /usr/share/doc/cyrus-sasl*/options.html 
       for a list of options recognized by version 2 of the Cyrus SASL 
       library.

       Configuration files that specified a pwcheck_method of sasldb must be
       changed to specify auxprop, the auxprop_plugin setting must be set to
       sasldb, and the contents of /etc/sasldb must be migrated into
       /etc/sasldb2 using the dbconverter-2 tool.

       Configurations that set pwcheck_method to other values must be set to
       saslauthd, and the saslauthd service must be enabled and started.

       Refer to /usr/share/doc/cyrus-sasl*/upgrading.html for more
       information.

     o RSC Linux 0.0.1 includes the Native POSIX Thread Library (NPTL), a 
       new implementation of POSIX threads for Linux. This library provides
       performance improvements and increased scalability.

       This thread library is designed to be binary compatible with the old
       LinuxThreads implementation; however, applications that rely on the
       places where the LinuxThreads implementation deviates from the POSIX
       standard will need to be fixed. Notable differences include:

       - Signal handling has changed from per-thread signal handling to POSIX
       process signal handling.

       - getpid() returns the same value in all threads.

       - Thread handlers registered with pthread_atfork are not run if
       vfork() is used.

       - No manager thread.

       If an application does not work properly with NPTL, it can be run
       using the old LinuxThreads implementation by setting the following
       environment variable:

       LD_ASSUME_KERNEL=<kernel-version>

       The following versions are available:

       - 2.4.19 -- Linuxthreads with floating stacks

       - 2.2.5 -- Linuxthreads without floating stacks

       Note that software using errno, h_errno, and _res must #include the
       appropriate header file (errno.h, netdb.h, and resolv.h respectively)
       before they are used. However, LD_ASSUME_KERNEL=2.4.19 can be used as
       a workaround until the software can be fixed.

     o Multi-threaded C++ programs using thread cancellation might need to be
       forced to use the LinuxThreads library using the
       LD_ASSUME_KERNEL=2.4.19 environment variable setting. Otherwise, the
       program will terminate abnormally if the cancellation is acted on
       (since the generated exception is not caught).

       Newly-written C++ code that uses functions from the C runtime
       environment might have to be adjusted to take the cancellation into
       account. This can be done by one of the following methods:

       - Not marking the C++ function with throw() (so that callers are aware
       that an exception might be thrown) and by compiling the code with
       exceptions. This is the default compilation option; users should not
       specify -fno-exceptions when compiling.

       - Disabling cancellation completely before entering the functions that
       call the cancel-able C runtime functions. This can be done with the
       following call:

       pthread_setcancelstate (PTHREAD_CANCEL_DISABLE, &oldstate)

       After the C functions are called cancellation can be enabled again
       with the following call:

       pthread_setcancelstate (oldstate, NULL)

       NOTE: At this point the cancellations are acted upon and therefore the
       function calling pthread_setcancelstate() must be compiled with
       exceptions enabled and must be marked as throwing exceptions.

     o RSC Linux 0.0.1 includes the capability of producing Position
       Independent Executables (PIE) for C, C++, and Java. This feature is
       enabled with the -fpie and -fPIE GCC options to compile, which are
       similar in usage to the -fpic and -fPIC options, respectively, and at
       link time with the -pie option.

       If the Exec-shield feature is enabled, PIEs get assigned random load
       addresses each time, making the exploitation of possible security
       problems more difficult. This is in contrast to regular application
       code, which is always loaded at the same virtual address and therefore
       provides predictable addresses for possible exploits.

     o The BIND nameserver has had its security tightened. The /var/named/
       directory is no longer owned by "named", but rather by "root". Slave
       zone files should now be stored in the new /var/named/slaves/
       directory, which is owned by "named". In addition, a new bind-chroot
       package makes it possible to run the named daemon in a chroot() "jail"
       (located in /var/named/chroot/) for greater security.

     o OpenLDAP Upgrade-Related Notes -- The on-disk storage format used by
       slapd, the standalone OpenLDAP server binary, has changed. Users
       upgrading LDAP servers from previous releases from Red Hat Linux must 
       dump their directories to LDIF files using slapcat and re-import them 
       into the new format using slapadd.

       Because OpenLDAP now uses version 2 of the Cyrus SASL library, secrets
       stored in databases used by version 1 of the SASL library will not be
       usable for authenticating clients to an LDAP directory server.
       Administrators can generate an initial database for use with version 2
       of the library by running the following command:

       dbconverter-2 /etc/sasldb

     o By default, the Sendmail mail transport agent (MTA) does not accept
       network connections from any host other than the local computer. If
       you want to configure Sendmail as a server for other clients, you must
       edit /etc/mail/sendmail.mc and change the DAEMON_OPTIONS line to also
       listen on network devices (or comment out this option entirely using
       the dnl comment delimiter). You must then regenerate
       /etc/mail/sendmail.cf by running the following command (as root):

       make -C /etc/mail

       Note that you must have the sendmail-cf package installed for this to
       work.

     o The PHP domxml extension module has been moved into the php-domxml
       subpackage, which must be installed to retain domxml support. A new
       subpackage (php-xmlrpc) has been added, which includes XML-RPC support
       for PHP.


Package Information

   A few major package information about RSC Linux 0.0.1:

   - ISC Bind 9.2.4 (DNS server and libraries)

   - Dante 1.1.14 (Socks server and libraries)

   - Berkeley DB 4.2.52 (Database)

   - ISC DHCP 3.0.1 (DHCP server, libraries and client)

   - GNU GCC 3.2.3 (Compiler and libraries)

   - GNU libc 2.3.2 (Basic system libraries)

   - Apache HTTP-Server 2.0.52 (Web server)

   - UW-IMAP 2004a (POP3 and IMAP4 server as well as libraries)

   - Kernel 2.4.21 (The core of the operating system)

   - MySQL 4.1.7 (Database server, client and libraries)

   - OpenLDAP 2.2.13 (LDAP client, server and libraries)

   - OpenSSH 3.9p1 (SSH server and client)

   - OpenSSL 0.9.7a (SSL toolkit)

   - Perl 5.8.5 (Cross platform programming language)

   - PHP 4.3.9 (Scripting language für dynamic websites)

   - Python 2.3.4 (Object-oriented programming language)

   - ProFTPd 1.2.10 (FTP server)

   - RPM 4.2.3 (RPM Package Management)

   - Sendmail 8.13.1 (Mail server)

   - SpamAssassin 3.0.0 (Spam filter)

   - Squid 2.5.7.1 (Proxy server)

   - XFree86 4.3.0 (Libraries for X)

   - Yum 2.1.11 (Installer/Updater)


How to contact the Maintainer and Developer

   There are different possibilites how to contact Robert Scheck:

     o E-Mail: rsc-linux@robert-scheck.de

     o IRC chat: irc.robert-scheck.de, port 6667, channel #robert-scheck

     ----------------------------------------------------------------------

All MD5SUMs for the packages included with RSC Linux 0.0.1:

406beb2909083507c4599332bb8d5c4e  RSC-Linux/RPMS/acl-2.2.23-5.i386.rpm
f980dd0a941bffba7045be4f7195f628  RSC-Linux/RPMS/anacron-2.3-32.i386.rpm
e8518829d89034213c6646ac91f2f310  RSC-Linux/RPMS/apachetop-0.12-2.i386.rpm
b23c08fa63d42f461d3d973369fb292a  RSC-Linux/RPMS/apr-0.9.4-23.i386.rpm
7b4249a0f71ea94c4209fd34f72c077f  RSC-Linux/RPMS/apr-devel-0.9.4-23.i386.rpm
df905f9e572a821a7624c048ad530d16  RSC-Linux/RPMS/apr-util-0.9.4-17.i386.rpm
0dd2bd832945114e22a641f4abc92eec  RSC-Linux/RPMS/apr-util-devel-0.9.4-17.i386.rpm
44f41adc8b83995c4aa369187a5511fa  RSC-Linux/RPMS/arpwatch-2.1a13-7.i386.rpm
58fd3458705f27ac915f451dac8f2ea4  RSC-Linux/RPMS/ash-0.3.8-20.i386.rpm
01176026109f028f66195582b436e6d5  RSC-Linux/RPMS/aspell-0.50.5-3.i386.rpm
9d99de47d75353c1f3fdc2e188045879  RSC-Linux/RPMS/aspell-de-0.50-9.i386.rpm
773b48e6b234b982644d6246c8339416  RSC-Linux/RPMS/aspell-devel-0.50.5-3.i386.rpm
4051b420554641534c0d1cbd78aa22cb  RSC-Linux/RPMS/aspell-en-0.51-11.i386.rpm
b89d036fcc7b638db43129c2dd851116  RSC-Linux/RPMS/at-3.1.8-60.i386.rpm
fc122f12945dcfdb52d9cfa586397846  RSC-Linux/RPMS/atk-1.8.0-2.i386.rpm
97e23333f4194a22a18139b498d27f3b  RSC-Linux/RPMS/atk-devel-1.8.0-2.i386.rpm
381775eb9f42bce4618d65a2010f9d8c  RSC-Linux/RPMS/attr-2.4.16-2.i386.rpm
98ba34b9252cf1869de6171f7f0dbcc9  RSC-Linux/RPMS/authconfig-4.6.5-5.i386.rpm
ebb5d95c514818b21f2e12325057263d  RSC-Linux/RPMS/authconfig-gtk-4.6.5-5.i386.rpm
4d587379b1559aa6080249c7b70aa718  RSC-Linux/RPMS/autoconf-2.59-5.noarch.rpm
328fa9b3dea0ca2df7cf6c4d6d7d0c86  RSC-Linux/RPMS/automake16-1.6.3-5.noarch.rpm
43450a43ea9ad59440c132b91a1df646  RSC-Linux/RPMS/automake-1.9.3-1.noarch.rpm
61439c14438afab6ec8c8c6d8b43ac03  RSC-Linux/RPMS/basesystem-8.0-4.noarch.rpm
eeacd1a52d527ebd96691148f1154d0f  RSC-Linux/RPMS/bash-3.0-20.i386.rpm
9139069dc13613e3638463a5fe8140b6  RSC-Linux/RPMS/bc-1.06-17.1.i386.rpm
787936bf94b8cb44c81f55079ff8ecc5  RSC-Linux/RPMS/beecrypt-3.1.0-6.i386.rpm
66f993a70347855f8fd1f5ca92c2b4d4  RSC-Linux/RPMS/beecrypt-devel-3.1.0-6.i386.rpm
b84e5d3c9e1ad3c68aeec6a349783c94  RSC-Linux/RPMS/beecrypt-python-3.1.0-6.i386.rpm
aed3c4fc6e838f77b507cb4f1da52da2  RSC-Linux/RPMS/bind-9.2.4-2.i386.rpm
4a180caeff9b15178e172c95132784dd  RSC-Linux/RPMS/bind-chroot-9.2.4-2.i386.rpm
24b16b148ca58f2ae69c4edfdbe57458  RSC-Linux/RPMS/bind-devel-9.2.4-2.i386.rpm
fc04f2ff9ceed4aa2467dfe6b11153fd  RSC-Linux/RPMS/bind-libs-9.2.4-2.i386.rpm
84730e7cc1dfa88795734e48ccf64ec2  RSC-Linux/RPMS/bind-utils-9.2.4-2.i386.rpm
8b8868fd5d4092846015d089ca31aa31  RSC-Linux/RPMS/binutils-2.15.92.0.2-6.i386.rpm
1a760b6d6864bb768192ded11ca1cae1  RSC-Linux/RPMS/bison-1.875c-2.i386.rpm
7056d23723ef39822f434a3f869d97c3  RSC-Linux/RPMS/bogl-0.1.18-4.i386.rpm
cbd859440c9c5504bb72a693f35c37d9  RSC-Linux/RPMS/bogl-bterm-0.1.18-4.i386.rpm
8199b8c52ca356dedf5a54f1e67ca802  RSC-Linux/RPMS/bogl-devel-0.1.18-4.i386.rpm
9693d7fbe44a49f7f8fecfbeda65ee6f  RSC-Linux/RPMS/booty-0.44-1.i386.rpm
e9b113f791c6671e63fb23c7ac58bc9b  RSC-Linux/RPMS/byacc-1.9-28.i386.rpm
f8d1b25c32e5be3bd73164fd019c67b6  RSC-Linux/RPMS/bzip2-1.0.2-13.i386.rpm
74cb80231c4682d4af5614e8534cbc66  RSC-Linux/RPMS/bzip2-devel-1.0.2-13.i386.rpm
718b159e4f4ba2c71416f1c5dcde88e8  RSC-Linux/RPMS/bzip2-libs-1.0.2-13.i386.rpm
e6d4553848850420c6e612807238395f  RSC-Linux/RPMS/cdda2wav-2.01.1-5.i386.rpm
d5fa0db7144fc9b560305b83eadf06de  RSC-Linux/RPMS/cdrecord-2.01.1-5.i386.rpm
3d9a8df7ef3f00bac89ac15de7214d5d  RSC-Linux/RPMS/cdrecord-devel-2.01.1-5.i386.rpm
27e2f6c089c8b02c2090d14b6223fcb4  RSC-Linux/RPMS/chkconfig-1.3.11.1-1.i386.rpm
05bccf7be35a9272ce7c585755e8094d  RSC-Linux/RPMS/chkfontpath-1.10.0-2.i386.rpm
f9e56a3805d6b32fb1d1f86ea151940c  RSC-Linux/RPMS/coreutils-5.2.1-32.i386.rpm
7541c4589591f2183cf72c29f758dc9f  RSC-Linux/RPMS/cpio-2.5-10.i386.rpm
3fc99d1621ab490e3ab00fed29a8e3c8  RSC-Linux/RPMS/cpp-3.2.3-42.i386.rpm
088be1f3fa93781e59837cdabaaadc91  RSC-Linux/RPMS/cracklib-2.7-28.i386.rpm
e0fc198bdb4b57641d2e65f257dd9c7f  RSC-Linux/RPMS/cracklib-dicts-2.7-28.i386.rpm
a9726fa5472eaa05cb3971d11f8a68c6  RSC-Linux/RPMS/createrepo-0.4.1-1.noarch.rpm
ea28a8a15489757570eb8371be67e3a3  RSC-Linux/RPMS/crontabs-1.10-7.noarch.rpm
8f6117d884f05c2655401845ce86a203  RSC-Linux/RPMS/curl-7.12.1-1.i386.rpm
c3a8af89d50a7e8dbab411270e3f9a04  RSC-Linux/RPMS/curl-devel-7.12.1-1.i386.rpm
a3c3d1979180c4c9050855346ced06b1  RSC-Linux/RPMS/cvs-1.11.17-4.i386.rpm
8eeb675daf59f3f937110d68cc3638f2  RSC-Linux/RPMS/cyrus-sasl-2.1.20-1.i386.rpm
e851d4f1ee3d90b3db06b275fd5c453c  RSC-Linux/RPMS/cyrus-sasl-devel-2.1.20-1.i386.rpm
21b86f829246fd5a0095b622c60f6b60  RSC-Linux/RPMS/cyrus-sasl-gssapi-2.1.20-1.i386.rpm
50337990f3eb8e5631e907d48e07a0c2  RSC-Linux/RPMS/cyrus-sasl-md5-2.1.20-1.i386.rpm
ace811389ba6d14f42916af35a157c0e  RSC-Linux/RPMS/cyrus-sasl-ntlm-2.1.20-1.i386.rpm
74f16e21b5e26d25da2390723c63ddc9  RSC-Linux/RPMS/cyrus-sasl-plain-2.1.20-1.i386.rpm
db7718b743b1dbe4f0d3d432a2e56ad2  RSC-Linux/RPMS/cyrus-sasl-sql-2.1.20-1.i386.rpm
afc8f82c07b34fc92f713c522ff0afb9  RSC-Linux/RPMS/dante-1.1.14-1.i386.rpm
823824ec2679144ead04170266df5748  RSC-Linux/RPMS/dante-devel-1.1.14-1.i386.rpm
9f1a591565c3675524f0e25ccef5ffd5  RSC-Linux/RPMS/dante-server-1.1.14-1.i386.rpm
113b5c9b1f1fa175509cb21183e30739  RSC-Linux/RPMS/db4-4.2.52-6.i386.rpm
ecda68ef996ecae7a3467221a6f5f8dd  RSC-Linux/RPMS/db4-devel-4.2.52-6.i386.rpm
1239c2a4cbfb47bac92c62b4e413e984  RSC-Linux/RPMS/db4-tcl-4.2.52-6.i386.rpm
0d986ff0b6caff994bc998474714568f  RSC-Linux/RPMS/db4-utils-4.2.52-6.i386.rpm
23140e85165e1bda395300fc2e539bc6  RSC-Linux/RPMS/dejagnu-1.4.4-3.noarch.rpm
be4dc6e3615f887da66f9e601e9d83fa  RSC-Linux/RPMS/dev-3.3.13-1.i386.rpm
e29a7c6c6c5386159d1267dcd6afa3f2  RSC-Linux/RPMS/devlabel-0.48.03-5.i386.rpm
cb35b81fa974b0604005f4ca1c85b8d2  RSC-Linux/RPMS/dhclient-3.0.1-11.i386.rpm
50b8940494132a0ba67aa63383dbcc5a  RSC-Linux/RPMS/dhcp-3.0.1-11.i386.rpm
c7d1cd00ef4dc32bffc4474fb4e3c31f  RSC-Linux/RPMS/dhcp-devel-3.0.1-11.i386.rpm
1ea6c84b2ccc60d1ac0934a6a1cc9867  RSC-Linux/RPMS/dhcpv6-0.10-8.i386.rpm
82d6f4fb16865fd78f8ebfa1a63283cd  RSC-Linux/RPMS/dhcpv6_client-0.10-8.i386.rpm
8e1f6d4b7eb254216c45dc20f6a2c277  RSC-Linux/RPMS/dialog-1.0.20040731-3.i386.rpm
ef70612e66f2abdc5aee34edc0f5d978  RSC-Linux/RPMS/dietlibc-0.27-4.i386.rpm
67d587c1ea4e0b06151da866cba2985a  RSC-Linux/RPMS/diffutils-2.8.1-12.i386.rpm
2fb9d29774e5e9342c55d9df99a78e61  RSC-Linux/RPMS/docbook-dtds-1.0-25.noarch.rpm
740aafb527cddedbff1d7279ce44d622  RSC-Linux/RPMS/docbook-style-xsl-1.67.0-1.noarch.rpm
1a02022caae11eca74390b907aa2ce8f  RSC-Linux/RPMS/dos2unix-3.1-21.i386.rpm
4bd425333174c1606082dc9f8d7131ec  RSC-Linux/RPMS/dosfstools-2.8-16.i386.rpm
065633543edf3a22e32044ee7f8ba247  RSC-Linux/RPMS/doxygen-1.3.9.1-1.i386.rpm
3826899788b719e989ce3d8b49c36371  RSC-Linux/RPMS/dump-0.4b37-1.i386.rpm
91e4beb351133483db3eb9bb77883204  RSC-Linux/RPMS/e2fsprogs-1.35-11.2.i386.rpm
b08f1ffccbbcfdbd48bd097a4a35df74  RSC-Linux/RPMS/e2fsprogs-devel-1.35-11.2.i386.rpm
46009bb32cf4d40eb1594c0f10ad9a3d  RSC-Linux/RPMS/ed-0.2-36.i386.rpm
0d4113ca5b119a3b7af0f8e91ca36409  RSC-Linux/RPMS/eject-2.0.13-12.i386.rpm
4c04c76b659083945cee1ff188008f66  RSC-Linux/RPMS/elfutils-0.96-1.i386.rpm
cdafdc67acd492e50c275633bdf4913d  RSC-Linux/RPMS/elfutils-devel-0.96-1.i386.rpm
2653b9113a7edc375e1f51152465d4a3  RSC-Linux/RPMS/elfutils-libelf-0.96-1.i386.rpm
58057ad70c36ba5e937fce07ab67ad02  RSC-Linux/RPMS/elfutils-libelf-devel-0.96-1.i386.rpm
23ed9f659033ab58d99870adc53e3be3  RSC-Linux/RPMS/elinks-0.9.2-2.i386.rpm
aed585c4c6b3f843bce8d8f01e83b6ca  RSC-Linux/RPMS/esmtp-0.5.0-2.i386.rpm
d3b6257f0062a852ac2c1597469ede5d  RSC-Linux/RPMS/ethtool-1.8-4.i386.rpm
61f1c285eb821760d6c1c2d9f42a0402  RSC-Linux/RPMS/expat-1.95.7-4.i386.rpm
4c450a31a58fe88690a3c6e430087f97  RSC-Linux/RPMS/expat-devel-1.95.7-4.i386.rpm
19276cb7b573da1709725edd3372258d  RSC-Linux/RPMS/expect-5.42.1-1.i386.rpm
d7802dd94107a9731550d6d2c3446df2  RSC-Linux/RPMS/expect-devel-5.42.1-1.i386.rpm
c2a987eb38cc1022e420a3b9e6e0a01d  RSC-Linux/RPMS/expectk-5.42.1-1.i386.rpm
0c301f6ab45daf725c9af0061fb7ece2  RSC-Linux/RPMS/fbset-2.1-17.i386.rpm
7f848593eb955c6ec84f5b657eaeae3e  RSC-Linux/RPMS/fetchmail-6.2.5-6.i386.rpm
4dd82226fe47e709a4a265336fa1c39c  RSC-Linux/RPMS/file-4.10-2.i386.rpm
e30420bce780cef8196f862e58857b82  RSC-Linux/RPMS/filesystem-2.2.4-1.1.i386.rpm
8cf1a236def27d938f3e5497ca0a8687  RSC-Linux/RPMS/findutils-4.1.20-7.i386.rpm
e9d061d7c24e4438349b874b9627e690  RSC-Linux/RPMS/finger-0.17-25.i386.rpm
5e036992be6c1cd53fb0b6f302216db0  RSC-Linux/RPMS/finger-server-0.17-25.i386.rpm
7271b8da2ac04039664e7465d60ef0ce  RSC-Linux/RPMS/flex-2.5.4a-33.i386.rpm
7fde350d1145499fbc652719182038f4  RSC-Linux/RPMS/fontconfig-2.2.3-5.i386.rpm
959d680eb9bd8498510306dc301aa3fb  RSC-Linux/RPMS/fontconfig-devel-2.2.3-5.i386.rpm
260e667c459b59f795b55d55760de369  RSC-Linux/RPMS/freetype-2.1.9-1.i386.rpm
36029446322b1fdd09f6a71fdc59de60  RSC-Linux/RPMS/freetype-demos-2.1.9-1.i386.rpm
394f3614959d494232c23837790f30ca  RSC-Linux/RPMS/freetype-devel-2.1.9-1.i386.rpm
2281d7a0269e659dc8d617b39d580c0e  RSC-Linux/RPMS/freetype-utils-2.1.9-1.i386.rpm
28334d0c37761d525a6ec2063d4b17d6  RSC-Linux/RPMS/gawk-3.1.3-12.i386.rpm
c2ee8f0cd4b167c3d5a2916d22a06e67  RSC-Linux/RPMS/gcc-3.2.3-42.i386.rpm
7f41b8a745e17dc56f2ac67fc241e089  RSC-Linux/RPMS/gcc-c++-3.2.3-42.i386.rpm
20897c3efc903d3a5149c24df2e01d73  RSC-Linux/RPMS/gcc-g77-3.2.3-42.i386.rpm
0e2b192328a42489bc3ca6c8c2b1b0cf  RSC-Linux/RPMS/gcc-gnat-3.2.3-42.i386.rpm
b6760a8d38211d8344a19c6e8d0b6f49  RSC-Linux/RPMS/gcc-java-3.2.3-42.i386.rpm
792c6a155dafa249b2cf21bbc0ab2b09  RSC-Linux/RPMS/gcc-objc-3.2.3-42.i386.rpm
07eead3da47cbc6a235d44924469757a  RSC-Linux/RPMS/gd-2.0.32-1.i386.rpm
8ee5597720c8bcb2a38cad1c4c1d5304  RSC-Linux/RPMS/gdb-6.1post-1.20040607.48.i386.rpm
86150ace25b2ec3e8f77e73033f78e8e  RSC-Linux/RPMS/gdbm-1.8.0-24.i386.rpm
9be9d5a31a53f97da92fa33a28e77797  RSC-Linux/RPMS/gdbm-devel-1.8.0-24.i386.rpm
daf8c9487912ffb5e5a1ff8b6d9e4090  RSC-Linux/RPMS/gd-devel-2.0.32-1.i386.rpm
92d5df0b3ee9c78f42da9a5fad2122ff  RSC-Linux/RPMS/gd-progs-2.0.32-1.i386.rpm
db5dd8380851abe627061d7b5b9135b2  RSC-Linux/RPMS/gettext-0.14.1-12.i386.rpm
8948a7dc076d9717eb37d6d957d5ac4b  RSC-Linux/RPMS/gettext-devel-0.14.1-12.i386.rpm
d419af44f4321a9b6ce5b4f4e355ff8b  RSC-Linux/RPMS/glib-1.2.10-15.i386.rpm
d252607e1e99216a89c001baaf66a961  RSC-Linux/RPMS/glib2-2.4.7-1.i386.rpm
8d2645ab35fbce4b95e9c8907210c752  RSC-Linux/RPMS/glib2-devel-2.4.7-1.i386.rpm
0dbee46384923fa5fb0a5ce182b0e79f  RSC-Linux/RPMS/glibc-2.3.2-95.27.i386.rpm
5ec53d8e9a76df3c34b622c95cc5abb7  RSC-Linux/RPMS/glibc-2.3.2-95.27.i686.rpm
9b8425477be88a95f1d03ad5a296797a  RSC-Linux/RPMS/glibc-common-2.3.2-95.27.i386.rpm
67b3be9d3f4b3ad7bbccc54093bda013  RSC-Linux/RPMS/glibc-debug-2.3.2-95.27.i386.rpm
4b9e968c5e4ab15494e3a68129dc9c2a  RSC-Linux/RPMS/glibc-devel-2.3.2-95.27.i386.rpm
4d9c0603d29480525ebe6c84b2125330  RSC-Linux/RPMS/glibc-headers-2.3.2-95.27.i386.rpm
f9551968aa101c8897b052358456c126  RSC-Linux/RPMS/glibc-kernheaders-2.4-9.1.87.i386.rpm
60fe84186a6203df9e72b8425d99abac  RSC-Linux/RPMS/glibc-profile-2.3.2-95.27.i386.rpm
e7c951e6a9c36dbea8e5fed674b3f6cf  RSC-Linux/RPMS/glibc-utils-2.3.2-95.27.i386.rpm
9a37e8cf4eff89b3f2687166d05027af  RSC-Linux/RPMS/glib-devel-1.2.10-15.i386.rpm
260a3c50b4d6a4a3ee2eb3a1f8c20b85  RSC-Linux/RPMS/gmp-4.1.4-3.i386.rpm
8b66b14c552d54159e7ec5be101d56c7  RSC-Linux/RPMS/gmp-devel-4.1.4-3.i386.rpm
01758d15e22699143d14821b0c7dfdb2  RSC-Linux/RPMS/gnupg-1.2.6-2.i386.rpm
7986aa564e230b347fcdbaee14fb80e5  RSC-Linux/RPMS/google-man-page-1.0.0-1.noarch.rpm
86a306d95543783f04e234c79c715587  RSC-Linux/RPMS/gperf-3.0.1-4.i386.rpm
def76c19a9539436530f9b1a68181848  RSC-Linux/RPMS/gpm-1.20.1-66.i386.rpm
fd7c1f370df76fc6a4c0cf73a1ab50c5  RSC-Linux/RPMS/gpm-devel-1.20.1-66.i386.rpm
9f6a577d9a21d3981b942a2413a2259d  RSC-Linux/RPMS/grep-2.5.1-37.i386.rpm
f00ab9b8928ad6f152d58c7920ce8a91  RSC-Linux/RPMS/groff-1.18.1.1-3.i386.rpm
3479e8cd6bbaf6d45a2d83c652f4734e  RSC-Linux/RPMS/groff-gxditview-1.18.1.1-3.i386.rpm
f8a29422911d0d85e65f498c3533fe45  RSC-Linux/RPMS/groff-perl-1.18.1.1-3.i386.rpm
dcaa7052c1104202d3fc97d7d42831a3  RSC-Linux/RPMS/grub-0.95-3.i386.rpm
21665e8c75de5081c7c7060f9ed85fbf  RSC-Linux/RPMS/gtk+-1.2.10-33.i386.rpm
f4917a5ff70bfdcf95738784cb8bb282  RSC-Linux/RPMS/gtk2-2.4.13-11.i386.rpm
412c63944b438d7d892f89f69fc657ff  RSC-Linux/RPMS/gtk2-devel-2.4.13-11.i386.rpm
da3b1b6c8c0b96393da300c4fa96a267  RSC-Linux/RPMS/gtk+-devel-1.2.10-33.i386.rpm
c001f09aa9655b1b6b93e4e620999ca1  RSC-Linux/RPMS/gzip-1.3.3-13.i386.rpm
bce5e30131b1348caeac03b98e3f227e  RSC-Linux/RPMS/hdparm-5.7-2.i386.rpm
1daeb952092a919ff7cdd64d4a8499f5  RSC-Linux/RPMS/hesiod-3.0.2-30.i386.rpm
1968897eb4c98636054699feb6900ce6  RSC-Linux/RPMS/hesiod-devel-3.0.2-30.i386.rpm
ee6109c6ebdc1d6882efd7117f12c67f  RSC-Linux/RPMS/hotplug-2004_04_01-9.i386.rpm
78d1c96a73f6017c047f8d55ac9f55bd  RSC-Linux/RPMS/hotsanic-0.5.0-0.5.noarch.rpm
d6a36dc9e0e9d8cec83aaf31c7cfda62  RSC-Linux/RPMS/httpd-2.0.52-3.i386.rpm
21ff3a783af763ef10f807a01faf9eed  RSC-Linux/RPMS/httpd-devel-2.0.52-3.i386.rpm
64f45a7b9e6037aeca88972d68ffbd4d  RSC-Linux/RPMS/httpd-manual-2.0.52-3.i386.rpm
2dd877470f8a2e3ac730cd3daf547379  RSC-Linux/RPMS/httpd-suexec-2.0.52-3.i386.rpm
b9fd903ab982599594f5ef75e124a232  RSC-Linux/RPMS/httptunnel-3.3-2.i386.rpm
710a0a3c0c9544b1d2c4100c872c75b7  RSC-Linux/RPMS/hwdata-0.101.12-2.noarch.rpm
a35e71e7867b1008c8a798971d210ee9  RSC-Linux/RPMS/image2text-2004-1.i386.rpm
22e43760824884ecd4b6bd78462b2429  RSC-Linux/RPMS/ImageMagick-6.0.7.1-4.i386.rpm
f0edf345b04769e7549cb8ba6baa8205  RSC-Linux/RPMS/ImageMagick-c++-6.0.7.1-4.i386.rpm
c5e9860b6241700d24183269b6b36147  RSC-Linux/RPMS/ImageMagick-c++-devel-6.0.7.1-4.i386.rpm
394739fcd936cc78e8d807fa760658d7  RSC-Linux/RPMS/ImageMagick-devel-6.0.7.1-4.i386.rpm
cd88e16a8455cc430acf0366711ef626  RSC-Linux/RPMS/ImageMagick-perl-6.0.7.1-4.i386.rpm
0dc3112cfc3efe1d37feb149fe17b4de  RSC-Linux/RPMS/imap-2004a-1.i386.rpm
e04b323ada10e069a74928589db32a5a  RSC-Linux/RPMS/imap-devel-2004a-1.i386.rpm
2fff1373785b6bfde341decb49db1077  RSC-Linux/RPMS/imap-utils-2004a-1.i386.rpm
de6d13804fef3a63cb82935c58c1b3e0  RSC-Linux/RPMS/inet-monitoring-0.1.0-1.i386.rpm
4fa1ff1a476fb98a7714fd7a2a8110c4  RSC-Linux/RPMS/info-4.7-5.i386.rpm
0f3eab82031d8aa97504a5cd04020f2f  RSC-Linux/RPMS/initscripts-7.31.16-0.1.i386.rpm
40adb0df93940346bb7c27d136e02baf  RSC-Linux/RPMS/intltool-0.31.2-1.i386.rpm
5669cf63f873fe9b36615dec3125c2c6  RSC-Linux/RPMS/iproute-2.6.9-3.i386.rpm
7ae799cc12f83d4026439a5e916a7d9d  RSC-Linux/RPMS/iptables-1.2.11-3.2.i386.rpm
df4fe8778bb43726a572499b745b8a93  RSC-Linux/RPMS/iptables-devel-1.2.11-3.2.i386.rpm
62c93042a3539574b4484f3527bee036  RSC-Linux/RPMS/iptables-ipv6-1.2.11-3.2.i386.rpm
f98be4397318b7e70d023b37dd786cdf  RSC-Linux/RPMS/iptraf-2.7.0-11.i386.rpm
0ee9ef5cfdd832db28ed55880b0c9d2d  RSC-Linux/RPMS/iputils-20020927-16.i386.rpm
b4399a814a71c0c3dd749cec927e747b  RSC-Linux/RPMS/ipv6calc-0.48-2.i386.rpm
21f1fa1b31735b638d9c1046d8ca56b4  RSC-Linux/RPMS/irssi-0.8.10-0.9.i386.rpm
f1ecfd88d42d8482e30e41fb5251e720  RSC-Linux/RPMS/irssi-devel-0.8.10-0.9.i386.rpm
a0066e05a331f388ef32c2ce6594faaf  RSC-Linux/RPMS/jwhois-3.2.2-7.i386.rpm
ba685626b7ea2050bb5c2a8e50d15d16  RSC-Linux/RPMS/kbd-1.12-2.i386.rpm
c15321f643639f12d81c66830f5c67cf  RSC-Linux/RPMS/kernel-2.4.21-1.athlon.rpm
881b5f0573f0816cdf38df90b077b794  RSC-Linux/RPMS/kernel-2.4.21-1.i586.rpm
e49803c00fc661f6dc3cffe218c8d1f7  RSC-Linux/RPMS/kernel-2.4.21-1.i686.rpm
c21cbfd00e86950d5e340006f6f406e6  RSC-Linux/RPMS/kernel-doc-2.4.21-1.i386.rpm
d5cb33e360fd98f05fc03e7a0c1908ce  RSC-Linux/RPMS/kernel-source-2.4.21-1.i386.rpm
001a65129cb81ea96e625de7822df7e5  RSC-Linux/RPMS/kernel-utils-2.4-13.1.39.i386.rpm
90c3539a9782a6e8ad0e46ef139e40f6  RSC-Linux/RPMS/krb5-devel-1.3.5-1.i386.rpm
a66d869c9163d89001ead2e83357a82f  RSC-Linux/RPMS/krb5-libs-1.3.5-1.i386.rpm
c6cd4be7786055164f2880b585047d1a  RSC-Linux/RPMS/krb5-server-1.3.5-1.i386.rpm
e45c6bcf0e879f923a1ed4b7897c11a9  RSC-Linux/RPMS/krb5-workstation-1.3.5-1.i386.rpm
e181b488ce2725e09a07ffc78dba3ebe  RSC-Linux/RPMS/krbafs-1.2.2-6.i386.rpm
10e4d0f1b4c15c90a484cbbda6b9f619  RSC-Linux/RPMS/krbafs-devel-1.2.2-6.i386.rpm
8e021f3b9a9b1836e86b9d4fd783b562  RSC-Linux/RPMS/krbafs-utils-1.2.2-6.i386.rpm
f27b4f7ff954477df4409277e54d9762  RSC-Linux/RPMS/kudzu-1.1.36.3-1.i386.rpm
c87abfff3c11413f1c1af396b1c420a5  RSC-Linux/RPMS/kudzu-devel-1.1.36.3-1.i386.rpm
23e09313568ac6c67a6389a44eb14fe4  RSC-Linux/RPMS/less-382-4.i386.rpm
70795f9ff01314b62259b555cd541784  RSC-Linux/RPMS/lha-1.14i-17.i386.rpm
bdcd9b78d6ec35e9ea9e898e7f235560  RSC-Linux/RPMS/libacl-2.2.23-5.i386.rpm
b2b7de6430d849df20cf8a50a66d0422  RSC-Linux/RPMS/libacl-devel-2.2.23-5.i386.rpm
d32d735d8a28d195c19d9676b4265617  RSC-Linux/RPMS/libattr-2.4.16-2.i386.rpm
62c25a10f42156fae1eba22af3d1239f  RSC-Linux/RPMS/libattr-devel-2.4.16-2.i386.rpm
08c1d68fb98807ac8cc48cf1b06bcb8f  RSC-Linux/RPMS/libcap-1.10-20.i386.rpm
22ab8baca1534d069f13a93b0c95d50e  RSC-Linux/RPMS/libcap-devel-1.10-20.i386.rpm
6116a05cf60162c9871b22855a80b9f3  RSC-Linux/RPMS/libesmtp-1.0.3r1-2.i386.rpm
9f5aee0967b2b5fe95fae71c237a09e1  RSC-Linux/RPMS/libesmtp-devel-1.0.3r1-2.i386.rpm
e22abe2035b13b2dd8cd4f5226f189a9  RSC-Linux/RPMS/libf2c-3.2.3-42.i386.rpm
e5915aa620647c5ead197a5022a6c850  RSC-Linux/RPMS/libgcc-3.2.3-42.i386.rpm
e3f8c6cdb943d922c22f057cdc834903  RSC-Linux/RPMS/libgcj-3.2.3-42.i386.rpm
5fc57f8d06a11042e3651f5b09ed741e  RSC-Linux/RPMS/libgcj-devel-3.2.3-42.i386.rpm
06858040d90f9644b75c794a4ca63113  RSC-Linux/RPMS/libglade2-2.4.0-5.i386.rpm
c5e80c5fe640622a31cf87aac7311cf2  RSC-Linux/RPMS/libglade2-devel-2.4.0-5.i386.rpm
08df17cd7a0f0c3d465dbea98fcd475d  RSC-Linux/RPMS/libgnat-3.2.3-42.i386.rpm
48f9b286cb39a34ac0b569c2b4a85e28  RSC-Linux/RPMS/libidn-0.5.10-1.i386.rpm
609b1964cced10011de22cd98439734a  RSC-Linux/RPMS/libidn-devel-0.5.10-1.i386.rpm
10d53b5527dabef5f9e22c1832d07f4a  RSC-Linux/RPMS/libjpeg-6b-33.i386.rpm
7f7f8774431197e81515db15c9db6752  RSC-Linux/RPMS/libjpeg-devel-6b-33.i386.rpm
cda569a4ee0b71f5ca69874068cd17d1  RSC-Linux/RPMS/libmng-1.0.8-1.i386.rpm
4a2ec07fab0a1ca45c5be918d4705f6b  RSC-Linux/RPMS/libmng-devel-1.0.8-1.i386.rpm
8093fc3487ec1dbb53900f3023de288c  RSC-Linux/RPMS/libmng-static-1.0.8-1.i386.rpm
0f458c9005bca2cda7844a3bd57560e3  RSC-Linux/RPMS/libobjc-3.2.3-42.i386.rpm
bf9de88e9aa6a567352722fd41a5a62b  RSC-Linux/RPMS/libpcap-0.8.3-7.i386.rpm
07f449b06e46796d83d58122fe9082ef  RSC-Linux/RPMS/libpng-1.2.7-1.i386.rpm
fc089d7110bb238fe7fe0094a409037c  RSC-Linux/RPMS/libpng-devel-1.2.7-1.i386.rpm
40c758bdd84399dbc2ab9b6c5c34eb42  RSC-Linux/RPMS/libstdc++-3.2.3-42.i386.rpm
347e773f27e26acdf51a8c1da5472a94  RSC-Linux/RPMS/libstdc++-devel-3.2.3-42.i386.rpm
b919b216c4e59d5d1fec56c8f41f3829  RSC-Linux/RPMS/libtermcap-2.0.8-39.i386.rpm
41b3bcf836340b639b70008e80746d61  RSC-Linux/RPMS/libtermcap-devel-2.0.8-39.i386.rpm
39f053989dc6adfc11b63e96f645eadb  RSC-Linux/RPMS/libtiff-3.6.1-7.i386.rpm
9eae1be56344007a9bc35f8406ebae11  RSC-Linux/RPMS/libtiff-devel-3.6.1-7.i386.rpm
b49203327ac2071c241b8d1da9754938  RSC-Linux/RPMS/libtool-1.5.10-1.i386.rpm
f8f85bf136bc10f172a1f561ad0cbf5b  RSC-Linux/RPMS/libtool-libs-1.5.10-1.i386.rpm
df1d1a586fd1e7bc75132a58323fe59c  RSC-Linux/RPMS/libungif-4.1.3-1.i386.rpm
bc82884e0cb1e7a1dd770beb625c0e2f  RSC-Linux/RPMS/libungif-devel-4.1.3-1.i386.rpm
2e615723a8b0c099f887818d31169b3a  RSC-Linux/RPMS/libungif-progs-4.1.3-1.i386.rpm
8633bde30b74ccdef514caf1511743d4  RSC-Linux/RPMS/libuser-0.52.6-1.i386.rpm
8d952d0782b87ad3a2f40567f0d16359  RSC-Linux/RPMS/libuser-devel-0.52.6-1.i386.rpm
e421dd28e070f55b48eeeddd765c0838  RSC-Linux/RPMS/libxml2-2.6.15-1.i386.rpm
69d7d84010bd26dcca56d4dbb73757aa  RSC-Linux/RPMS/libxml2-devel-2.6.15-1.i386.rpm
342656702a9d30ba1600ac1f2a468a9e  RSC-Linux/RPMS/libxml2-python-2.6.15-1.i386.rpm
3e6a9102ffc7b2f57ac9f3191d0929d2  RSC-Linux/RPMS/libxslt-1.1.11-1.i386.rpm
0aa683867feff875ff6b303a28408a0a  RSC-Linux/RPMS/libxslt-devel-1.1.11-1.i386.rpm
8b06258dcedacfdb9ac6989a28c57ad6  RSC-Linux/RPMS/libxslt-python-1.1.11-1.i386.rpm
ddcc9b7c033409184307ecf9ed29b8ef  RSC-Linux/RPMS/lm_sensors-2.8.7-2.i386.rpm
1350bcb30c538122b0aee141b9edb862  RSC-Linux/RPMS/lm_sensors-devel-2.8.7-2.i386.rpm
9bd1b5146bb9fb6c1bc69a756fdd36a5  RSC-Linux/RPMS/lockdev-1.0.1-4.i386.rpm
5de1ca0310205d0ce9922f673213ad87  RSC-Linux/RPMS/lockdev-devel-1.0.1-4.i386.rpm
8ac04c63a73dbe2bbc0978d18e5a7821  RSC-Linux/RPMS/logrotate-3.7.1-2.i386.rpm
cd8a6cc235c14c6f644a5b311adc1a11  RSC-Linux/RPMS/logwatch-5.2.2-1.noarch.rpm
306aa8a982c59ab2b087cb59e95b8ab5  RSC-Linux/RPMS/lsof-4.72-1.i386.rpm
b2a04e6640fc6a1031e0cab7f619fc06  RSC-Linux/RPMS/lvm-1.0.3-19.0.i386.rpm
a010359a0ec7c6e2c58da56f8e313522  RSC-Linux/RPMS/lynx-2.8.5-18.i386.rpm
dba4fabce4527336273dfff91eb350ba  RSC-Linux/RPMS/m4-1.4.1-16.i386.rpm
8f282605e08c9a395d299f902bc57baf  RSC-Linux/RPMS/mailcap-2.1.17-1.noarch.rpm
7580aee200159fffebb5ac551da8e4fe  RSC-Linux/RPMS/mailx-8.1.1-37.i386.rpm
407329e7a3a9f381445233047cc0366e  RSC-Linux/RPMS/make-3.80-5.i386.rpm
1a527e882e45d7b73ee6da81bc17bcd3  RSC-Linux/RPMS/MAKEDEV-3.3.13-1.i386.rpm
0b87d812ebe0577f2c06cba5615a832f  RSC-Linux/RPMS/man-1.5m2-9.i386.rpm
f46348103929c1e62ad83e8b16702a31  RSC-Linux/RPMS/man-pages-1.67-3.noarch.rpm
3ddea048a1b8f832485c84f935072a63  RSC-Linux/RPMS/man-pages-de-0.4-9.noarch.rpm
e77e0dea44216814d48e80bb4ba992f4  RSC-Linux/RPMS/memtest86+-1.27-1.i386.rpm
c55b437505b1bd5c9d7409072536d50c  RSC-Linux/RPMS/mimedefang-2.47-1.i386.rpm
c8338f3519aceeb0093fccd74eccd042  RSC-Linux/RPMS/mingetty-1.07-3.i386.rpm
5fb4c96838dbed9238920ef758388c42  RSC-Linux/RPMS/mkbootdisk-1.5.2-4.i386.rpm
24feb7ef9a80e30da343039cac1dd98e  RSC-Linux/RPMS/mkinitrd-3.5.24-1.i386.rpm
7434a92ef8b607fc42c9007db8f34d2b  RSC-Linux/RPMS/mkisofs-2.01.1-5.i386.rpm
327aa06eeb0ad018d4b426dc54fc3382  RSC-Linux/RPMS/mktemp-1.5-21.i386.rpm
42e1f3d8f258121376cc716c48be97bd  RSC-Linux/RPMS/mod_perl-1.99_17-0.i386.rpm
42f49a27215d0bb5a48bc0fc2b7c3e82  RSC-Linux/RPMS/mod_perl-devel-1.99_17-0.i386.rpm
4cb51dca75b2f55ef29e98a9dc71da22  RSC-Linux/RPMS/mod_python-3.1.3-5.i386.rpm
18f3860a3879b7b288d71181f57a3800  RSC-Linux/RPMS/mod_ssl-2.0.52-3.i386.rpm
f056e10298e051177af81729159eda7d  RSC-Linux/RPMS/modutils-2.4.27-2.i386.rpm
ff98412ef9151f057b09fc533242aaf4  RSC-Linux/RPMS/modutils-devel-2.4.27-2.i386.rpm
13b1ec1a16b22894895ba4404f6bc616  RSC-Linux/RPMS/mtools-3.9.9-9.i386.rpm
09bed4deac6d5048a0132b09e833bfaf  RSC-Linux/RPMS/mtr-0.54-10.i386.rpm
1c052be32a901d3b5ef1434e714c10a4  RSC-Linux/RPMS/mtr-gtk-0.54-10.i386.rpm
acc34988df5fb2bf307659ef429be41d  RSC-Linux/RPMS/mt-st-0.8-1.i386.rpm
50ee70a88d9f0d34fdb00ba8782e2976  RSC-Linux/RPMS/mutt-1.5.6-0.i386.rpm
9a764190e62e20e0e2f7bbcd39cc0c3b  RSC-Linux/RPMS/mysql-4.1.7-3.i386.rpm
8594f574e218f28f4c197f8bd40dcf89  RSC-Linux/RPMS/mysql-bench-4.1.7-3.i386.rpm
77fec7ae2c70bf287e4fc4dde9cf1eac  RSC-Linux/RPMS/mysql-devel-4.1.7-3.i386.rpm
23869b4c22ac79ab57bf72685e7f6ee1  RSC-Linux/RPMS/mysql-server-4.1.7-3.i386.rpm
42acc8d4505ce4b61aef9f87908c7fc9  RSC-Linux/RPMS/nano-1.2.4-1.i386.rpm
418e4f0f44f689a09341f41966fc37d4  RSC-Linux/RPMS/nasm-0.98.38-3.i386.rpm
0de8034c323b8897860b75a136abb42a  RSC-Linux/RPMS/nasm-doc-0.98.38-3.i386.rpm
55c033e47d155a2c8e801a52753bb512  RSC-Linux/RPMS/nasm-rdoff-0.98.38-3.i386.rpm
3f540b217924e85571c2c0e595388fca  RSC-Linux/RPMS/ncftp-3.1.8-2.i386.rpm
8bfa972a8770f0a08ebb618edc3bf44a  RSC-Linux/RPMS/ncurses-5.4-13.i386.rpm
0fbd183baf80b9d7369ea8d5c430b64c  RSC-Linux/RPMS/ncurses-devel-5.4-13.i386.rpm
c19d6b00d70bf66d3ea09413c1d239e6  RSC-Linux/RPMS/netconfig-0.8.21-1.i386.rpm
e38222bdadec97a0576eae45bb9cbdee  RSC-Linux/RPMS/netpbm-10.25-3.i386.rpm
37c631a34598d6c0335795c60624c652  RSC-Linux/RPMS/netpbm-devel-10.25-3.i386.rpm
f6fe80192c5ef2e4a072e79e09996fe4  RSC-Linux/RPMS/netpbm-progs-10.25-3.i386.rpm
bb62e020dfaab6c870cd6d7f626ba0e9  RSC-Linux/RPMS/net-snmp-5.1.2-11.i386.rpm
f54cd97baace02602a37b9eff61330ec  RSC-Linux/RPMS/net-snmp-devel-5.1.2-11.i386.rpm
ec24d2eee08657d240e1bc4570c86927  RSC-Linux/RPMS/net-snmp-libs-5.1.2-11.i386.rpm
616d1da89de0a3d21a7a56f0cdb0fd7c  RSC-Linux/RPMS/net-snmp-perl-5.1.2-11.i386.rpm
db67b65bd736c3a43f5faec88fb1f6f4  RSC-Linux/RPMS/net-snmp-utils-5.1.2-11.i386.rpm
3bb203797a69b2ee277901ed2577bb94  RSC-Linux/RPMS/net-tools-1.60-40.i386.rpm
16ecc4c0425d77c380f177973bb00614  RSC-Linux/RPMS/newt-0.51.6-5.i386.rpm
4ec77d0e3055ce3574692a674e17fc20  RSC-Linux/RPMS/newt-devel-0.51.6-5.i386.rpm
04c8a3c4bd85dce7db36e3e824e72134  RSC-Linux/RPMS/nmap-3.70-1.i386.rpm
56450b00ad8a7df258ce3b04ab6711ad  RSC-Linux/RPMS/nmap-frontend-3.70-1.i386.rpm
73118b3af587887aa06d0b7a9976ed9e  RSC-Linux/RPMS/nptl-devel-2.3.2-95.27.i686.rpm
325d9136e95231e41bc6299f84844784  RSC-Linux/RPMS/nscd-2.3.2-95.27.i386.rpm
b29410fa3fb793f3fdc57979123c0ee7  RSC-Linux/RPMS/ntp-4.2.0.a.20040617-4.i386.rpm
d10076cee0b020139ca8f7560072f266  RSC-Linux/RPMS/ntsysv-1.3.11.1-1.i386.rpm
0435f6da1747fc546a1a1d464774dd2f  RSC-Linux/RPMS/office2text-2004-1.i386.rpm
3424e15c853292d65cf26ad20e1be23b  RSC-Linux/RPMS/openldap-2.2.13-2.i386.rpm
412187a836d2a163aef7378c398101b1  RSC-Linux/RPMS/openldap-clients-2.2.13-2.i386.rpm
5c364319324c3098dc121b8da2e40f32  RSC-Linux/RPMS/openldap-devel-2.2.13-2.i386.rpm
1fca5af624c41d807f9b3d0940c64f0a  RSC-Linux/RPMS/openldap-servers-2.2.13-2.i386.rpm
7dacd562a993d80ab843097aed518a85  RSC-Linux/RPMS/openssh-3.9p1-7.i386.rpm
66b8af66c314a0c91883e9d20ee0dd3d  RSC-Linux/RPMS/openssh-clients-3.9p1-7.i386.rpm
64f46ed920aff50a344c8191a5fbab0c  RSC-Linux/RPMS/openssh-server-3.9p1-7.i386.rpm
dc554894c941bfb7c88d9a4048ffa99d  RSC-Linux/RPMS/openssl-0.9.7a-40.i386.rpm
bf84040838372806f1700bf1796264d3  RSC-Linux/RPMS/openssl-0.9.7a-40.i686.rpm
7c5a2a99cab93af1440ee424ef8ffce8  RSC-Linux/RPMS/openssl-devel-0.9.7a-40.i386.rpm
6586fef6e060f09f35f33af3f9401caa  RSC-Linux/RPMS/openssl-perl-0.9.7a-40.i386.rpm
9a15b1ad4ba5a7e5db0148633d6c2eda  RSC-Linux/RPMS/pam-0.77-63.i386.rpm
9db581242af9f068161429c6d1fe36d1  RSC-Linux/RPMS/pam-devel-0.77-63.i386.rpm
32ea02fd784b59ffea6111de2e15f487  RSC-Linux/RPMS/pam_krb5-2.1.2-1.i386.rpm
020d13d88aae99c11b1d670d18b2ac8c  RSC-Linux/RPMS/pango-1.6.0-6.i386.rpm
e7eeb80991a4ed6f1f12edbbf45c4925  RSC-Linux/RPMS/pango-devel-1.6.0-6.i386.rpm
eb6c06afa35298b45fa27e4b78c2a63c  RSC-Linux/RPMS/parted-1.6.15-5.i386.rpm
d9bc75a1a46317f949109a7923015ef1  RSC-Linux/RPMS/parted-devel-1.6.15-5.i386.rpm
55dfa668afb768da76b5298cae02b06b  RSC-Linux/RPMS/passwd-0.68-9.i386.rpm
8e567e1aa4246cd901b455b8e167975e  RSC-Linux/RPMS/patch-2.5.4-20.i386.rpm
dc1dad8868c0e6dbab8b0ac9e827ccc2  RSC-Linux/RPMS/pax-3.0-10.i386.rpm
61c8aa4136ce43dbc494a772f12485e4  RSC-Linux/RPMS/pciutils-2.1.99.test8-3.i386.rpm
9728fe59e7045e6d418cde6f08ad9c5f  RSC-Linux/RPMS/pciutils-devel-2.1.99.test8-3.i386.rpm
1092f4f889078c73f661d71b6d8910d7  RSC-Linux/RPMS/pcre-4.5-3.i386.rpm
e0215b001db08b1708121773af76b939  RSC-Linux/RPMS/pcre-devel-4.5-3.i386.rpm
2f3892ed4d3d1189319019b1e5a1fdfc  RSC-Linux/RPMS/perl-5.8.5-9.i386.rpm
d01e48de2ca343fddc8996ec1cdbe10b  RSC-Linux/RPMS/perl-Convert-BinHex-1.119-1.noarch.rpm
0e8fdb01d5591401cb4bedde623e3c8a  RSC-Linux/RPMS/perl-DateManip-5.42a-3.noarch.rpm
c4923eda50d84c35e0b1bf6287f9eb4f  RSC-Linux/RPMS/perl-DBD-MySQL-2.9004-0.1.i386.rpm
30e34e076e6eb918d1a561afeb6df2c2  RSC-Linux/RPMS/perl-DBI-1.40-5.i386.rpm
5b45aff2afb8992a018e2842ccc6964e  RSC-Linux/RPMS/perl-Digest-HMAC-1.01-13.noarch.rpm
aa9dfa60d65724679d5abe1a2cfae913  RSC-Linux/RPMS/perl-Digest-SHA1-2.07-5.i386.rpm
b4affd2627b40df4759d15dd8588de27  RSC-Linux/RPMS/perl-Filter-1.30-6.i386.rpm
cdd61d0722a9680f5a5e27b4ca345253  RSC-Linux/RPMS/perl-HTML-Parser-3.35-6.i386.rpm
b8757ce2ba2e46349967eef918cd097a  RSC-Linux/RPMS/perl-HTML-Tagset-3.03-30.noarch.rpm
2c9bcf5bf366e5c40537f208656abdc4  RSC-Linux/RPMS/perl-IO-stringy-2.109-2.i386.rpm
a3a77795d47e5cd6781f8ee924176690  RSC-Linux/RPMS/perl-libwww-perl-5.79-5.noarch.rpm
4f132c00d5c3fe2b1b6d550459373566  RSC-Linux/RPMS/perl-MailTools-1.64-1.noarch.rpm
960a00d0872d30b63c37daf1e6347f63  RSC-Linux/RPMS/perl-MIME-tools-5.415-1.noarch.rpm
4db98c645044306431a5fd70e6f4f533  RSC-Linux/RPMS/perl-Net-DNS-0.48-1.i386.rpm
23ce1aa3291253a9db8a0ce1e8a8a269  RSC-Linux/RPMS/perl-Net-LibIDN-0.07-2.i386.rpm
daa7f730d9d44caa445fc62a6883b40e  RSC-Linux/RPMS/perl-suidperl-5.8.5-9.1.i386.rpm
77bb2c2293b571c30eb7f53ec1f70306  RSC-Linux/RPMS/perl-Text-Iconv-1.4-2.i386.rpm
ac556395e9e3bb581eb7811e76672b35  RSC-Linux/RPMS/perl-TimeDate-1.16-2.noarch.rpm
90b81feb076eb3a2190d2fc168e8c3a9  RSC-Linux/RPMS/perl-Time-HiRes-1.55-3.i386.rpm
0a22725058e5935b69fd69d85795da27  RSC-Linux/RPMS/perl-URI-1.30-4.noarch.rpm
baba72011e7062289634e456e5487078  RSC-Linux/RPMS/perl-XML-Parser-2.34-5.i386.rpm
b259b1981e7702e3e233f810336527da  RSC-Linux/RPMS/php-4.3.9-4.i386.rpm
7cff2e7e1e5dcdb39f853446f44a992a  RSC-Linux/RPMS/php-devel-4.3.9-4.i386.rpm
b961484bc9198dd2a7eac1b82a7128b7  RSC-Linux/RPMS/php-domxml-4.3.9-4.i386.rpm
acf847c2a39a322466215a9fe3bf80b7  RSC-Linux/RPMS/php-gd-4.3.9-4.i386.rpm
bd0cfdc0004b90f586a69dfa6cf917f9  RSC-Linux/RPMS/php-idn-1.0-3.i386.rpm
987c4d43eacaf781404cae0a185107c0  RSC-Linux/RPMS/php-imap-4.3.9-4.i386.rpm
0612b8640207f6490c4bb46f10ee74aa  RSC-Linux/RPMS/php-ldap-4.3.9-4.i386.rpm
2e535a1babcd66248011cb5566166e81  RSC-Linux/RPMS/php-mbstring-4.3.9-4.i386.rpm
c487b1d52e6e9cbf4f74e9d1a23731b7  RSC-Linux/RPMS/php-mysql-4.3.9-4.i386.rpm
070603bec3460e6d032c7ba56410a793  RSC-Linux/RPMS/php-ncurses-4.3.9-4.i386.rpm
7299b642711d0a7b4463e3471d2fc128  RSC-Linux/RPMS/php-pear-4.3.9-4.i386.rpm
f065d434439f0d113c80fd0499d3babd  RSC-Linux/RPMS/php-snmp-4.3.9-4.i386.rpm
07ee31ad00f56b6ef084ec0759545516  RSC-Linux/RPMS/php-xmlrpc-4.3.9-4.i386.rpm
c0c0273e8d06cad240aced728aa975b1  RSC-Linux/RPMS/pinfo-0.6.8-7.i386.rpm
51610f13bc8a3742f27fd4f800408fbd  RSC-Linux/RPMS/pkgconfig-0.15.0-3.i386.rpm
aac6b1ffc31fe9ad4f7fadd87f540167  RSC-Linux/RPMS/popt-1.8.2-10.i386.rpm
19411c99b8b8f904645dece33d1f0769  RSC-Linux/RPMS/ppp-2.4.2-7.i386.rpm
1b7fbdbbe8b1525cf2415e543986810a  RSC-Linux/RPMS/procmail-3.22-15.i386.rpm
2b4a3f7ae2f6b4efef4157331cafc14a  RSC-Linux/RPMS/procps-3.2.3-6.i386.rpm
e07dfc7e97cc315cb188d31f280ae45f  RSC-Linux/RPMS/proftpd-1.2.10-1.i386.rpm
75e31e4254092e045b2df77277355ca6  RSC-Linux/RPMS/psmisc-21.4-4.i386.rpm
095906596d6803b6a380e01e3f07c9fb  RSC-Linux/RPMS/pump-devel-0.8.21-1.i386.rpm
4fada802cfc88fb4a566a78f59d2adde  RSC-Linux/RPMS/pyparted-1.6.8-2.i386.rpm
3aaa702304806cd265af90feea2008d8  RSC-Linux/RPMS/python-2.3.4-11.i386.rpm
6336e60f7f14f9f7891369dc7a2b279d  RSC-Linux/RPMS/python-devel-2.3.4-11.i386.rpm
f82b663236b2c20c46c252958f6527ed  RSC-Linux/RPMS/python-docs-2.3.4-11.i386.rpm
a8df396b68e21e554262cbf186b2e09f  RSC-Linux/RPMS/python-tools-2.3.4-11.i386.rpm
dc9c6a2dc786e7406efaae2d7d00af7f  RSC-Linux/RPMS/pyxf86config-0.3.19-1.i386.rpm
b7640afb7ba43a4e2e1e9ff27b9790b9  RSC-Linux/RPMS/quota-3.12-5.i386.rpm
ead9746e580fccb63af1acb0709222f9  RSC-Linux/RPMS/readline-4.3-13.i386.rpm
c6cfebd573877966274071a396faf1d7  RSC-Linux/RPMS/readline-devel-4.3-13.i386.rpm
e4093117977281af1c484669e6fdbb04  RSC-Linux/RPMS/rhpl-0.147-1.i386.rpm
00c3adb025cea2cb3baa42ff47cbe61a  RSC-Linux/RPMS/rktime-0.6-1.noarch.rpm
9bdc70b8cff71ab5676d657f65906260  RSC-Linux/RPMS/rmt-0.4b37-1.i386.rpm
9177b04d2f6ab1e24407252e556c2b1f  RSC-Linux/RPMS/rootfiles-8-1.noarch.rpm
afb2482e6cee49a83cfd6336364972a7  RSC-Linux/RPMS/rpm-4.2.3-10.i386.rpm
ce344eb940837fa5410bd2ab5598b21c  RSC-Linux/RPMS/rpm-build-4.2.3-10.i386.rpm
5b0558eefedecffc3d599743845f9c91  RSC-Linux/RPMS/rpm-devel-4.2.3-10.i386.rpm
83fd2f3e7d115f25f153b28de4be3f6d  RSC-Linux/RPMS/rpm-libs-4.2.3-10.i386.rpm
c568ac7108ad2027552a36012e185e70  RSC-Linux/RPMS/rpm-python-4.2.3-10.i386.rpm
1b423521966680e7ecec88f513c2055a  RSC-Linux/RPMS/rp-pppoe-3.5-22.i386.rpm
62cf051f5536ef15a1e70ce410907e9f  RSC-Linux/RPMS/rrdtool-1.0.49-2.i386.rpm
62e7f8e9ba87e69ba3768c0d0269c2e4  RSC-Linux/RPMS/rrdtool-devel-1.0.49-2.i386.rpm
4495423a72aeec78a7e275030357cce7  RSC-Linux/RPMS/rsc-linux-release-0.0.1-1.i386.rpm
d452e13746329ddabe792f9e6028476c  RSC-Linux/RPMS/rsync-2.6.3-1.i386.rpm
7867033760b58c429ab73716ee3be47b  RSC-Linux/RPMS/screen-4.0.2-5.i386.rpm
bf31eeaf90a02fbbb416bbccee6be4b4  RSC-Linux/RPMS/sed-4.1.2-4.i386.rpm
39a3b788ef238c59d982097b786b557b  RSC-Linux/RPMS/sendmail-8.13.1-2.1.i386.rpm
911c076aacc44a666fc6b2f96f821ec0  RSC-Linux/RPMS/sendmail-cf-8.13.1-2.1.i386.rpm
390bfe33186ae6a25bad8d8b960128f0  RSC-Linux/RPMS/sendmail-devel-8.13.1-2.1.i386.rpm
08a9bf167086dc63d3ba553fe3164768  RSC-Linux/RPMS/sendmail-doc-8.13.1-2.1.i386.rpm
1211f4dba99680c5049b8084a6e1f69e  RSC-Linux/RPMS/setserial-2.17-17.i386.rpm
1df34ece185ebe4e37b4158fb66f7ba9  RSC-Linux/RPMS/setup-2.5.37-2.noarch.rpm
9fb31e85c7ba67c1b1dbc3ca6f0b9e94  RSC-Linux/RPMS/setuptool-1.17-2.i386.rpm
15b2830f9a1fa80109b59de67c2c1a32  RSC-Linux/RPMS/sgml-common-0.6.3-17.noarch.rpm
f02c73fe2f9f7fb9c6ec65e21f572a87  RSC-Linux/RPMS/shadow-utils-4.0.3-40.i386.rpm
2178fa13b7f9e585dac240d0574c8177  RSC-Linux/RPMS/sharutils-4.2.1-22.i386.rpm
d59db47e6a6d1bbf02321182fec24e34  RSC-Linux/RPMS/slang-1.4.9-7.i386.rpm
9a8c5df376841f09813493e113f4ad02  RSC-Linux/RPMS/slang-devel-1.4.9-7.i386.rpm
40ac37836e9de30b233554066f90fe14  RSC-Linux/RPMS/slocate-2.7-13.i386.rpm
4fec31ac6d09b990e16c39a674e73e1d  RSC-Linux/RPMS/spamassassin-3.0.0-3.i386.rpm
b5386fca5bdc89c25ba032c2a6a2f66b  RSC-Linux/RPMS/specspo-9.0.92-1.3.noarch.rpm
9e66197c13c9905145db8418cab25c2c  RSC-Linux/RPMS/squid-2.5.STABLE7-1.i386.rpm
9d3db0baf7a97b16c1d6e24d9938ad5f  RSC-Linux/RPMS/star-1.5a25-6.i386.rpm
0fe3f67fdf938c88928351425e2c2b1b  RSC-Linux/RPMS/strace-4.5.8-1.i386.rpm
616aa4071aca5883eb269282495af9b1  RSC-Linux/RPMS/sudo-1.6.7p5-30.1.i386.rpm
6472c8c5e8f33901e3196ff843319f17  RSC-Linux/RPMS/symlinks-1.2-22.i386.rpm
d1da10d317f2fa8156e851669806018f  RSC-Linux/RPMS/sysklogd-1.4.1-22.i386.rpm
a22db77202d720791a41cedbd6731b67  RSC-Linux/RPMS/syslinux-2.11-1.i386.rpm
8491fda4aaa0a08c3f230511eab0e767  RSC-Linux/RPMS/system-config-date-1.7.10-1.noarch.rpm
b0b86e0c500fa146d8f33572201c4d0f  RSC-Linux/RPMS/system-config-keyboard-1.2.5-1.noarch.rpm
acb2361c27074ed3c76434387350c930  RSC-Linux/RPMS/system-config-mouse-1.2.9-1.noarch.rpm
776c34e47af190c5cba2813dd9104a67  RSC-Linux/RPMS/SysVinit-2.85-34.i386.rpm
9285602fecc06311a1b642563d591bfb  RSC-Linux/RPMS/tar-1.14-4.i386.rpm
e413a2fde0ed16816c11eec646e0a524  RSC-Linux/RPMS/tcl-8.4.7-2.i386.rpm
a989e25e6934f782b1e76146e1ee1c2d  RSC-Linux/RPMS/tcl-devel-8.4.7-2.i386.rpm
4a23dd410f4cd03658dd9d42b68fa6bf  RSC-Linux/RPMS/tcl-html-8.4.7-2.i386.rpm
f48731a530cbe457fa387d7544600382  RSC-Linux/RPMS/tcpdump-3.8.2-7.i386.rpm
e7f4bbe09936adac0614e5cce70bbeb5  RSC-Linux/RPMS/tcpick-0.1.24-1.i386.rpm
ba8c686c881492635ea2bfe5410557fd  RSC-Linux/RPMS/tcp_wrappers-7.6-37.2.i386.rpm
a2628251ed00812b53a38e11199e0dce  RSC-Linux/RPMS/tcsh-6.13-9.i386.rpm
0420fae884e3943e60ecf37d028f4e1c  RSC-Linux/RPMS/telnet-0.17-30.i386.rpm
c83a655664940a149e0124bef8984e32  RSC-Linux/RPMS/telnet-server-0.17-30.i386.rpm
6a457a613fbc3f76afe8707680f7939b  RSC-Linux/RPMS/termcap-5.4-3.noarch.rpm
a0600877b28d4397878deda5bbf9913d  RSC-Linux/RPMS/texinfo-4.7-5.i386.rpm
a2a95458e32a0f462727ea0d3758ead7  RSC-Linux/RPMS/time-1.7-25.i386.rpm
58473700dcf9628453cf4b276be4a2dd  RSC-Linux/RPMS/tix-8.1.4-98.i386.rpm
59fad3c9e3814573a12eb091c20bcfa2  RSC-Linux/RPMS/tix-devel-8.1.4-98.i386.rpm
405eac32b67c7ef15c634f015f8378dd  RSC-Linux/RPMS/tix-doc-8.1.4-98.i386.rpm
b03f0101fbb3aa4082c87c8e43a6d31e  RSC-Linux/RPMS/tk-8.4.7-2.i386.rpm
02cf42e482e67576285a653dd838974e  RSC-Linux/RPMS/tk-devel-8.4.7-2.i386.rpm
ff40d08d9a7e2441b52bff1e78148348  RSC-Linux/RPMS/tkinter-2.3.4-11.i386.rpm
1d57ef801f44aca1ff988a3bab1085a8  RSC-Linux/RPMS/tmpwatch-2.9.1-1.i386.rpm
65b8d5fe2695abef5fafadf21802384b  RSC-Linux/RPMS/traceroute-1.4a12-24.i386.rpm
d012001ecd44d991bbf52dbd81705be1  RSC-Linux/RPMS/tree-1.5.0-1.i386.rpm
7d1dc52b617d2659ed503e07ff10a110  RSC-Linux/RPMS/ttmkfdir-3.0.9-14.i386.rpm
f5a34a34248a0a2263d1d4661ac647dc  RSC-Linux/RPMS/tzdata-2004e-2.noarch.rpm
3b7ee83cf3282347638df7ea42549ea6  RSC-Linux/RPMS/unix2dos-2.2-24.i386.rpm
bfb470359cfcb6a10fbef40a889e746e  RSC-Linux/RPMS/unrar-3.4.3-1.i386.rpm
1e78683eee30dff3e3cbe4ef08f98b68  RSC-Linux/RPMS/unzip-5.51-4.i386.rpm
6df81ac3ad73e121a2d41a92148e5767  RSC-Linux/RPMS/usbutils-0.11-6.1.i386.rpm
67b0505e2ff745b3c35a699652a0270d  RSC-Linux/RPMS/usermode-1.75-1.i386.rpm
a64b944670b501fe8b496974089922e9  RSC-Linux/RPMS/usermode-gtk-1.75-1.i386.rpm
1b7715b19a54d192596800bb0cfc4de8  RSC-Linux/RPMS/utempter-0.5.5-5.i386.rpm
7568ff68112c32608908726ac0b82fdc  RSC-Linux/RPMS/util-linux-2.12a-16.i386.rpm
d928d9ebcfe2c838758071560ceec3df  RSC-Linux/RPMS/vim-common-6.3.030-3.i386.rpm
849c1a9d26c9c232b088e129f1ea5fb2  RSC-Linux/RPMS/vim-enhanced-6.3.030-3.i386.rpm
36e7cffb3b64c27ddc9e645667177858  RSC-Linux/RPMS/vim-minimal-6.3.030-3.i386.rpm
df9072b8b98a609ef568d61fc9193085  RSC-Linux/RPMS/vixie-cron-4.1-19.i386.rpm
2fa68f5bcd9bee9f36571f505992b8a1  RSC-Linux/RPMS/vnstat-1.4-1.i386.rpm
3016527494ac36137ffb407be2ec1efe  RSC-Linux/RPMS/w3m-0.5.1-4.i386.rpm
82fe55583d400e970f77572f492ce889  RSC-Linux/RPMS/w3m-img-0.5.1-4.i386.rpm
ed9f946a388a9132ef5789d3d5ec31f2  RSC-Linux/RPMS/webalizer-2.01_10-25.i386.rpm
36e97064f4b85c3017477f7d2c932529  RSC-Linux/RPMS/wget-1.9.1-17.i386.rpm
206fe44aa34ec3a6593c24a178ddfbf6  RSC-Linux/RPMS/which-2.16-4.i386.rpm
fecb05580610df5a03788ce47d836ffc  RSC-Linux/RPMS/words-3.0-2.noarch.rpm
a934b2331b5d73fe5e8261558314b29f  RSC-Linux/RPMS/XFree86-100dpi-fonts-4.3.0-69.i386.rpm
aefc705f06a1b583f2f397e00672f0bb  RSC-Linux/RPMS/XFree86-4.3.0-69.i386.rpm
1641c22ed53bce1e5c51805ffe651b44  RSC-Linux/RPMS/XFree86-75dpi-fonts-4.3.0-69.i386.rpm
e56de1e5859c0aacff506328f22bfe27  RSC-Linux/RPMS/XFree86-base-fonts-4.3.0-69.i386.rpm
c2405e3f890985bfccd3bdef60ec3115  RSC-Linux/RPMS/XFree86-cyrillic-fonts-4.3.0-69.i386.rpm
249dfda99333b58c405009411485f163  RSC-Linux/RPMS/XFree86-devel-4.3.0-69.i386.rpm
3a1c0bc28cdcb97a186cd6f49eacefe0  RSC-Linux/RPMS/XFree86-doc-4.3.0-69.i386.rpm
ea0a48f922ec63a675235a5e4ef4cc8b  RSC-Linux/RPMS/XFree86-font-utils-4.3.0-69.i386.rpm
8d67a14242a54088c8f887d7f17145fd  RSC-Linux/RPMS/XFree86-ISO8859-14-100dpi-fonts-4.3.0-69.i386.rpm
a30469ef56e8e0ad4390da695f8b2e5a  RSC-Linux/RPMS/XFree86-ISO8859-14-75dpi-fonts-4.3.0-69.i386.rpm
d3bd9be1f15d7a9d5480bfc47dbfcef4  RSC-Linux/RPMS/XFree86-ISO8859-15-100dpi-fonts-4.3.0-69.i386.rpm
ec12206519d56a3ee0242466463d045b  RSC-Linux/RPMS/XFree86-ISO8859-15-75dpi-fonts-4.3.0-69.i386.rpm
a301c8172ef56359033e8e076ba61d98  RSC-Linux/RPMS/XFree86-ISO8859-2-100dpi-fonts-4.3.0-69.i386.rpm
a44d65494f4bea087bd06aaf2c3d9ee1  RSC-Linux/RPMS/XFree86-ISO8859-2-75dpi-fonts-4.3.0-69.i386.rpm
8c6bcb02cb20c9fdf93f74c09d05d79d  RSC-Linux/RPMS/XFree86-ISO8859-9-100dpi-fonts-4.3.0-69.i386.rpm
ffa86cb861205eb62129c940eb2560c6  RSC-Linux/RPMS/XFree86-ISO8859-9-75dpi-fonts-4.3.0-69.i386.rpm
4d99ccd786eea440cccb5b60b0b5dd70  RSC-Linux/RPMS/XFree86-libs-4.3.0-69.i386.rpm
3bdb71f4b3db45af54088cdaf499bfc5  RSC-Linux/RPMS/XFree86-libs-data-4.3.0-69.i386.rpm
7969b565ccec0944920fc9a93e33d6bb  RSC-Linux/RPMS/XFree86-Mesa-libGL-4.3.0-69.i386.rpm
0fea1e7a331b82efb50004135aff7102  RSC-Linux/RPMS/XFree86-Mesa-libGLU-4.3.0-69.i386.rpm
c6c0a2105236e27044cb7e28ef8c186d  RSC-Linux/RPMS/XFree86-syriac-fonts-4.3.0-69.i386.rpm
3d9776f67157401ac278d5b6c5a8f5f5  RSC-Linux/RPMS/XFree86-tools-4.3.0-69.i386.rpm
c02e06fab08ff6daafbf20610ceb7740  RSC-Linux/RPMS/XFree86-truetype-fonts-4.3.0-69.i386.rpm
ecc33b53e13d5ecc810ead04e8058770  RSC-Linux/RPMS/XFree86-twm-4.3.0-69.i386.rpm
a7a117ace633817c7b53a99770e85026  RSC-Linux/RPMS/XFree86-xauth-4.3.0-69.i386.rpm
78fc8e19d7d7104961c691581bf5e906  RSC-Linux/RPMS/XFree86-xdm-4.3.0-69.i386.rpm
f004f49a6d839e7776223c2d95279016  RSC-Linux/RPMS/XFree86-xfs-4.3.0-69.i386.rpm
84d2eef193b0ab8a55312c227c10879e  RSC-Linux/RPMS/XFree86-Xnest-4.3.0-69.i386.rpm
936717f0aa15a7f2510cfb1b66c167fe  RSC-Linux/RPMS/XFree86-Xvfb-4.3.0-69.i386.rpm
ce4d0e765273634cdacbf1c8447a3d65  RSC-Linux/RPMS/xinetd-2.3.13-4.i386.rpm
62793225ec940c49c43673d56a4894d5  RSC-Linux/RPMS/xml-common-0.6.3-17.noarch.rpm
4084450937f2c5b5fbe958ea0e59c774  RSC-Linux/RPMS/xmlto-0.0.18-4.i386.rpm
043044ed35b819ff96e4de6f794bd57e  RSC-Linux/RPMS/yum-2.1.11-3.noarch.rpm
ca51833cd1359b0cd0e63d2cd11e5a15  RSC-Linux/RPMS/zip-2.3-26.3.i386.rpm
96023854e067a80330763923d5974d0c  RSC-Linux/RPMS/zlib-1.2.1.2-1.i386.rpm
464b24685862989b96da0d499f29ec24  RSC-Linux/RPMS/zlib-devel-1.2.1.2-1.i386.rpm
705aa419ab0055b99f0314e8c0c81f5e  SRPMS/acl-2.2.23-5.src.rpm
dcd64b9e7bf5fa78d89dbaa590c72d3b  SRPMS/anacron-2.3-32.src.rpm
e2b4d40d09094ae4e02070e1c2790110  SRPMS/apachetop-0.12-2.src.rpm
8de7a5618dfaf44ede02489c467746e2  SRPMS/apr-0.9.4-23.src.rpm
c1708dc2eca0c48949f20300147d8c8a  SRPMS/apr-util-0.9.4-17.src.rpm
1416f1373f6cae28e6825863a3edbe13  SRPMS/ash-0.3.8-20.src.rpm
c5d18f201a15caaecd5bf2b36323c870  SRPMS/aspell-0.50.5-3.src.rpm
8458aecf833f3ff83af4c14938fd07f0  SRPMS/aspell-de-0.50-9.src.rpm
a4f316580efdb23267c51a0359f76558  SRPMS/aspell-en-0.51-11.src.rpm
3154f364065c24fcd9a9a6db697d7d10  SRPMS/at-3.1.8-60.src.rpm
b6de86d3c995f677b27f4d03fdec518b  SRPMS/atk-1.8.0-2.src.rpm
5042136ea0d5c339839994c53a83cd03  SRPMS/attr-2.4.16-2.src.rpm
dfaf5a833986703201243dc9ef587178  SRPMS/authconfig-4.6.5-5.src.rpm
7b75acb3d00e9ff0decfcca79da5c5e7  SRPMS/autoconf-2.59-5.src.rpm
07f00e85eaa2e725346604d353b3bf85  SRPMS/automake16-1.6.3-5.src.rpm
4a5c7d189c8fb41296b71e719d4e3f94  SRPMS/automake-1.9.3-1.src.rpm
6de0982bd71a99ceb08e6f4e49de60f4  SRPMS/basesystem-8.0-4.src.rpm
91c42cffd7f38001ee3bed7759c35bbf  SRPMS/bash-3.0-20.src.rpm
4c2d28340b28a68c96b9c943381cac02  SRPMS/bc-1.06-17.1.src.rpm
3f1a8b6d804a28c178cf3b0f6ef7dd07  SRPMS/beecrypt-3.1.0-6.src.rpm
c92b5e7123b9d81c84dbbbb90a7e7208  SRPMS/bind-9.2.4-2.src.rpm
373584749c41158fee92500227f059c8  SRPMS/binutils-2.15.92.0.2-6.src.rpm
f98d92fa71b629e00e636170c88bc718  SRPMS/bison-1.875c-2.src.rpm
db4ddd20be8442c31447778ddaa43bd4  SRPMS/bogl-0.1.18-4.src.rpm
4725138d8f43798ca5e342864bc278cb  SRPMS/booty-0.44-1.src.rpm
6ff493aadb261349066d43a7c80d82c8  SRPMS/byacc-1.9-28.src.rpm
d8bb1c07ea353045ad10c15159fe841e  SRPMS/bzip2-1.0.2-13.src.rpm
516bc4f67fbd7e704e54a9e4b0892e06  SRPMS/cdrtools-2.01.1-5.src.rpm
49496d0738617aa380f4877837463731  SRPMS/chkconfig-1.3.11.1-1.src.rpm
9aeb149ba0f6650ad90c89ad887067e9  SRPMS/chkfontpath-1.10.0-2.src.rpm
3a74caf7d9d0c415c7bc7dae7ee6a491  SRPMS/coreutils-5.2.1-32.src.rpm
3167d5fabf62c0e092267a6dc194c4a7  SRPMS/cpio-2.5-10.src.rpm
1f15083cecb0945923179ed54a96ce1c  SRPMS/cracklib-2.7-28.src.rpm
48204423115e828f805071762548a8e8  SRPMS/createrepo-0.4.1-1.src.rpm
e96ef6188684d2f600bfffb38b8c1045  SRPMS/crontabs-1.10-7.src.rpm
c808e4f49c9a55d9867df082e214c98c  SRPMS/curl-7.12.1-1.src.rpm
ad0434b1215538c2f647ea3d72ad6c2c  SRPMS/cvs-1.11.17-4.src.rpm
7d9b50c1dc2430bb460f123d49ab9cdc  SRPMS/cyrus-sasl-2.1.20-1.src.rpm
78f5221cfe23bfd2b177ee541664f714  SRPMS/dante-1.1.14-1.src.rpm
031205027ff7fd938be37c27e14ca124  SRPMS/db4-4.2.52-6.src.rpm
591d278c4cfbd36fcc8d98ae20350578  SRPMS/dejagnu-1.4.4-3.src.rpm
3189111c046ba8f09b8a57e46ca2a7cb  SRPMS/devlabel-0.48.03-5.src.rpm
818d7639a0534758b25a069d1d397314  SRPMS/dhcp-3.0.1-11.src.rpm
c118f5012329d31e21bb623e985dea31  SRPMS/dhcpv6-0.10-8.src.rpm
73c40b42f7943c4cf71f2904c2cb2536  SRPMS/dialog-1.0.20040731-3.src.rpm
90aa1f1cb11b7d4f1e414de2ada4a86e  SRPMS/dietlibc-0.27-4.src.rpm
20ce3d1e765195334d21ae500d0a37a3  SRPMS/diffutils-2.8.1-12.src.rpm
6e2dda212da3f4367b3e3dcace15b7c6  SRPMS/docbook-dtds-1.0-25.src.rpm
e71852da00309fc40bfd057b1d19e20d  SRPMS/docbook-style-xsl-1.67.0-1.src.rpm
d39b1ae82c9216bf7f9ee65472375d48  SRPMS/dos2unix-3.1-21.src.rpm
8c879481d1104d86a73fc7eb39e98c39  SRPMS/dosfstools-2.8-16.src.rpm
d4c45c33ea7dc599f9236ef0839573c0  SRPMS/doxygen-1.3.9.1-1.src.rpm
fafb9dae5e1beecc1e724221dd4f3f22  SRPMS/dump-0.4b37-1.src.rpm
0ce6a7a4084cc96c8ee603e699fa1d47  SRPMS/e2fsprogs-1.35-11.2.src.rpm
2f6e50c5b8a9742ab78d4e9bd8119383  SRPMS/ed-0.2-36.src.rpm
234241b323a27f66356160805fb2ea96  SRPMS/eject-2.0.13-12.src.rpm
ea3e5164b3f357146e595470ff72ff63  SRPMS/elfutils-0.96-1.src.rpm
37681531433de4a03d61a8701949e57f  SRPMS/elinks-0.9.2-2.src.rpm
20486277790181c7e9cb21f82a3d98f2  SRPMS/esmtp-0.5.0-2.src.rpm
0d76821b664d10c16d6d6e2dc7fdc7f4  SRPMS/ethtool-1.8-4.src.rpm
f7d7d6365920f1732063570fc4807270  SRPMS/expat-1.95.7-4.src.rpm
2eb37412d2c9632aedf0116c6da234a6  SRPMS/expect-5.42.1-1.src.rpm
0a3cea80c2104bb33d576ba5d891458e  SRPMS/fbset-2.1-17.src.rpm
4e8078cd3163c9a4d1c6ab46d2440c4d  SRPMS/fetchmail-6.2.5-6.src.rpm
37d1a89092d8b003efd440f7627268bb  SRPMS/file-4.10-2.src.rpm
be98ee8bb592025b1bdbc7f3175a02cc  SRPMS/filesystem-2.2.4-1.1.src.rpm
3f302df6090ef0e68260db1fbbf6e172  SRPMS/findutils-4.1.20-7.src.rpm
6453aec035f3ec3b383b323b73eb3a1b  SRPMS/finger-0.17-25.src.rpm
d7ba3e1bd50e4fc0c629d70c09080ba3  SRPMS/flex-2.5.4a-33.src.rpm
e7b34d2d599dfa81732417deaf5bab05  SRPMS/fontconfig-2.2.3-5.src.rpm
61b78e0404b684325257ebb4046fb630  SRPMS/freetype-2.1.9-1.src.rpm
4f2c7d56982f84941b0c3d8ec2c063e2  SRPMS/gawk-3.1.3-12.src.rpm
952ecaded4e9577326bd63eb7a38caf4  SRPMS/gcc-3.2.3-42.src.rpm
22b4f5802aab66f1e9b785b14f154cba  SRPMS/gd-2.0.32-1.src.rpm
b072364fa6c30009de51b6e81e4c1f10  SRPMS/gdb-6.1post-1.20040607.48.src.rpm
5b6d255724516d5edc1a7225f1e87c5b  SRPMS/gdbm-1.8.0-24.src.rpm
367770a3cd34baa4787f126e71f15f7d  SRPMS/gettext-0.14.1-12.src.rpm
4496d14d5dabe6f7fc1cf189aeba3573  SRPMS/glib-1.2.10-15.src.rpm
c45736b7f353a0d4d9e4cc82b83081bd  SRPMS/glib2-2.4.7-1.src.rpm
2644abded609a743291ed14d05f955c5  SRPMS/glibc-2.3.2-95.27.src.rpm
38ed07259947d2a6539a51aa308cb641  SRPMS/glibc-kernheaders-2.4-9.1.87.src.rpm
5c2c0c346e6fb5c02c54ac7032859b82  SRPMS/gmp-4.1.4-3.src.rpm
d0ae9885bc76c440f9abf2cbcf02a1be  SRPMS/gnupg-1.2.6-2.src.rpm
d2b88dbdafd1d73fa8a35f006b020b3c  SRPMS/google-man-page-1.0.0-1.src.rpm
0017bbd9a125508d2c43d493745e2afa  SRPMS/gperf-3.0.1-4.src.rpm
67f40b698167237c657faa5fed83d651  SRPMS/gpm-1.20.1-66.src.rpm
f4c33b100fee83b9fc9566a1ecc50ad4  SRPMS/grep-2.5.1-37.src.rpm
6456a9b3b6555ddd16e1e0817575345b  SRPMS/groff-1.18.1.1-3.src.rpm
bd0ff3245d5151a43cb36876d0a07135  SRPMS/grub-0.95-3.src.rpm
cbdf3c7e30375836380e4d016b56de58  SRPMS/gtk+-1.2.10-33.src.rpm
b5502a180bb5c370d55557df963f33ab  SRPMS/gzip-1.3.3-13.src.rpm
a056f837d4e4ab6e676ec33bb99f0bb1  SRPMS/hdparm-5.7-2.src.rpm
04fa16a79c9defb1cf77790941881754  SRPMS/hesiod-3.0.2-30.src.rpm
daa1b0faad2aa731f5cec5dc1f134b3e  SRPMS/hotplug-2004_04_01-9.src.rpm
7f5f662e7bc7f824a3ba61e387377350  SRPMS/hotsanic-0.5.0-0.5.src.rpm
1f9d87088e20c578272984593769ab1e  SRPMS/httpd-2.0.52-3.src.rpm
ee970ffbaf7bfd334bc5e420a5282d77  SRPMS/httptunnel-3.3-2.src.rpm
e7d277c731b4b30cc0531b0b61d15a96  SRPMS/hwdata-0.101.12-2.src.rpm
16830803ea9dd474b9d13b16e29615ba  SRPMS/ImageMagick-6.0.7.1-4.src.rpm
a545fd6f688fc5bdc0faf56f610610a7  SRPMS/imap-2004a-1.src.rpm
3e9d287c00191ccbc5393d1ebdd4d08c  SRPMS/inet-monitoring-0.1.0-1.src.rpm
ca8b93a0cf7ed3f84cb7cab86745a89b  SRPMS/initscripts-7.31.16-0.1.src.rpm
df2b64c6625072d6ea8bf53389a78392  SRPMS/intltool-0.31.2-1.src.rpm
a342aaa8add02941df2394c33aeea294  SRPMS/iproute-2.6.9-3.src.rpm
8e368fb674315544f0b5db263357f898  SRPMS/iptables-1.2.11-3.2.src.rpm
ab2caa5476931d52bc605135c98d4f20  SRPMS/iptraf-2.7.0-11.src.rpm
c656ff301da1c41edaa3adbed52a3be4  SRPMS/iputils-20020927-16.src.rpm
b71419809e72e2fd6c9a850eb41b7540  SRPMS/ipv6calc-0.48-2.src.rpm
45eae506bbc8ff5da29c3e3f4ff0211a  SRPMS/irssi-0.8.10-0.9.src.rpm
403833b07fe2fc3f769400cc5a36d0d1  SRPMS/jwhois-3.2.2-7.src.rpm
eea2c5b742dafc2ca66a37ec17d3d907  SRPMS/kbd-1.12-2.src.rpm
7ddd19ed20aabcab79f773d8a43df923  SRPMS/kernel-2.4.21-1.src.rpm
07b27ed8baaad8f4006d412eba5aec30  SRPMS/kernel-utils-2.4-13.1.39.src.rpm
1e166ac64fcf6b7845c60405f5055b8d  SRPMS/krb5-1.3.5-1.src.rpm
06e75814de1fef98640249c35ba77333  SRPMS/krbafs-1.2.2-6.src.rpm
a4a7e71e9ca603cba28b25a523f1022f  SRPMS/kudzu-1.1.36.3-1.src.rpm
876be4f6f531b3fb58258aff465f1c3a  SRPMS/less-382-4.src.rpm
e3704fa9955ec19cf29720a825c0b440  SRPMS/lha-1.14i-17.src.rpm
1e9697c8aff12a4b531fe35a686157ea  SRPMS/libcap-1.10-20.src.rpm
6c7c464d6259de548eaa36f96b30be1f  SRPMS/libesmtp-1.0.3r1-2.src.rpm
3bb0c81a3038b596772dd588ab626599  SRPMS/libglade2-2.4.0-5.src.rpm
b85013c2b5bef36ad50ad5d89c9ff057  SRPMS/libidn-0.5.10-1.src.rpm
e47ff00bc04cc7a621560d0831b381ff  SRPMS/libjpeg-6b-33.src.rpm
7850df8a0e568e193c139d9ac03e3ea9  SRPMS/libmng-1.0.8-1.src.rpm
b375e9877556f50cd5c3bb40a17f5ca7  SRPMS/libpng-1.2.7-1.src.rpm
ed315dc166351f9c3c66423819feda2a  SRPMS/libtermcap-2.0.8-39.src.rpm
d47f67bb19a8414980a03aeec9ec4042  SRPMS/libtiff-3.6.1-7.src.rpm
7ee69498e6c6ebb82e03997e8efd4304  SRPMS/libtool-1.5.10-1.src.rpm
07a5cf64ebd10667e4c8d22ea34dc9ce  SRPMS/libungif-4.1.3-1.src.rpm
09b7a4694e39a2c51224afc09bddb128  SRPMS/libuser-0.52.6-1.src.rpm
baf161ebdd46b07d09f45dfe8a1ea89f  SRPMS/libxml2-2.6.15-1.src.rpm
f7385ce2e78269f0efcc7a1e48a9a9da  SRPMS/libxslt-1.1.11-1.src.rpm
2dc40fb6e205ff3e79e2eb9d0f8ab610  SRPMS/lm_sensors-2.8.7-2.src.rpm
2fc13b8df98e088199e8eaee94cbba14  SRPMS/lockdev-1.0.1-4.src.rpm
7f848064c8497e45287db7dc37a24f06  SRPMS/logrotate-3.7.1-2.src.rpm
8c39cc621bec58e83e00acc5354ecd3d  SRPMS/logwatch-5.2.2-1.src.rpm
dd40fc105c93e0d99d6fa2a6a6953fde  SRPMS/lsof-4.72-1.src.rpm
82bcc7ef5ac7c6f7a2fddbd568e14bf7  SRPMS/lvm-1.0.3-19.0.src.rpm
4bb5aa8d9a343d722355e2abd6c226d8  SRPMS/lynx-2.8.5-18.src.rpm
6979ccc0a129be4df1845e6ce106fb18  SRPMS/m4-1.4.1-16.src.rpm
fcd2ebde7fff3f62d3ab3953c7226548  SRPMS/mailcap-2.1.17-1.src.rpm
15c1b0d7096b9925139e0175910860a1  SRPMS/mailx-8.1.1-37.src.rpm
467833d1f27c512d9016b282585a2aaa  SRPMS/make-3.80-5.src.rpm
a0b5c07057253bf11c96f030376306c5  SRPMS/MAKEDEV-3.3.13-1.src.rpm
5c320f13814bc6c88a1fe78a535180cb  SRPMS/man-1.5m2-9.src.rpm
39335babdd2fed7c3e9ec73347550b52  SRPMS/man-pages-1.67-3.src.rpm
8a80fb0a00d7f07daa971619f6806776  SRPMS/man-pages-de-0.4-9.src.rpm
b4a3c351831abb9f6c7ede0a866ab05a  SRPMS/memtest86+-1.27-1.src.rpm
708de6636d92ccfb088b3ae86ad15a6a  SRPMS/mimedefang-2.47-1.src.rpm
9a4cafda68fda61aa1f68cf7278656c8  SRPMS/mingetty-1.07-3.src.rpm
64a835980eb3886bc378346843f357bd  SRPMS/mkbootdisk-1.5.2-4.src.rpm
316b0b9ca87f9e1569391b4fa73c77fd  SRPMS/mkinitrd-3.5.24-1.src.rpm
3b229f1906d65cc15b5f4d074b7ab55f  SRPMS/mktemp-1.5-21.src.rpm
0a64006cc63dc15dc2099100a1d0fa50  SRPMS/mod_perl-1.99_17-0.src.rpm
a2bd4c8889664d48bbcc9babeb7cd787  SRPMS/mod_python-3.1.3-5.src.rpm
6810871d742dc9fab8da4a3939fbc63a  SRPMS/modutils-2.4.27-2.src.rpm
f6970b355306b3cdd0aaec5b8f0a5650  SRPMS/mtools-3.9.9-9.src.rpm
26e2dc79250f11458986d4619d484af0  SRPMS/mtr-0.54-10.src.rpm
232594134bd448b98472f6fec6e75979  SRPMS/mt-st-0.8-1.src.rpm
8d9c3b31934a55951b7c8e58d98586ed  SRPMS/mutt-1.5.6-0.src.rpm
d8911eaf454b8897940aebb9bd2c6a6e  SRPMS/mysql-4.1.7-3.src.rpm
c4d96f6ffe054e281d89f4e78bdfc299  SRPMS/nano-1.2.4-1.src.rpm
4680acff68498f43ed81b5b2aafea84d  SRPMS/nasm-0.98.38-3.src.rpm
56edf5eeebfc196a323cfd0c202ca4f6  SRPMS/ncftp-3.1.8-2.src.rpm
914004428cfcd7c5104d78f160b3564e  SRPMS/ncurses-5.4-13.src.rpm
1cbb5030abca910956665043aa6ff69d  SRPMS/netpbm-10.25-3.src.rpm
8db9f7d2cd6be283efb2dc7fce9702e3  SRPMS/net-snmp-5.1.2-11.src.rpm
15ceca2216987770a2b995e822c36e7e  SRPMS/net-tools-1.60-40.src.rpm
d0e31613790a7a5c09ca367e7f7f5e5b  SRPMS/newt-0.51.6-5.src.rpm
62c912e57af73552558cc5c85dfa0e10  SRPMS/nmap-3.70-1.src.rpm
c81bbb38e0cec6d26ab3b09f15744fd7  SRPMS/ntp-4.2.0.a.20040617-4.src.rpm
1c4d96f9b0c621c518684010e5302b44  SRPMS/office2text-2004-1.src.rpm
f11960904233a53a9fd96cb58f2aa50d  SRPMS/openldap-2.2.13-2.src.rpm
424d73991493bec6cade5d00adaeb62b  SRPMS/openssh-3.9p1-7.src.rpm
298e0c236e9605a007d74982c26ea6c4  SRPMS/openssl-0.9.7a-40.src.rpm
66ecdee48b4c9dd310c10274e21c9120  SRPMS/pam-0.77-63.src.rpm
d17f57c2c414884f625ce00f05d17e40  SRPMS/pam_krb5-2.1.2-1.src.rpm
9c6b642d7addd2157aedfb29fa2453e2  SRPMS/pango-1.6.0-6.src.rpm
6a1cc2e4b2678a4f54c4e5ad3a7775ec  SRPMS/parted-1.6.15-5.src.rpm
eb485fbb18a645ff027962306cef3b61  SRPMS/passwd-0.68-9.src.rpm
c4b1869032d570112a7c102ffd079080  SRPMS/patch-2.5.4-20.src.rpm
07b49af41c2410e3609d35d1113c3cd9  SRPMS/pax-3.0-10.src.rpm
8be8e2547f227c4ba7a595ddce07c28e  SRPMS/pciutils-2.1.99.test8-3.src.rpm
c3690845eec6f3d83e0ff41df5874247  SRPMS/pcre-4.5-3.src.rpm
79f204b5a1751d165fa42d6c732c419e  SRPMS/perl-5.8.5-9.src.rpm
66dac13b8bea03ab55c74b0980d78f85  SRPMS/perl-Convert-BinHex-1.119-1.src.rpm
13213dbfb8db1b589fa02de5f81d0cb0  SRPMS/perl-DateManip-5.42a-3.src.rpm
71d7fafc4abbc308acd15e71c66040e5  SRPMS/perl-DBD-MySQL-2.9004-0.1.src.rpm
16f626a71c0123e73cb231a9f50e05c8  SRPMS/perl-DBI-1.40-5.src.rpm
d1671aa2503de062c19c4775858e5146  SRPMS/perl-Digest-HMAC-1.01-13.src.rpm
d7f12d1b5d0499ffd6b2f668811dc608  SRPMS/perl-Digest-SHA1-2.07-5.src.rpm
91ba15dd32e6b30a29ee80b5b3a5f067  SRPMS/perl-Filter-1.30-6.src.rpm
180f87cdeac900c91ae216a6d6691bb7  SRPMS/perl-HTML-Parser-3.35-6.src.rpm
f2aa4b0561faa22ed4bd3cef169c6ca3  SRPMS/perl-HTML-Tagset-3.03-30.src.rpm
8e85e9251813c4481378fc13172fb7e9  SRPMS/perl-IO-stringy-2.109-2.src.rpm
36be9fab5416cad9a2baec3bf62faf7a  SRPMS/perl-libwww-perl-5.79-5.src.rpm
439297ea08d649bb4c99d1e46cd951de  SRPMS/perl-MailTools-1.64-1.src.rpm
a5d40af684b3d245e022b4ced5d5e180  SRPMS/perl-MIME-tools-5.415-1.src.rpm
e59ef1036abe787d598c63d3634fcda7  SRPMS/perl-Net-DNS-0.48-1.src.rpm
4c344667547c5b24bcd7b36ffa63c4b9  SRPMS/perl-Net-LibIDN-0.07-2.src.rpm
e53ab843470760034d0963351bd97ef7  SRPMS/perl-Text-Iconv-1.4-2.src.rpm
64c3bc5987c7369e0dabc282633e0ae7  SRPMS/perl-TimeDate-1.16-2.src.rpm
3a187c53f394b7f1c8c3f7971b4ffaf7  SRPMS/perl-Time-HiRes-1.55-3.src.rpm
6a50515f92641e9f1013c01797f23f64  SRPMS/perl-URI-1.30-4.src.rpm
8e0e61a6540cad03ad8635b63667868e  SRPMS/perl-XML-Parser-2.34-5.src.rpm
bb954bddfe24a58b72dbbddf2bd61cd8  SRPMS/php-4.3.9-4.src.rpm
c6ce892ae0a64f452dfe552acf052320  SRPMS/php-idn-1.0-3.src.rpm
ecee4ec086ba857fac017584dd392540  SRPMS/pinfo-0.6.8-7.src.rpm
97808b4f78f396f3d3542c28a9bf6c89  SRPMS/pkgconfig-0.15.0-3.src.rpm
2b3e9926648f67a1e424896b9326414b  SRPMS/ppp-2.4.2-7.src.rpm
9f7e72c9f707bd71cd2d416d1b5d25a3  SRPMS/procmail-3.22-15.src.rpm
1924022a2cc30723fc2faba05b0ca463  SRPMS/procps-3.2.3-6.src.rpm
afb5a4b8f4e7969cfcbd398d00f3df63  SRPMS/proftpd-1.2.10-1.src.rpm
da5ebadbe78b77d8cae0d9473a665cf4  SRPMS/psmisc-21.4-4.src.rpm
dbc204ab77e88c3a43f0bdbe49fe7d48  SRPMS/pump-0.8.21-1.src.rpm
c6d38bcfbd4a2b4193f7ede213b9e1c9  SRPMS/pyparted-1.6.8-2.src.rpm
bff1d0b32b584ef0454c90bea0d79b36  SRPMS/python-2.3.4-11.src.rpm
b8cd6f909413f9251a52c65a6c961713  SRPMS/pyxf86config-0.3.19-1.src.rpm
3c35b86e2f0b41d7bee7e6c815b06500  SRPMS/quota-3.12-5.src.rpm
fe2b87d6f2e7d94240e55ec350572c94  SRPMS/readline-4.3-13.src.rpm
a3d4d00d9b4dc54b9b05d34bd627f883  SRPMS/rhpl-0.147-1.src.rpm
43d7640f6619af0bfa0f5373ebdf2bc9  SRPMS/rktime-0.6-1.src.rpm
526785e2505a30ecdd8028d066320192  SRPMS/rootfiles-8-1.src.rpm
b3eb8e5aba8f9b6455d8a338b5849b9a  SRPMS/rpm-4.2.3-10.src.rpm
c052997d2038b01a832db91df0d5b79c  SRPMS/rp-pppoe-3.5-22.src.rpm
b61fa9e4621a3fe2f5db338c6ab0db1f  SRPMS/rrdtool-1.0.49-2.src.rpm
17a8afcac916485800e0a16d8476f5ae  SRPMS/rsc-linux-release-0.0.1-1.src.rpm
0838ba1e29d440a7cca9f7b53422569f  SRPMS/rsync-2.6.3-1.src.rpm
3bda154932fa4c191942f140d837ac04  SRPMS/screen-4.0.2-5.src.rpm
d7887373666aa5a116fee5d8909bac9b  SRPMS/sed-4.1.2-4.src.rpm
e3e5bd776dad64b75a15e2787e3e2e0f  SRPMS/sendmail-8.13.1-2.1.src.rpm
13faacec7a1eb3d5d3c83b44c632579a  SRPMS/setserial-2.17-17.src.rpm
795461306677bf2354960a5ffa157e98  SRPMS/setup-2.5.37-2.src.rpm
44d254005c32ea829e55f1eb9580881b  SRPMS/setuptool-1.17-2.src.rpm
98fe57b601cc4076e28ae40c0cc1f0c4  SRPMS/sgml-common-0.6.3-17.src.rpm
482f1d6a59e3874ce7d20da41503c8e3  SRPMS/shadow-utils-4.0.3-40.src.rpm
710d438785ac179d385f5fabcaab84a9  SRPMS/sharutils-4.2.1-22.src.rpm
db4052c03a2d9119e0f6200a2686883f  SRPMS/slang-1.4.9-7.src.rpm
5b6e61443fd2451aa370fdf7391389c8  SRPMS/slocate-2.7-13.src.rpm
5c95412e3ac4a4275e2bb5df1b230043  SRPMS/spamassassin-3.0.0-3.src.rpm
c56412909d98acc69772a3af9c133b10  SRPMS/specspo-9.0.92-1.3.src.rpm
087951e4bae24f8f3c65e5fd5aa27729  SRPMS/squid-2.5.STABLE7-1.src.rpm
6111b7048cc83f515879844123556c3c  SRPMS/star-1.5a25-6.src.rpm
2604625f4686e806548a74d908091d79  SRPMS/strace-4.5.8-1.src.rpm
5dd2902dc6cc08480df943e2ec8842c6  SRPMS/sudo-1.6.7p5-30.1.src.rpm
6ab3605fdc6f2b4c0d93b14c88d3321d  SRPMS/symlinks-1.2-22.src.rpm
5337a0e9dffc3bee3a974999fc226021  SRPMS/sysklogd-1.4.1-22.src.rpm
03e715aba1219bb7dfacf9a530636477  SRPMS/syslinux-2.11-1.src.rpm
1561857543719db35ea94dcebe7983d5  SRPMS/system-config-date-1.7.10-1.src.rpm
d14b1ca3e2eddb30a9c990e0b7aa0bf9  SRPMS/system-config-keyboard-1.2.5-1.src.rpm
25414e4112b4426da0eb20941f4e89d2  SRPMS/system-config-mouse-1.2.9-1.src.rpm
9dafb2480c161ff3143865593d31d812  SRPMS/SysVinit-2.85-34.src.rpm
e488e8aa6aacdb1e963fceab7c392d42  SRPMS/tar-1.14-4.src.rpm
349b7cae06d4299161ecb770353ff17e  SRPMS/tcl-8.4.7-2.src.rpm
eed80efed39497130400ccb30558c037  SRPMS/tcpdump-3.8.2-7.src.rpm
e3e4655d3f30e8e134f78d809ea9095a  SRPMS/tcpick-0.1.24-1.src.rpm
0834c63f349efee33ff1c209bced2ea5  SRPMS/tcp_wrappers-7.6-37.2.src.rpm
4d8f851fe23275b4dbbc445a494edf31  SRPMS/tcsh-6.13-9.src.rpm
fbf3016a0daa78998ee7744b9d8d0571  SRPMS/telnet-0.17-30.src.rpm
a4631e0ba70ec0dec33c76bea01a2d04  SRPMS/termcap-5.4-3.src.rpm
868943f8a35d5fd24907fd740b5310ab  SRPMS/texinfo-4.7-5.src.rpm
f28a19a1a854a07bc1594c29bc4adf59  SRPMS/time-1.7-25.src.rpm
bfa93f4b722ddb0819bb700f05b8a74e  SRPMS/tix-8.1.4-98.src.rpm
cbfe633dde8a85c586050ad98d8b4be6  SRPMS/tk-8.4.7-2.src.rpm
7af98b776171d219530d7ee79bf50ff7  SRPMS/tmpwatch-2.9.1-1.src.rpm
8b42ec4e9533ede654353b725aebed33  SRPMS/traceroute-1.4a12-24.src.rpm
b61a8b368cdc5c1a1ee58e9c54648a75  SRPMS/tree-1.5.0-1.src.rpm
b7af373c6ca4599db7f455df749e14c7  SRPMS/ttmkfdir-3.0.9-14.src.rpm
81e07c4ce8e4d2ae00477dc3edee610c  SRPMS/tzdata-2004e-2.src.rpm
a1f0a6fe10894cb861f96fd9798b7db5  SRPMS/unix2dos-2.2-24.src.rpm
ea43678f9f6834a066dbfadca6fe5525  SRPMS/unrar-3.4.3-1.src.rpm
0e1f2eddc7f1adcea6b6eefdb026839e  SRPMS/unzip-5.51-4.src.rpm
7e279522e45567fc09df847fe3c7415a  SRPMS/usbutils-0.11-6.1.src.rpm
f03b6a2960477411acd13c4559722b98  SRPMS/usermode-1.75-1.src.rpm
a6065cc0df7de438af5a049edcfeb40b  SRPMS/utempter-0.5.5-5.src.rpm
918643840aad6ae1bbfded51096933eb  SRPMS/util-linux-2.12a-16.src.rpm
e63f34fcb15773681d6242f66850214c  SRPMS/vim-6.3.030-3.src.rpm
507c420719944c4c7b2a77d1e7199340  SRPMS/vixie-cron-4.1-19.src.rpm
27b0ae0ea5c4f041061b2b9c4a31192d  SRPMS/vnstat-1.4-1.src.rpm
0a7da6fc2fb9a699f017bd4baceb6386  SRPMS/w3m-0.5.1-4.src.rpm
ad94cd771244659e7025a3ac8427ef03  SRPMS/webalizer-2.01_10-25.src.rpm
9cb399a7a5f5ec38e6f084b51d591777  SRPMS/wget-1.9.1-17.src.rpm
01e0c1f64747c6e23647bea477d48964  SRPMS/which-2.16-4.src.rpm
945484b033e4226805f7ec96998e07f9  SRPMS/words-3.0-2.src.rpm
1e552304e25df2683894c33274da21ee  SRPMS/XFree86-4.3.0-69.src.rpm
79efbcfca20ab4ce447a1317f391c950  SRPMS/xinetd-2.3.13-4.src.rpm
e8dd1cb216a827924e34c6af5841c0d6  SRPMS/xmlto-0.0.18-4.src.rpm
fe7603721329ae39a0016df380e2d9b6  SRPMS/yum-2.1.11-3.src.rpm
5f1239a5cdc9403614c7205d4a33d5ca  SRPMS/zip-2.3-26.3.src.rpm
68784f81e8fb7faa5e4136d765bae4db  SRPMS/zlib-1.2.1.2-1.src.rpm