Skip to content

Instantly share code, notes, and snippets.

@GregaVrbancic
Last active November 19, 2017 11:35
Show Gist options
  • Save GregaVrbancic/a2284a332cff4599ee51eeb9c92737aa to your computer and use it in GitHub Desktop.
Save GregaVrbancic/a2284a332cff4599ee51eeb9c92737aa to your computer and use it in GitHub Desktop.
[Install Webmin script for Ubuntu] Bash script which installs Webmin. #Linux #Bash #Terminal #Server
#!/bin/bash
sudo true
sudo echo "deb http://download.webmin.com/download/repository sarge contrib" >> /etc/apt/sources.list
sudo cd /root
sudo wget http://www.webmin.com/jcameron-key.asc
sudo apt-key add jcameron-key.asc
sudo apt-get update
sudo apt-get install apt-transport-https -y
sudo apt-get install webmin -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment