Rpm -V द्वारा खोजे गए फ़ाइल परिवर्तनों के लिए अंतर प्राप्त करना


10

मेरे पास एक इंस्टॉलेशन है जिसे छेड़छाड़ किया गया है, और मैं यह पता लगाना चाहता हूं कि वास्तव में क्या बदला गया है।

मैं दौड़ सकता हूं

rpm -V MY_PACKAGES

जो मुझे संशोधित फ़ाइलों की एक सूची देता है। अब मैं मूल rpms (जो मेरे पास उपलब्ध है) के खिलाफ डिफरेंशियल (यह मानते हुए कि सभी फाइलों में पाठ्य सामग्री है) देखने के लिए एक सुविधाजनक तरीका ढूंढ रहा है।

ऐसा करने का सबसे आसान तरीका क्या होगा, यह देखते हुए कि मैं ~ 20 पैकेज और ~ 200 परिवर्तित फ़ाइलों के साथ काम कर रहा हूं। क्या "rpm diff" जैसा कुछ है ???

जवाबों:


9
#
# Install yumdownloader 
#
yum install yum-utils

#
# search modified files (in this case: from pam_ldap)
#
rpm -V pam_ldap
S.5....T.  c /etc/pam_ldap.conf

#
# make tmp-dir and download rpm
#
mkdir Temp
cd Temp
yumdownloader pam_ldap

#
# extract rpm to current folder
#
rpm2cpio pam_ldap-185-11.el6.x86_64.rpm  | cpio -idmv

#
# check diff
#
diff etc/pam_ldap.conf /etc/pam_ldap.conf


rpm -V explained: 

    c %config configuration file.
    d %doc documentation file.
    g %ghost file (i.e. the file contents are not
    included in the package payload).
    l %license license file.
    r %readme readme file.

    S file Size differs
    M Mode differs (includes permissions and file type)
    5 MD5 sum differs
    D Device major/minor number mismatch
    L readLink(2) path mismatch
    U User ownership differs
    G Group ownership differs
    T mTime differs
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.