Linux : Shell Script To Install usermin

Linux : Shell Script To Install usermin

#!/bin/bash

# simple bash script that will install usermin

# By www.kartook.com

echo “This script will install usermin on your box”

yum -y install perl-Net-SSLeay

# move to a temp director

cd /tmp

wget http://downloads.sourceforge.net/project/webadmin/usermin/1.440/usermin-1.440.tar.gz?use_mirror=space

gunzip usermin-1.440.tar.gz

tar xf usermin-1.440.tar

cd usermin-1.440

./setup.sh /usr/local/usermin

When [...]

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 [...]

Linux : Install and Configure VSFTPD On CentOS

vsftpd is a GPL licensed FTP server for UNIX systems, including Linux. It is secure and extremely fast. It is stable. Don’t take my word for it, though. Below, we will see evidence supporting all three assertions. We will also see a list of a few important sites which are happily using vsftpd. This demonstrates [...]

Linux :Installing Apache on CentOS

Installing Apache on CentOS Check to see if apache is installed:

[root@K ~]# rpm -q httpd httpd-2.2.3-7.el5.centos

If not just type “yum install httpd” and when the install is done, start apache:

[root@K ~]# service httpd start Starting httpd: [ OK ]

Note: The default document root is “/var/www/html/”.

Possibly Related Posts:

Linux local privilege escalation via SUID
How to uninstall Vmware workstation v 8.0.0.471780.bundle
Linux : Flash fullscreen doesn’t work on Ubuntu 10.10
VCP Home LAB : Part -3
VCP Home LAB – part-2

Linux : Configuring vsftpd for secure connections

Generally when we login to VSFTPD using our username and password, it’s transmitted in simple/clear text, which is considered as insecure. we can configure VSFTPD server to use OpenSSl, so that all the details are encrypted during the transfers. ###install OpenSSL

yum install openssl

###Generate a Certificate

openssl req -x509 -nodes -days 365 -newkey rsa:1024 [...]