From bad223c6249c4322ec4322b5e7814392d7c235f6 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 22 Nov 2024 14:26:40 +0300 Subject: [PATCH] Add RPM section --- docs/linux/fedora.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/docs/linux/fedora.md b/docs/linux/fedora.md index b4e587d..bc547fd 100644 --- a/docs/linux/fedora.md +++ b/docs/linux/fedora.md @@ -42,3 +42,26 @@ mkdir -p /root/.config/systemd/user/pipewire-pulse.socket.d echo "[Unit]" > /root/.config/systemd/user/pipewire-pulse.socket.d/override.conf echo "ConditionUser=" > /root/.config/systemd/user/pipewire-pulse.socket.d/override.conf ``` + +## RPM +### Check files installed RPM +```bash +rpm -Vv pam_ldap +S.5....T. c /etc/pam_ldap.conf +``` +Where + - 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 +