For instance, what is "writeback"? Maybe it has always been there, but I don't recognize it. How do I learn what it is? Below is my interpretation of ps's output. Thanks
User: The user who started the process
PID: the process ID
%CPU and %MEM: The resources being used.
VSZ: Virtual memory being used?
RSS: Resident set size, non-swapped virtual memory?
TTY: The terminal accessing?
STAT: The status? For this process, it is in interruptible sleep (waiting for an event to complete) and is high-priority (not nice to other users)?
START: When it was started? Date only and not time?
TIME: The amount of time it has run?
COMMAND: The name of the process?
Code:
michael@raspberrypi3:~ $ ps aux
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
...
root 26 0.0 0.0 0 0 ? S< Apr13 0:00 [writeback]
...
michael 5330 0.0 0.2 4816 2164 pts/0 R+ 11:53 0:00 ps aux
michael@raspberrypi3:~ $ whereis writeback
writeback:
michael@raspberrypi3:~ $ whereis [writeback]
[writeback]:
michael@raspberrypi3:~ $