Linux : How can I create and use my own Certificate Authority (CA)?

How can I create and use my own Certificate Authority (CA)? 1. Create a RSA private key for your CA (will be Triple-DES encrypted and PEM formatted): $ openssl genrsa -des3 -out ca.key 1024 Please backup this ca.key file and remember the pass-phrase you currently entered at a secure location. You can see the details […]

Free Tool : LightScreen — A Free Screenshot Capture Tool for Windows

Lightscreen is a simple tool to take screenshots of your desktop and applications in Microsoft Windows. Lightscreen allows you to automate the tedious process of saving and cataloging screenshots. Once you install Lightscreen, it operates as a hidden process in the background. However, you can invoke the Lightscreen GUI via the System tray icon. Talking […]

Linux : Remmina – Remote desktop client

Remmina is a remote desktop client written in GTK+, aiming to be useful for system administrators and travellers, who need to work with lots of remote computers in front of either large monitors or tiny netbooks. Remmina supports multiple network protocols in an integrated and consistant user interface. Currently RDP, VNC, XDMCP and SSH are […]

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 the setup.sh script […]

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