##################### Server Management Control Panel - WEBMIN ########################## ~Webmin is a web-based server management control panel ~official site with download instructions: https://webmin.com/download/ #### basic webmin configuration: # It is recommended to have Apache installed/configured before you proceed with this guide. ## setup the repositories using the webmin script (it is always recommended to check ## a script before you run it): curl -o setup-repos.sh https://raw.githubusercontent.com/webmin/webmin/master/setup-repos.sh sh setup-repos.sh ## install webmin: apt install webmin --install-recommends # to use it, in a browser go to: https://your_server_IP:10000 #use the credentials of a sudo user from your system to login #########################################################################################
ATTENTION: Always read a script before you run it!!!
To run a basic Webmin configuration script, run the following command line in your server's terminal:
wget -nc https://www.maycke.com.br/guides/raw/webmin.sh && chmod 700 webmin.sh && sudo ./webmin.sh && sudo rm webmin.sh
#########################################################################################