18. AZURE Linux Ubuntu install Webmin graphic control

How easy to install, configure and manage Webmin – a fully graphical interface using browser to control your Linux.

Here I will show you how to install on Azure with Linux virtual machine How to configure security groups

TO INSTALL WITH APT_GET:

sudo nano /etc/apt/sources.list

Now press Ctrl-W then Ctrl-V to navigate to the end of the file

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

deb http://webmin.mirror.somersettechsolutions.co.uk/repository sarge contrib

When you are finished editing, save the file by pressing Ctrl-X, then y, RETURN.

Now add the Webmin GPG key to apt, so the source repository you added will be trusted. This command will do that:

wget -q http://www.webmin.com/jcameron-key.asc -O- | sudo apt-key add –

Before installing Webmin, you must update apt-get’s package lists:

sudo apt-get update

Now run this apt-get command to install Webmin:

sudo apt-get install webmin

Enter y to confirm the installation.

After the installation is complete, the Webmin service will start automatically.

To create user for webmin:
sudo service webmin stop
sudo useradd -g sudo webminuser
sudo passwd webminuser
sudo service webmin start