How To Resolve RPM Dependencies Problem

1)RPM Dependencies problem will be solved if we install the correct version of the rpm.
Example.
# rpm -ivh ganglia-gmond-python-3.5.0-1.fc19.x86_64.rpm
error: Failed dependencies:
        libexpat.so.1()(64bit) is needed by ganglia-gmond-python-3.5.0-1.fc19.x86_64
        libpcre.so.1()(64bit) is needed by ganglia-gmond-python-3.5.0-1.fc19.x86_64
        libpython2.7.so.1.0()(64bit) is needed by ganglia-gmond-python-3.5.0-1.fc19.x86_64
        rpmlib(FileDigests) <= 4.6.0-1 is needed by ganglia-gmond-python-3.5.0-1.fc19.x86_64
        rpmlib(PayloadIsXz) <= 5.2-1 is needed by ganglia-gmond-python-3.5.0-1.fc19.x86_64
But install 3.1.7-3 Problem has been sloved in the same system.

# rpm -ivh ganglia-gmond-python-3.1.7-3.el5.rf.x86_64.rpm
warning: ganglia-gmond-python-3.1.7-3.el5.rf.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 6b8d79e6
Preparing...                ########################################### [100%]
   1:ganglia-gmond-python   ########################################### [100%]



2)Conflict Problem.

# rpm -ivh rpms/gtk2-2.18.9-4.el6.i686.rpm [ Problem is sloved]
warning: rpms/gtk2-2.18.9-10.el6.i686.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY
Preparing...                ########################################### [100%]
    file /usr/share/locale/gu/LC_MESSAGES/gtk20.mo from install of gtk2-2.18.9-10.el6.i686 conflicts with file from package gtk2-2.18.9-4.el6.x86_64
    file /usr/share/locale/mr/LC_MESSAGES/gtk20.mo from install of gtk2-2.18.9-10.el6.i686 conflicts with file from package gtk2-2.18.9-4.el6.x86_64
    file /usr/share/locale/te/LC_MESSAGES/gtk20.mo from install of gtk2-2.18.9-10.el6.i686 conflicts with file from package gtk2-2.18.9-4.el6.x86_64

Note 1) gtk2-2.18.9-10 is trying to install module /usr/share/locale/gu/LC_MESSAGES/gtk20.mo.
it is conflicts package which is already installed via gtk2-2.18.9-4.el6.x86_64
Note 2)So installed correct versin of the RPM
gtk2-2.18.9-4.el6.i686.rpm the problem will be solved.

0 comments:

Post a Comment