http://www.archlug.org/kwiki/MigratingRedHatToFedora
Is it as simple as switching to the new sources and then performing an
apt-get update && apt-get dist-upgrade
Almost.
![]() | |
I've only done this (RH 7.3 to FC 1) once, and that was on a pretty minimal install (one of my test UML boxes). |
rpm http://apt.kspei.com fedora/1/i386 os updates stable
"os" and "updates" are FC1, "stable" is fedora.us. Add other repositories as needed. (See my previous posts on installing apt on FC1.)
Some things are still signed with it instead of the Fedora key for some reason.
cd /etc/apt/gpg \ && links -source \ http://ftp.kspei.com/pub/redhat/linux/9/en/os/i386/RPM-GPG-KEY \ > gpg-pubkey-db42a60e-37ea5438
The next time you run apt, it will import that and any other files that begin with 'gpg-pubkey-' in /etc/apt/gpg. See /usr/lib/apt/scripts/gpg-import.lua.
Be sure to grab the keys for any other repository you use (e.g. freshrpms, my "kspei" stuff, rpm.livna.org, etc.).
apt-get install kernel\#2.4.22-1.2129.nptl
Note: I didn't actually do this last time, so the next step just installed 2.4.22-1.2115.nptl, which I then had to upgrade, so I think this order will work better.
This assumes that you already have apt installed (from freshrpms, for example). Also note that this only applies to Fedora Core 1, although it should work for upgrading from just about any version of Red Hat Linux. (If you are upgrading from Red Hat 8.0, please consider just upgrading via CD. There are bugs in Red Hat 8.0's rpm that are exponentially more likely to bite you in the ass on big rpm transactions.)
Update /etc/apt/sources.list:
# os = Fedora Core packages # updates = Fedora Core updates # stable = Fedora.us (Extras) packages # kspei = Steve's random stuff (optional, mostly stuff submitted to fedora.us) # freshrpms = freshrpms.net packages (optional, mostly desktop stuff) rpm http://apt.kspei.com fedora/1/i386 os updates stable kspei freshrpms rpm-src http://apt.kspei.com fedora/1/i386 os updates stable kspei freshrpms
# Fedora Extras non-US packages (optional) rpm http://rpm.livna.org fedora/1/i386 stable rpm-src http://rpm.livna.org fedora/1/i386 stable
# Macromedia Flash plug-in (optional) rpm http://sluglug.ucsc.edu/macromedia/apt fedora/1 macromedia
Create/edit /etc/apt/preferences:
Package: * Pin: release c=os Pin-Priority: 992
Package: * Pin: release c=stable Pin-Priority: 991
# This will help prevent any conflicts between the various repositories.
apt-get update && apt-get dist-upgrade
If apt-get dist-upgrade fails, you probably just need to clean some things up manually. The simplest route is usually to just apt-get remove the offending packages.
For safety, after upgrading rpm, always run rpm —rebuilddb before doing anything else.
The next fun thing is to update gpg keys for any of the non-Fedora repositories you want to use.
# My key, for the "kspei" stuff. wget -O /etc/apt/gpg/gpg-pubkey-cf71a040-3cf27730 http://apt.kspei.com/conf/gpg-pubkey-cf71a040-3cf27730 # Freshrpms key wget -O /etc/apt/gpg/gpg-pubkey-e42d547b-3960bdf1 http://ftp.kspei.com/pub/freshrpms/RPM-GPG-KEY # Livna key wget -O /etc/apt/gpg/gpg-pubkey-a109b1ec-3f6e28d5 http://rpm.livna.org/RPM-LIVNA-GPG-KEY
apt-get will automatically install any gpg keys the next time you run it (assuming they're in /etc/apt/gpg/ and are named gpg-pubkey-*.
documented on: 2004.06.16