A photo of Mitesh Shah

Mitesh Shah

Linux Expert | Automation Enthusiast | Security Consultant

Email Skype Github Twitter Resume Hire Me Keybase LinkedIn Stackoverflow


Quickly Findout Missing Package

  • Sometimes we need to check installed software on multiple system and install missing software asap.
# Debin/Ubuntu
$ dpkg-query -Wf='${package}\n' | grep php

# Redhat/CentOS
$ rpm -qa --qf "%{NAME}\n" | grep php

Quickly Findout Missing Package

NOTE: Use diff command for quickly findout missing package.





Post Navigation