Installing Snort on Linux : First download Snort’s latest version “snort-2.9.1.2.tar.gz” using the following command : wget http://www.snort.org/dl/snort-current/snort-2.9.1.2.tar.gz -O snort-2.9.1.2.tar.gz Run the following commands to proceed with installation: tar zxf snort-2.9.1.2.tar.gz cd snort-2.9.1.2 ./configure make make install While installing Snort you may get following error: ERROR! Libpcap library/headers (libpcap.a (or .so)/pcap.h) not found To fix the above […]
See MoreMonth: February 2014
How to find and Delete the empty Directories And Files In UNIX !!!
The following command would help you find empty files & directory find . -type d -empty — for directory find . -type f -empty — for files Delete all empty directories under the current directory using the following command : find . -type d -empty -exec rmdir {} \; To see the count of files […]
See MoreMySQL is disabled by sys admin while restarting MySql service
Sometimes it may happen that while restarting mysql service on server you are getting below error. mysql is disabled by sys admin Try running below script to bring mysql up again /scripts/mysqlup If it’s Up then ok, but sometime it will give below error Updates for mysql /etc/mysql disabled If it is not working then go to /etc folder cd /etc Run the […]
See More
You must be logged in to post a comment.