Skip to content

Instantly share code, notes, and snippets.

@UbuntuEvangelist
Last active December 17, 2017 22:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save UbuntuEvangelist/a8a5d4d16fab6377aa6ea3bd8ed87e22 to your computer and use it in GitHub Desktop.
Save UbuntuEvangelist/a8a5d4d16fab6377aa6ea3bd8ed87e22 to your computer and use it in GitHub Desktop.
webmin setup into ubuntu root user
#!/bin/sh
echo "deb https://download.webmin.com/download/repository sarge contrib" | sudo tee -a /etc/apt/sources.list
wget http://www.webmin.com/jcameron-key.asc
apt-key add jcameron-key.asc
## You will now be able to install with the commands :
apt-get update
apt-get install apt-transport-https
apt-get install webmin
## Login from browser URL
xdg-open http://localhost:10000/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment