On redhat based system:
rpm --verify -all
On Debian based system:
dpkg -l \*|while read s n rest; do if [ "$s" == "ii" ]; then echo $n;fi; done > ~/tmp.txtfor f in `cat ~/tmp.txt`; do debsums -s -a $f; done
Post a Comment
No comments:
Post a Comment