After you install Fedora on your PC, you need to configure the software repository in order to install or upgrade the software available for Fedora. Fedora equipped with yum, an application to manage, install or uninstall software in Fedora.
Repositories that are enabled are represented by .repo files in the /etc/yum.repos.d directory. Simple yum commands, described later, can be used to download and install software packages from those repositories. To have access to many more software packages that were built particularly for your version of Fedora, you can enable
more software repositories for yum.
The following command lines can be used to get and install the release packages for the first three repositories on the list and install them for the local system. These commands need to point to different packages for different Fedora releases, so you need to modify them to work with your Fedora release:
# rpm -Uhv http://ftp.belnet.be/packages/dries.ulyssis.org/fedora/fc5/i386/RPMS.dries/rpmforge-release-0.2-2.2.fc5.rf.i386.rpm
# rpm -Uhv http://rpm.livna.org/livna-release-6.rpm
# rpm -Uhv http://ftp.freshrpms.net/pub/freshrpms/fedora/linux/6/freshrpms-release/freshrpms-release-1.1-1.fc.noarch.rpm
The rpm commands run in these three lines get and install release packages for RPMForge, Livna.org, and FreshRPMS repositories, respectively. The RPMForge example enables that repository for Fedora Core 5, whereas the other two repositories are enabled for Fedora Core 6. There is no release package for the ATrpms repository, so you must add the ATrpms repository manually. Before you do, however, you need to install the ATrpms signing key on your Fedora system by typing the following: (more…)