I ran DPKG Verify on all packges and got this output and I don't know what it means :
??5?????? c /etc/lightdm/lightdm-gtk-greeter.conf
??5?????? c /etc/default/chromium-browser
??5?????? /usr/local/etc/no-ip2.conf
??5?????? /var/lib/dokuwiki/data/cache/_dummy
??5?????? c /etc/xdg/menus/mate-settings.menu
??5?????? c /etc/apache2/apache2.conf
??5?????? c /etc/apt/apt.conf.d/10periodic
??5?????? c /etc/sysctl.conf
??5?????? /var/lib/xine/xine.desktop
??5?????? /boot/vmlinuz-4.4.0-21-generic
??5?????? /usr/lib/python3/dist-packages/cupshelpers/__pycache__/cupshelpers.cpython-35.pyc
??5?????? /usr/lib/python3/dist-packages/cupshelpers/__pycache__/xmldriverprefs.cpython-35.pyc
??5?????? /usr/lib/python3/dist-packages/cupshelpers/__pycache__/config.cpython-35.pyc
??5?????? /usr/lib/python3/dist-packages/cupshelpers/__pycache__/openprinting.cpython-35.pyc
??5?????? /usr/lib/python3/dist-packages/cupshelpers/__pycache__/__init__.cpython-35.pyc
??5?????? /usr/lib/python3/dist-packages/cupshelpers/__pycache__/ppds.cpython-35.pyc
??5?????? /usr/lib/python3/dist-packages/cupshelpers/__pycache__/installdriver.cpython-35.pyc
??5?????? c /etc/xdg/autostart/mate-volume-control-applet.desktop
??5?????? c /etc/libvirt/qemu/networks/default.xml
dpkg -V
ordpkg --verify
checks the integrity of packages(s) by comparing the metadata stored in it's database and the file paths. You can select the output format using--verify-format
option but it currently only supportsrpm
format. Inrpm
format only the paths that failed any check are shown.Take an example of failed check:
Here:
?
indcates that the check failed e.g. due to permission issueThe third charqacter,
5
, indicates that it has passed themd5sum()
checkc
on the second column indicates the attribute checked, currently onlyconffile
(c
) is supportedFrom
man dpkg
:From the
dpkg
manpage:A "?" denotes that the check could not be done, most likely due to a lack of support or file permissions. A "c" denotes that the check is being done on a configuration file.