RepoForge

RPMForge is now RepoForge.

RepoForge FAQ

What is RepoForge?

The RepoForge project maintains RPM packages for Red Hat Enterprise Linux (RHEL), CentOS and Scientific Linux. It provides a set of repositories compatible with various RHEL-derived distributions.

How do I use RepoForge?

See Using RepoForge

How can I contribute?

There are numerous ways you can help. Feel free to do more than one!

Why are there now several repositories? What is “rfx”?

Our goal is to move all packages that conflict with upstream packages into a separate “extras” repository; this way, users who want to be confident that our packages will not cause conflicts with upstream can enable the base repository, and users who want newer versions of packages (and are willing to tolerate some package conflicts) can enable the extras repository.

More information is in this post.

How to become a mirror for RepoForge?

Mirror Requirements

We have a few requirements for those wishing to run a mirror:

  1. You must subscribe to the mailing list for mirror maintainers
  2. At least 140 GB of available disk space. The current distribution directory is around 90 GB, but we wish to leave room for considerable expansion
  3. You must not trim or abridge the mirrored tree in any way
  4. You must not modify the mirrored tree in any way. In particular, index.html, HEADER.html and README.html files must not be altered or removed
  5. Your mirror must not be shown “inside” another site using, for instance, frames
  6. You must do an update-check at least once a day, and preferably four times a day
  7. Do not rsync more rapidly than every hour
  8. Sync on a random minute so it is more likely the requests will be spaced out with other mirrors
  9. You must use ‘repoforge’ name for the mirror

Mirroring techniques

We only support rsync for updating mirrors. You can find details on rsync at http://rsync.samba.org/. Update your mirror with:

/usr/bin/rsync -vai4CH --safe-links --delay-updates --delete rsync://a_Tier1_repoforge_mirror/repoforge/ /path/to/local/mirror/repoforge

We highly recommend the use of a lock file in your cron script, so that you do not spawn multiple connections, which is hard on our servers and on your mirror. Update your mirror with:

/usr/bin/flock -w 60 /var/lock/EUAK1qEPB3SM /usr/bin/rsync -vai4CH --safe-links --delay-updates --delete rsync://a_Tier1_repoforge_mirror/repoforge/ /path/to/local/mirror/repoforge

Create your unique lockfile with:

cat /dev/urandom | tr -dc '[:alnum:]' | head -c12; echo

After I setup a mirror, what next?

You will need to inform us of your new mirror. Once the site is configured, tested, and updating consistently, you should subscribe to the mirror maintainers mailing list.

Provide us with details of your mirror:

Notes:

Why is this FAQ so short?

Because you have yet to fork it on GitHub to add other questions/answers.