Raspberry PI

Install Webmin on your Raspberry Pi 4 – Ubuntu

Here simple step by step to install and configure Webmin tool on your Raspberry Pi 4 running Ubuntu 20.x operating system.

  1. Check for update
  2. Install requirements
  3. Download latest webmin package
  4. Install the webmin package
  5. Open browser https://YOUR-RASPBERRY-PI-IP:10000
  6. Sign in with your credentials and complete the installation and configuration for your Raspberry
1
2
3
4
5
6
7
8
9
10
11
#!/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

 
Last step, open browser and go to your Raspberry Pi IP address over SSL on port 10000 and complete the setup.

Leave a Reply