With the help of the following command, you can easily find top 10 processes that are consuming high memory on any Linux system. ps
is the default command available in most of Linux operating system that provide details about processes in system.
ps -eo pid,cmd,%mem,%cpu --sort=-%mem | head
Output will print top 10 processes that are consuming high memory on your system in descending order. You can also use top command to filter processes by memory utilization.
The post List top 10 memory using processes in Linux appeared first on TecAdmin.
Source: Read More