Linux : Shell Script To Install Webmin

This is a bash script which installs webmin On A Linux System.

#!/bin/bash
# simple bash script that will install Webmin
# By www.kartook.com
echo “This script will install webmin on your box”
yum -y install perl-Net-SSLeay
# move to a temp director
cd /tmp
wget http://prdownloads.sourceforge.net/webadmin/webmin-1.510.tar.gz
gunzip webmin-1.510.tar.gz
tar xf webmin-1.510.tar
cd webmin-1.510
./setup.sh /usr/local/webmin


When the setup.sh script is run, it will ask the few questions .Just follow

K~

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.