Linux view the most memory-intensive/cpu process situation

Source: Internet
Author: User

Linux viewing processes that occupy the highest CPU

PS Aux|head-1;ps aux|grep-v pid|sort-rn-k +3|head

or top (then press m, note that this is uppercase)

Linux view the most memory-intensive processes

PS Aux|head-1;ps aux|grep-v pid|sort-rn-k +4|head

or top (then press p, note that this is uppercase)

This combination of commands is actually the following two lines of command:

PS Aux|head-1ps aux|grep-v pid|sort-rn-k +3|head

The first sentence is primarily to get the title (USER PID%cpu%MEM VSZ RSS TTY STAT START time COMMAND).
The next grep-v PID is to remove the title of the PS aux command, that is, grep does not contain the three-letter combination of the PID line, and then the result is sorted using sort.
Sort-rn-k +3 the-rn R in this command is ordered in reverse order, n is sorted by numeric size, and-K +3 is sorted for the contents of column 3rd, and the first 10 rows of data are obtained by using the Head command. (where | represents a pipeline operation)

Linux view the most memory-intensive/cpu process situation

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.