Commands

Ps Command on Linux with Examples

The ps command in Linux stands as one of the most essential utilities for system administrators and power users alike. This powerful tool provides a snapshot of the currently running processes on your Linux system, offering critical insights into system performance, resource usage, and potential issues. Whether you’re troubleshooting high CPU usage, hunting down memory leaks, or simply wanting to understand what’s happening under the hood of your Linux machine, mastering the ps command is fundamental to effective system management.

Understanding PS Command Fundamentals

The ps command displays information about active processes running on your Linux system. Its basic syntax is straightforward:

ps [options]

When run without any options, ps provides a minimal output showing only the processes associated with your current terminal session. The default output contains four columns of information:

  • PID (Process ID): A unique numerical identifier assigned to each process. This number helps you reference specific processes when needed.
  • TTY: Indicates the terminal device from which the process was started. If this shows “?” it means the process isn’t associated with any terminal.
  • TIME: Represents the cumulative CPU time the process has consumed since starting. This is shown in the format of minutes:seconds.
  • CMD: Displays the name of the command or program that initiated the process.

Understanding Process States

Linux processes can exist in several states, each represented by a single-character code in the ps output when using certain options:

  • R (Running): The process is either running or ready to run.
  • S (Sleeping): The process is in an interruptible sleep state, waiting for an event or resource.
  • D (Uninterruptible sleep): The process is waiting for I/O operations and cannot be interrupted.
  • Z (Zombie): These are defunct processes that have completed execution but still have an entry in the process table.
  • T (Stopped): The process has been stopped, usually by a user signal.

Foreground vs Background Processes

In Linux, processes can run either in the foreground or background:

  • Foreground processes: These interact directly with the terminal and receive input from the user.
  • Background processes: These run without direct interaction with the user, allowing you to continue using the terminal for other tasks.

The ps command can help you identify both types of processes, which is particularly useful when you need to manage resources or troubleshoot system performance issues.

PS Command Options and Syntax

The ps command offers a rich set of options that provide flexibility in how process information is displayed and organized. Understanding these options is key to leveraging the full power of this utility.

Style Variations

One unique aspect of the ps command is its support for three different option styles:

  • UNIX/POSIX options: Preceded by a hyphen (e.g., -e, -f)
  • BSD options: Written without a hyphen (e.g., aux)
  • GNU long options: Preceded by two hyphens (e.g., --sort, --forest)

This flexibility allows users familiar with different Unix-like operating systems to use the syntax they’re most comfortable with.

Common Options Explained

Here are some of the most frequently used ps command options:

  • -e or -A: Displays all processes on the system
  • -f: Provides a full-format listing that includes additional information such as UID, PPID, and STIME
  • -l: Presents information in a long format with detailed process state information
  • -u username: Shows processes belonging to a specific user
  • aux: A BSD-style option that displays all processes with detailed information
  • –sort: Allows custom sorting of the output based on various fields

Option Combinations

You can combine multiple options to refine the output according to your needs:

ps -ef

This combination shows all processes (-e) in full format (-f), providing comprehensive information about each process running on the system.

Another powerful combination is:

ps aux

This BSD-style command displays all processes with detailed information including CPU and memory usage percentages.

Basic PS Command Examples with Output

Let’s explore some practical examples of the ps command that demonstrate its versatility and utility in everyday system administration tasks.

Viewing All Processes

To see all processes running on your system, use one of these commands:

ps -e

This displays a basic list of all processes.

For more detailed information:

ps -ef

This shows all processes with full details including user, PID, parent PID, CPU usage, and start time.

For a BSD-style alternative with memory usage information:

ps aux

This comprehensive view includes CPU and memory percentages, making it excellent for performance monitoring.

Filtering by User

To view processes owned by a specific user:

ps -u username

Replace “username” with the actual username you’re interested in.

For processes running as root:

ps -U root -u root

This command shows all processes that belong to the root user, which is particularly useful for security auditing.

Finding Specific Processes

To locate a specific process by name:

ps -C firefox

This shows all processes with the name “firefox”.

Alternatively, you can use grep to filter results:

