• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
Source Digit

Source Digit

Linux, Ubuntu Tutorials & News, Technology, Gadgets & Gizmos

  • Home
  • How To
  • Ubuntu
  • Instagram
  • Blogging
  • Android
  • WordPress
  • +More
    • Cloud Computing
    • Gadgets
    • Social Media
    • Technology
  • Write for Us
Home / How To / How To Check Top 10 CPU Consuming Process In Linux Ubuntu

How To Check Top 10 CPU Consuming Process In Linux Ubuntu

By Sourabh / January 8, 2018 Category: How To, Ubuntu

How to check top 10 CPU consuming process in Linux Ubuntu. How to find which process is taking how much CPU in Unix Systems – Linux and Ubuntu. Display Linux CPU usage per process in Terminal.

List Top Memory Consuming Processes In Terminal

The ps command can be mixed with various options to show the list of top processes sorted by RAM and CPU usage. Run the following command in Terminal to see the top running processes by RAM and CPU usage:

$ ps -eo pid,ppid,cmd,%mem,%cpu --sort=-%mem | head

Below is the screenshot of the command output:

list-process-1

Explaining the command and all the options users:

  1. -A Select all processes. Identical to -e.
  2. -e Select all processes. Identical to -A.
  3. -o User-defined format. Option of ps allows to specify the output format. Format is a single argument in the form of a blank-separated or comma-separated list, which offers a way to specify individual output columns.
  4. –pid pidlist process ID. Identical to -p and p.
  5. –ppid pidlist parent process ID. This selects the processes with a parent process ID in pidlist. That is, it selects processes that are children of those listed in pidlist.
  6. –sort Specify sorting order.
  7. cmd simple name of executable
  8. %cpu CPU utilization of the process in “##.#” format. Currently, it is the CPU time used divided by the time the process has been running (cputime/realtime ratio), expressed as a percentage.
  9. %mem Ratio of the process’s resident set size to the physical memory on the machine, expressed as a percentage.

List Top 10 CPU Consuming Processes

Similarly you can also print the top 10 CPU consuming processes. Run the following command given below:

ps -eo pid,comm,%cpu | sort -rk 3 | head

list-process-3

Tags: Command To Check Cpu Utilization In Linux, Command To Check Which Process Is Using More Memory In Linux, How Do You Find Which Process Is Taking How Much Cpu In Unix, How To Check All Open Ports On A Linux Machine And Block The Unused Ports?, How To Check Cpu Usage In Linux Server, How To Check Cpu Usage In Unix, How To Check Cpu Utilization In Aix, How To Check Cpu Utilization In Unix For A Process, How To Check Top 10 Cpu Consuming Process In Linux, How To Check Which Process Is Taking More Memory In Linux, How To Check Which Process Is Using More Cpu In Linux, How To Check Which Process Is Using More Memory In Linux, How To Check Which Process Is Using More Memory In Unix, How To Find Top Memory Consuming Process In Linux, Linux Check Cpu Usage Of A Process, Linux Check Cpu Usage Per Core, Linux Cpu Usage Per Process, Linux Find Process Using Most Cpu, Linux Memory Info, Linux Process Cpu Usage Monitoring, Linux Top Sort By Cpu, Memory Utilization In Unix, Ps Aux Sort By Memory, Ps Show Cpu Usage, Top Cpu Consuming Process In Linux, Unix Cpu Usage By Process, Unix Cpu Usage Command, Unix Memory Usage Per Process

Primary Sidebar

Latest Posts

Ubuntu 25.04 ‘Plucky Puffin’ Is Available To Download

How to Login as Root User in Linux Terminal

Install Firefox In Ubuntu Terminal Command Line

How To Check Kernel Installed Date In Linux Ubuntu

How To List All Kernel Modules That Are Loaded In Ubuntu

Enable Ubuntu Auto Login Without Password

Download Ubuntu 25.04 Official Default Wallpapers

How To Fix Initramfs Error In Ubuntu Command Line

How To Check All Available Kernel Version In Linux Ubuntu

3 Best Artificial Intelligence Domain Name Generators

© 2025 Source Digit • Linux, Ubuntu Tutorials & News, Technology, Gadgets & Gizmos

  • Home
  • About
  • Privacy Policy
  • Terms & Conditions
  • Contact Us
  • Sitemap