(Linux beginner) What is the magic word aux?

I used it for the time being, but what is the meaning of the aux command?

Example: ps aux | grep puma

Below, we will disassemble it.

First, grep is used when you want to search for commands that contain a specific string.

command|grep Character string you want to search

Take a closer look at the command.

ps ・ ・ ・ Easy display of your own process
aux ・ ・ ・ Combination of a, u, x options
a option ... Show processes for all users
u option: Execution user and CPU of each process,Also displays information such as memory
x option: All processes that do not have a terminal(daemon etc.)To display

daemon: A process that runs in the background. Things that work behind the scenes that are invisible to the person using the computer.

In short, aux covers all the information that all kinds of processes can know.

Answer ps aux | What is grep puma?

[Meaning] Display all known information of commands including puma

In other words, if you get lost, aux was not a mistake.

Recommended Posts

(Linux beginner) What is the magic word aux?
What is the Linux kernel?
What is Linux
What is Linux?
What is Linux
What is Linux
What is Linux for?
It's a Mac. What is the Linux command Linux?
What is UNIT-V Linux?
What is the difference between Unix and Linux?
What is the activation function?
What is the interface for ...
What is the Callback function?
[Python] What is @? (About the decorator)
[python] What is the sorted key?
What is the X Window System?
What is the python underscore (_) for?
[Linux] Who is the background job! ??
What to do if the inode is exhausted on EC2 Linux
[Linux] What is the host name confirmation method other than the hostname command?
What is the ETL processing framework clivoa?
[Unix] What is the zombie process / orphan process?
What is "mahjong" in the Python library? ??
[Machine learning] What is the LP norm?
What is the difference between `pip` and` conda`?
What is wheezy in the Docker Python image?
The origin of Manjaro Linux is "Mount Kilimanjaro"
What is namespace
What is copy.copy ()
What is Django? .. ..
What is dotenv?
What is POSIX?
What is klass?
I want to get started with the Linux kernel, what is the list head structure?
What is python
What is hyperopt?
There is Linux.
What is pyvenv
What is __call__
What is Python
I thought "What is Linux?", So I looked it up.
Linux is something like that in the first place
What is the difference between usleep, nanosleep and clock_nanosleep?
What is the domain attribute written in Plotly's Layout?
What is the true identity of Python's sort method "sort"? ??
Check if the LAN cable is disconnected on Linux
What is a recommend engine? Summary of the types
To myself as a Django beginner (2) --What is MTV?