ps aux | grep nginx

This command lists all processes and pipes the output to grep, which filters for lines containing “nginx”.

Customizing Output Fields

One of the most powerful features of ps is the ability to customize the output fields:

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

This command displays process ID, parent process ID, command name, CPU percentage, and memory percentage, sorted by CPU usage in descending order.

For a simpler custom output:

ps -o pid,user,cmd

This shows only the process ID, user, and command name for a cleaner display.

Viewing Process Hierarchy

To understand the parent-child relationships between processes:

ps --forest

This displays processes in a tree-like format, making it easy to visualize their hierarchical relationships.

Another helpful command for understanding process relationships:

ps -ejH

This shows all processes with their hierarchy in a more compact format.

Advanced PS Usage Techniques

Beyond basic monitoring, the ps command offers advanced capabilities for deeper system analysis and troubleshooting.

Thread Monitoring

Modern applications often create multiple threads. To view threads within processes:

ps -eLf

This displays one line per thread, allowing you to see how multi-threaded applications distribute their workload.

Alternatively, you can use:

ps -eo pid,tid,comm

This shows process IDs, thread IDs, and command names, focusing specifically on thread information.

Resource Monitoring

For identifying resource-intensive processes:

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

This command sorts all processes by CPU usage and displays only the top entries, helping you quickly identify CPU-hungry applications.

For memory-intensive processes:

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

This sorts by memory usage instead, helping identify potential memory leaks or applications consuming excessive RAM.

Security Monitoring

For security-focused monitoring:

ps -eo user,pid,cmd

This displays the user running each process, which is valuable for identifying potentially unauthorized processes.

To examine processes running with elevated privileges:

ps -U root -u root

This command lists all processes running as root, which should be regularly audited for security purposes.

Process Control Groups

Modern Linux systems use control groups (cgroups) to manage resource allocation. To view process cgroup information:

ps -eo pid,cgroup,cmd

This displays the control group information for each process, which is particularly useful when working with containerized applications or systems using systemd.

Combining PS with Other Commands

The ps command becomes even more powerful when combined with other Linux utilities through command pipelines.

PS with Grep

The most common combination is filtering ps output with grep:

ps aux | grep apache

This filters the process list to show only lines containing “apache”, making it easy to find specific processes.

For more accurate results that exclude the grep process itself:

ps aux | grep "[a]pache"

The square brackets create a regular expression that matches “apache” but not “[apache]”, effectively filtering out the grep command from results.

PS with Sort and Head/Tail

To identify the top CPU consumers:

ps aux --sort=-%cpu | head -10

This sorts all processes by CPU usage in descending order and displays only the top 10.

For memory usage:

ps aux --sort=-%mem | head -10

This shows the top 10 processes consuming the most memory, helpful for diagnosing system slowdowns or memory shortages.

PS in Shell Scripts

The ps command is frequently used in monitoring scripts:

#!/bin/bash
# Simple script to check if a critical service is running
if ps -ef | grep -q "[n]ginx"; then
    echo "Nginx is running"
else
    echo "Warning: Nginx is not running"
    # Add restart commands or notification logic here
fi

This script checks if Nginx is running and can be expanded to take corrective actions if needed.

Using PS with Watch

For real-time monitoring:

watch -n 1 'ps -eo pid,ppid,cmd,%cpu,%mem --sort=-%cpu | head'

This refreshes the ps command output every second, providing a near-real-time view of system processes sorted by CPU usage.

Troubleshooting with PS Command

The ps command is invaluable for diagnosing and resolving common system issues.

Identifying High CPU Usage

When your system becomes sluggish, identifying CPU-intensive processes is the first step:

ps -eo pid,user,cmd,%cpu --sort=-%cpu | head -10

This displays the top 10 CPU-consuming processes. Look for processes consistently showing high percentages, especially unexpected ones that might indicate problems.

For multi-core systems, remember that percentages can exceed 100% as they represent usage across all cores. A process showing 200% is using the equivalent of two full cores.

Detecting Memory Issues

Memory leaks and excessive consumption can be identified with:

