Skip to content

Instantly share code, notes, and snippets.

@rrolla
Last active January 27, 2021 18:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rrolla/9ef5459aea7e958e2a724366bc7c5e36 to your computer and use it in GitHub Desktop.
Save rrolla/9ef5459aea7e958e2a724366bc7c5e36 to your computer and use it in GitHub Desktop.
Fast install webmin on ubuntu (20.04, 18.04, 16.04, 14.04) or debian
#!/bin/bash
#
# Script to install webmin
#
# Author rolla aka Raitis Rolis (raitis.rolis@gmail.com)
#
sudo add-apt-repository 'deb https://download.webmin.com/download/repository sarge contrib';
wget http://www.webmin.com/jcameron-key.asc;
sudo apt-key add jcameron-key.asc;
sudo apt-get update;
sudo apt-get install -y perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl apt-show-versions python apt-transport-https webmin;
# usage
# wget -O - https://gist.githubusercontent.com/rrolla/9ef5459aea7e958e2a724366bc7c5e36/raw/install-webmin.sh | bash
# OR
# wget https://gist.githubusercontent.com/rrolla/9ef5459aea7e958e2a724366bc7c5e36/raw/install-webmin.sh && chmod +x install-webmin.sh && ./install-webmin.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment