Here simple step by step to install and configure Webmin tool on your Raspberry Pi 4 running Ubuntu 20.x operating system.
- Check for update
- Install requirements
- Download latest webmin package
- Install the webmin package
- Open browser https://YOUR-RASPBERRY-PI-IP:10000
- Sign in with your credentials and complete the installation and configuration for your Raspberry
[cc lang=”Bash”]
#!/bin/bash
# Update
sudo apt-get update -y
sudo apt-get upgrade -y
#Install requirements
sudo apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl apt-show-versions python shared-mime-info -y
#Download the package
cd ~/Downloads
wget http://prdownloads.sourceforge.net/webadmin/webmin_2.000_all.deb
#Install and configure
sudo dpkg –install webmin_2.000_all.deb
[/cc]
Last step, open browser and go to your Raspberry Pi IP address over SSL on port 10000 and complete the setup.