ps -eo pid,user,cmd,%mem --sort=-%mem | head -10

This shows the top memory consumers. Watch for processes whose memory usage grows continuously without stabilizing, which often indicates a memory leak.

For more detailed memory analysis:

ps -eo pid,user,vsz,rss,cmd --sort=-rss | head

This shows both virtual memory size (VSZ) and resident set size (RSS), helping distinguish between allocated and actually-used memory.

Zombie Process Management

Zombie processes indicate potential application bugs or improper process handling:

ps aux | grep "Z"

To find zombie processes more precisely:

ps -eo pid,stat,cmd | grep -e "^.*Z.*"

While zombies themselves consume minimal resources, large numbers of them may indicate problems with parent processes that aren’t properly handling their child processes’ termination.

Investigating Unresponsive Applications

When applications freeze:

ps -o pid,state,cmd -p <pid>

Replace <pid> with the process ID of the unresponsive application to check its state. A state of “D” indicates uninterruptible sleep, often due to I/O issues, while “T” indicates it’s been stopped.

For applications that appear frozen:

ps -eo pid,wchan,cmd | grep <application_name>

The wchan column shows what the process is waiting for, which can provide insights into why it’s not responding.

Best Practices and Tips

Maximizing the effectiveness of the ps command requires understanding some key best practices.

Efficient Command Combinations

Create aliases for frequently used ps commands in your shell configuration file:

alias pscpu='ps -eo pid,user,cmd,%cpu --sort=-%cpu | head -10'
alias psmem='ps -eo pid,user,cmd,%mem --sort=-%mem | head -10'

This allows quick access to common monitoring commands without remembering complex syntax.

Performance Impact Considerations

Running ps with extensive options on systems with thousands of processes can itself consume significant resources. Consider limiting output when possible:

ps -eo pid,user,cmd,%cpu --sort=-%cpu | head -20

This limits output to just the top 20 processes, reducing the command’s own resource usage.

When to Use PS vs Other Tools

Use ps for:

  • Script-based monitoring
  • Point-in-time analysis
  • Detailed process attribute examination
  • Remote troubleshooting over SSH connections

Prefer top, htop, or other tools for:

  • Interactive monitoring
  • Real-time updates
  • User-friendly interfaces
  • Overall system status

Regular Monitoring Habits

Implement regular process monitoring as part of system maintenance:

  • Check for unexpected root processes
  • Monitor for zombie accumulation
  • Watch for resource trends over time
  • Document normal process behavior to more easily spot anomalies

Security Considerations

From a security perspective, regularly audit processes:

ps -U root -u root

This shows all processes running as root. Regularly review this list to ensure all privileged processes are legitimate and expected.

Also check for processes running from unusual locations:

ps -eo pid,user,cmd | grep /tmp

Processes executing from temporary directories can sometimes indicate security compromises.

Quick Reference Table

Task Command
List all processes ps -e or ps aux
Full-format listing ps -ef
Show user processes ps -u username
Find process by name ps -C processname
Sort by CPU usage ps -eo pid,user,cmd,%cpu --sort=-%cpu
Sort by memory usage ps -eo pid,user,cmd,%mem --sort=-%mem
Show process hierarchy ps --forest
Display threads ps -eLf
Show processes as root ps -U root -u root
Custom output format ps -eo pid,ppid,user,cmd

This table provides quick access to the most commonly used ps commands for various process management tasks, saving you time when you need to quickly check or troubleshoot your Linux system.

VPS Manage Service Offer
If you don’t have time to do all of this stuff, or if this is not your area of expertise, we offer a service to do “VPS Manage Service Offer”, starting from $10 (Paypal payment). Please contact us to get the best deal!

r00t

r00t is an experienced Linux enthusiast and technical writer with a passion for open-source software. With years of hands-on experience in various Linux distributions, r00t has developed a deep understanding of the Linux ecosystem and its powerful tools. He holds certifications in SCE and has contributed to several open-source projects. r00t is dedicated to sharing her knowledge and expertise through well-researched and informative articles, helping others navigate the world of Linux with confidence.
Back to top button