Want to have access to almost all apps you can think of that are rpms and can easily be installed via apt-get? I know i do. This is like redhat's version of portage in a way. Its community supported in a way.
Just edit your /etc/apt/sources.list and add the following line in for whatever distro you use
Code:
Fedora core 2
rpm http://apt.physik.fu-berlin.de fedora/2/en/i386 at-testing
Fedora core 1
rpm http://apt.physik.fu-berlin.de fedora/1/en/i386 at-testing
RH 9
rpm http://apt.physik.fu-berlin.de redhat/9/en/i386 at-testing
then run
Code:
apt-get update && apt-get dist-upgrade
that will prompt you to upgrade some of the packages probably. Just type Y to continue
Once you are fully upgraded run
Code:
apt-get update
once more. You'll now notice you have a bunch more apt sources to find stuff in
if you run into this error on the apt-get update
Code:
rpmdb: unable to join the environment
error: db4 error(11) from dbenv->open: Resource temporarily unavailable
error: cannot open Packages index using db3 - Resource temporarily unavailable (11)
error: cannot open Packages database in
E: could not open RPM database
don't worry.. just run the following commands to fix your rpm DB. Sometimes doing mass upgrades will cause RPM to confuse itself or error out. Repairing it fixes it 99% of the time
Code:
rm -rf /var/lib/rpm/__db.00*
rpm -vv --rebuilddb
apt-get update
another one from the J to the Y