libpcap-1.0.0.tar.gz
pcre-8.00.tar.gz
libnet-1.0.2a.tar.gz (This is optional package if you want SMB popup alerts on window’s machines.)
snort-2.8.5.1.tar.gz
acid-0.9.6b23.tar.gz
How to log DNS server activity?
Ans : Sometimes you require to log DNS server activity to a file for future reference for analyse the activity on DNS server and whether DNS server is properly resolving accurately or not. rndc(remote name daemon control) is the command to use for DNS server activity logging. Let’s have a look how to log DNS server activity. In order to log DNS server entries just execute below command … Continue Reading
1.How to take the backup and restore MBR? Why do you require to take the backup of your MBR?
Ans : MBR (Master Boot Recorder) is a vital part of your hard disk which contains booting information, without it its difficult to boot the system. Suppose you have windows and Linux duel boot on your machine and as you know windows is more prone to virus attacks. So it’s always better to backup your MBR … Continue Reading
The differences between Ext2 and Ext3 file systems are as follows.
|
Sl.No |
EXT2 |
EXT3 |
|
Journaling |
No journaling |
Has journaling |
|
Speed of file system(read-write) |
Bit faster |
Bit slower then ext2 file-system |
|
Data corruption |
File system may be corrupted due to unplanned reboots |
Prevents file-system corruption |
|
Way to recover data |
Require fsck to recover data after unplanned reboot |
Does not require(automatic file recovery is done at booting time) |
|
Online file system growth. |
By default there is no |
Can we create a file system (i.e. formatting a drive/partition) with in a file system?
Looks little bit strange is int it? So follow me I will show you how to create a virtual partition and file system within a partition.
Step1 : Create a empty file with /dev/zero with size equal to 50Mb.
#dd if=/dev/zero of=/temp/vf0 count=102400
Note :
1. By default “dd” command(dataset definition) uses block of 512bytes so … Continue Reading