Last active
November 19, 2017 11:35
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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