Last active
January 2, 2020 20:43
-
-
Save linuxoracledev/08cfe0dc21434047ac5b38b2a089ac02 to your computer and use it in GitHub Desktop.
How to Install Webmin on Ubuntu 18.04 & 16.04 LTS with Config Server Firewall (CSF) Installation and Configuration
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
#Configure APT Repository | |
sudo nano /etc/apt/sources.list.d/webmin.list | |
#Add below value to this file: | |
# deb http://download.webmin.com/download/repository sarge contrib | |
# deb http://webmin.mirror.somersettechsolutions.co.uk/repository sarge contrib | |
#Import the GPG key | |
curl http://www.webmin.com/jcameron-key.asc | sudo apt-key add - | |
#nstall Webmin | |
sudo apt-get update | |
sudo apt-get install webmin | |
#Access Webmin | |
#https://localhost:10000/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment