Installing Virtualmin on Linux OS using Terminal

To install Virtualmin in Linux, follow the steps below:

Step 1: Run the below command in the terminal to first install all updates on your Linux OS:

sudo apt update -y && sudo apt upgrade -y

 

Step 2: Install the wget package in Linux OS which will be used to download Virtualmin from the web using the below command:

sudo apt install wget

 

Step 3: Use the below command to download the Virtualmin installation script:

wget https://software.virtualmin.com/gpl/scripts/install.sh⁠⁠⁠⁠⁠⁠⁠

 

Step 4: Set the fully qualified domain name of the server like this:

sudo hostnamectl set-hostname <domainname>

Step 5: Change the access mode of the file and make it executable using the below command:

chmod a+x install.sh

Step 6: Once you’re done with all the above-given commands, execute the below-given command to install Virtualmin and all of its dependencies:

sudo ./install.sh

 

The above command will prompt the user to a confirming message about the changes that will take place in the Linux machine during installation. To confirm that we have to press y and continue with the installation process. Thereafter the script takes some time to complete as the installation is carried out in 3 phases.

Once the installation is done, we can set up the root password to run the web UI.

How to install Virtualmin in Linux

In this article, we will learn to install Virtualmin on Linux Operating System. Virtualmin is based on Webmin, a popular web server management user interface for Linux. It is a domain hosting and website control panel that enables the creation and management of multiple domains and simplifies automation and tasks. It is a cPanel and Plesk replacement. Let’s look at how we can install this on our Linux machine using the command line interface terminal.

Note: To install Webmin, follow this tutorial: Webmin Installation

Similar Reads

Installing Virtualmin on Linux OS using Terminal

To install Virtualmin in Linux, follow the steps below:...

Configuring Webmin’s Root Password

Virtualmin is a Webmin extension that uses the system root user and password for web interface login. Let’s configure Webmin for a web interface. This procedure will not alter the system’s root password....