How to Find MAC Address using IP Address ?

Get MAC Id using IP Address

If you know the IP address of the Host, but its not within your physical reach but … Read more

How to create Linker .map file in Linux ?

Generate Linker map file

Understanding map files created by some of the Embedded compilers is required for the Engineers who are … Read more

How to setup Local Area Network (LAN) using switch on Ubuntu ?

LAN

Setting up LAN using switch is required if we don’t have the router but still we want … Read more

Understanding wireless beacon packet ( captured using pcap API’s )

As per Wikipedia, Beacon frame is one of the management frames in IEEE 802.11 based WLANs. It contains all the … Read more

How to disable and / or enable ICMP ping from Linux host ?

To disable the ICMP ping from certain Linux host, lets say which has IP of 192.168.0.100 use … Read more

How executable is created during compilation on Linux ?

This code is tested on Ubuntu . You may need to twick the script if you use a … Read more

What is the Difference between Process and Thread ?

Creating a new thread is very similar to forking a new process, but there are differences. When … Read more

Difference between Spinlock and Semaphore

Spinlocks Spinlocks assume the data you are protecting is accessed in both interrupt-handlers and normal kernel code. … Read more