This can be done by manually adding a webmin repository to the apt package management system, enabling a simple install via apt-get install webmin :
1 |
sudo vi /etc/apt/sources.list |
Add the following lines to the file and save it:
1 2 |
deb http://download.webmin.com/download/repository sarge contrib deb http://webmin.mirror.somersettechsolutions.co.uk/repository sarge contrib |
Run these commands to install the key for the repo, update the packages list, and install Webmin:
1 2 3 4 |
wget http://www.webmin.com/jcameron-key.asc sudo apt-key add jcameron-key.asc sudo apt-get update sudo apt-get install webmin |