- Fedora -
After an extremely frustrating day yesterday, I finally slowed down long enough this morning to successfully get YUM installed on my Fedora Core 6 Network Solutions VPS server. Here’s how I did it:
BACKUP YOUR SERVER FIRST. NO WARRANTY ON THIS FIX.
Step 1: Find out info about your server.
- Is it 32 bit or 64bit? Source
Type:
uname -aIt will return something like this:
Linux example.com 2.6.17.8-node22 #2 SMI Tue Aug 11 19:14:36 UTC 2009 i686 GNU/LinuxIf it’s i686, i586, etc., it’s 32 bit. If it’s x86_64, it’s 64 bit architecture.
- What distro are you using? Look for release file in /etc/
For example:
vi /etc/fedora-releaseFedora Core release 6 (Zod)
In our case it’s 64bit FC6 with Network Solutions.
Step 2: Figure out which RPMS you want:
32 bit RPMS: http://archive.fedoraproject.org/pub/archive/fedora/linux/core/6/i386/os/Fedora/RPMS/
64 bit RPMS: http://archive.fedoraproject.org/pub/archive/fedora/linux/core/6/x86_64/os/Fedora/RPMS/
Step 3: Downloading and installing RPMS:
Here are the commands I used to download each RPM and install it. I used trial and error, but this will keep you from having to do that.
#rpm -ivh python-elementtree-1.2.6-5.x86_64.rpm
#rpm -ivh python-sqlite-1.1.7-1.2.1.x86_64.rpm
#rpm -ivh rpm-python-4.4.2-32.x86_64.rpm
#rpm -ivh python-urlgrabber-2.9.9-2.noarch.rpm
#rpm -ivh yum-metadata-parser-1.0-8.fc6.x86_64.rpm
#rpm -Uvh yum-3.0-6.noarch.rpm
I hope this helps someone out there!



