Install Webmin on Ubuntu 18.04 (Bionic Beaver) Server

Sponsored Link
Webmin is a web-based interface for system administration for Unix. Using any modern web browser, you can setup user accounts, Apache, DNS, file sharing and much more. Webmin removes the need to manually edit Unix configuration files like /etc/passwd, and lets you manage a system from the console or remotely.

Install webmin on ubuntu 18.04

Edit the /etc/apt/sources.list file using the following command

sudo nano /etc/apt/sources.list

Add the following line

deb https://download.webmin.com/download/repository sarge contrib

Save and exit the file

Add the GPG Key

wget http://www.webmin.com/jcameron-key.asc

sudo apt-key add jcameron-key.asc

Install webmin using the following commands

sudo apt-get update
sudo apt-get install apt-transport-https
sudo apt-get install webmin

Access webmin

Go to https://serverip:10000

Ubuntu in particular don't allow logins by the root user by default. However, the user created at system installation time can use sudo to switch to root. Webmin will allow any user who has this sudo capability to login with full root privileges.

Once you logged in you should see similar to the following screen

Sponsored Link

You may also like...

2 Responses

  1. Don says:

    Error occurring after the instructions – two missing dependencies, libauthen-pam-perl and apt-show versions.

    I will look elsewhere for that issue,

  2. littledot says:

    After running command
    sudo apt-get install webmin

    you have to run the command shown here to install dependencies
    sudo apt -y -f install

Leave a Reply

Your email address will not be published. Required fields are marked *