Installing Webmin

  1. Log in to your server.
  2. Issue the command sudo nano /etc/apt/sources.list.d/webmin.list
  3. Add the following two lines to the file:
    deb http://download.webmin.com/download/repository sarge contrib
    deb http://download.webmin.com/download/repository sarge contrib
  4. Hit [CTRL][x] and save the file.
  5. Download the Webmin key with the command sudo wget http://www.webmin.com/jcameron-key.asc
  6. Add the downloaded key with the command sudo apt-key add jcameron-key.asc
  7. Update apt with the command sudo apt-get update
  8. Install Webmin with the command sudo apt-get install webmin

Once the installation completes, you can log in to your Linux server’s Webmin panel by pointing a browser to https://IP_OF_UBUNTU_SERVER:10000

sduncan