Skip to content

Instantly share code, notes, and snippets.

@rakibulinux
Created February 13, 2020 11:24
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 rakibulinux/5416b7ea1c8e459fb906cf3c708ce3d9 to your computer and use it in GitHub Desktop.
Save rakibulinux/5416b7ea1c8e459fb906cf3c708ce3d9 to your computer and use it in GitHub Desktop.
How to Install Webmin on Ubuntu 18.04
#!/bin/bash
sudo apt update
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"
sudo apt install webmin
#Webmin install complete. You can now login to https://your_server_ip_or_hostname:10000/ as root with your root password, or as any user who can use sudo to run commands as root.
#Adjust the Firewall
sudo ufw allow 10000/tcp
#Accessing Webmin Web Interface
https://your_server_ip_or_hostname:10000/
sudo apt update
sudo apt upgrade
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment