I want to make a DVD with some useful packages (for example php-common). The only problem is that if I try to install on a computer that's not connected to internet, I can't validate the public key.

The scenario is like this:

  1. I download the RPMs, I copy them to DVD.
  2. I install CentOS 5.5 on my laptop (it has no internet connection).
  3. I try install one using yum (or rpm -i, or whatever).

I get the following error: public key for "package" is not installed.

How can I bypass that?

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

From yum -h:

--nogpgcheck          disable gpg signature checking
link|improve this answer
feedback

If you want to disable the GPG validation for the whole Repo, add the following line to the Repo definition in /etc/yum.repos.d:

gpgcheck=0

If you are installing local RPMs using yum, do as Ignacio says.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.