How to install Webmin on Ubuntu 20.04?

Overview

Webmin is a web-based system administration tool for Unix and Linux systems. It provides a graphical user interface (GUI) for managing various system settings and configurations, without the need for command-line expertise. Webmin is built on a client-server architecture, where its server runs on the system is administered and its client runs on a web browser.

Find out how to set up Webmin on the Ubuntu Linux operating system in this tutorial.

Prerequisites

There are certain prerequisites that need to be met before you begin.

  • Ubuntu 20.04-equipped system

  • A sudo-privileged user account

  • Internet connection

  • Knowledge of CLI

Get Started

Step 1: Update and upgrade your system packages by running the following commands:

sudo apt update
sudo apt upgarde

When prompted to continue, enter 'y'.

Step 2: Install the dependencies required for Webmin by running the following command:

sudo apt-get install software-properties-common apt-transport-https wget

Step 3: Add the Webmin repository to your system by running the following commands:

wget -q http://www.webmin.com/jcameron-key.asc -O- | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] http://download.webmin.com/download/repository sarge contrib"

Step 4: Update your system packages again by running the following command:

sudo apt-get update

Step 5: Install Webmin by running the following command:

sudo apt-get install webmin

When prompted to continue, enter 'y'.

Step 6: Verify the installation by running the following command:

sudo systemctl status webmin

That's it! You should now have Webmin installed and ready to use on your Ubuntu 20.04 server.

Conclusion

In conclusion, installing Webmin on Ubuntu 20.04 is a straightforward process that can be completed by following a few simple steps. Webmin provides a powerful and user-friendly web interface for system administrators to manage their servers and applications, without the need for extensive command-line knowledge.

Last updated