Skip to Content

ICMP is a network layer protocol used by network devices to diagnose network communication issues. Tcpdump command on Linux can be used to capture network packets. We can use the following examples to capture ICMP and ICMPv6 packets with tcpdump command on Linux. What is ICMP? The Internet Control Message Protocol (ICMP) is a protocol …

Read More about Capture Ping Packets With Tcpdump

/proc/meminfo on Linux displays current system-wide memory performance statistics. It provides the most complete view of system memory usage. Here is a detailed explanation of all the metrics. We can use these memory metrics to troubleshoot Linux memory issues. MemTotal The total amount of system physical memory. MemFree The total amount of free physical memory. …

Read More about Linux Memory Metrics: /proc/meminfo

Userdel command can be used to delete a user and related files in Linux. In most Linux distributions, the user home and mail spool directories are not removed when removing a user account with userdel. We are going through the whole process to see what happens after we run userdel command. Understanding Userdel Command The …

Read More about How Userdel Works In Linux