Yum installation of a homemade RPM giving an error

I try not to use something using "yum install my.rpm"

The problem is what I get

TypeError: an integer is required
error: python callback <bound method RPMTransaction.callback of <yum.rpmtrans.RPMTransaction instance at 0x013e3f8>> failed, aborting!

What does it mean? I have included verbosity yum install, I can not understand anything. This is RHEL 6.1

thank

+5
source share
2 answers

If rpm cannot access the file for any reason when installing the package, it throws this error.

For example, if your rpm is in the NFS share witn directive root_squashand tries to install, then since root will not be allowed when trying to access the file, it will not work, and it will throw this exception error.

If this is your case, first install rpm in something like /tmp, then try again.

+6

rpm yum, localinstall:

localinstall      rpm. . , , .

, "yum localinstall my.rpm". , spec .

0

All Articles