What is the simplest way to check to see if webmin is installed?

16,569

It should be in /usr/share/webmin

so try ls /usr/share/ or try whereis webmin

Alternately try sudo dpkg --get-selections , to list all packages.

Share:
16,569

Related videos on Youtube

Cameron Aziz
Author by

Cameron Aziz

React engineer for startup in Santa Monica.

Updated on September 18, 2022

Comments

  • Cameron Aziz
    Cameron Aziz almost 2 years

    I dug up an old server that is only running CLI, and can't seem to remember if Webmin was installed on the machine or not. I normally implement it on all machines, but it doesn't seem like it's working on this one.

    Is there a quick command to check to see if it's installed or a directory that Webmin has to exist?

  • Jeremy Davis
    Jeremy Davis almost 5 years
    FWIW, this won't check if it's installed. This test will only check if it's running and listening on it's default port (10000). It may be installed and not running or listening on an alternate port.