Skip to content

Instantly share code, notes, and snippets.

@afahitech
Created April 4, 2020 06:05
Show Gist options
  • Select an option

  • Save afahitech/b72e4896debd643a99ddfe3928244276 to your computer and use it in GitHub Desktop.

Select an option

Save afahitech/b72e4896debd643a99ddfe3928244276 to your computer and use it in GitHub Desktop.
How to install webmin on Ubuntu 18.04
# System update
sudo apt update && sudo apt upgrade
sudo apt install software-properties-common apt-transport-https wget
wget -q http://www.webmin.com/jcameron-key.asc -O- | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] http://download.webmin.com/download/repository sarge contrib"
# Install webmin
sudo apt install webmin
# Adjust the Firewall
sudo ufw allow 10000/tcp
# Accessing Webmin Web Interface
https://your_server_ip_or_hostname:10000/
# Upgrading Webmin
sudo apt update && sudo apt upgrade
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment