15 May 2014

Webmin on Ubuntu

  1. Edit sources to add the webmin repository:
    either:
    1. edit the file using sudo vi /etc/apt/sources.list
      G to go to to the end of the file and press 'o' to open a new line
      Insert the lines then ZZ to save and quit
    2. or printf '%s\n%s\n' 'deb http://download.webmin.com/download/repository sarge contrib' 'deb http://webmin.mirror.somersettechsolutions.co.uk/repository sarge contrib' | sudo tee -a /etc/apt/sources.list
  2. Install the GPG key
    sudo su root
    cd /root
    wget http://www.webmin.com/jcameron-key.asc
    apt-key add jcameron-key.asc
  3. Update the apt and install webmin:
    apt-get update
    apt-get install webmin
  4. Add a value to the firewall: sudo ufw allow 10000
  5. Browse to the webmin interface:
    https://[server IP]:10000/
See http://www.webmin.com/deb.html "Using the Webmin APT repository"

No comments:

Post a Comment