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 MoreCategory: Hostripples Featured
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 MoreHow to install ioping in linux server !!!
This tool lets you monitor I/O latency in real time. It shows disk latency in the same way as ping shows network latency. Login to SSH. Go to the folder where you want to download it. cd /usr/local/src Download the installation file. https://ioping.googlecode.com/files/ioping-0.6.tar.gz Extract that file using below command. tar -xzvf ioping-0.6.tar.gz Go inside that […]
See More
You must be logged in to post a comment.