|
First, use rpm to install the key, as described in the RPM setup guide.
As root, add the following to a file called google.repo in /etc/yum.repos.d/:
[google] name=Google - i386 baseurl=http://dl.google.com/linux/rpm/stable/i386 enabled=1 gpgcheck=1 gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
If your .repo file contains gpgcheck=1, signatures will automatically be verified during installation.
If you are running a 64-bit distribution, you should also add the x86_64
repository, which will provide you with native 64-bit versions of some of our
software:
[google64] name=Google - x86_64 baseurl=http://dl.google.com/linux/rpm/stable/x86_64 enabled=1 gpgcheck=1 gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
You can then use yum as usual, e.g.
yum install picasa
|