0

When I issue the command who in a bash terminal:

$ who
me   console      2018-11-09 07:13
me   ttys000      2018-11-09 07:13
me   ttys001      2018-11-09 07:13

The manual states:

who - show who is logged on
Print information about users who are currently logged in.

I am working on two terminals ttys000 and ttys001.

What does console mean in the above output?

Jeff Schaller
  • 67,283
  • 35
  • 116
  • 255
Wizard
  • 2,503

1 Answers1

1

Taken from an answer from this question:

Historically the console was the main physical device used by the System Administrator to control the server, and TTYs were the users' serial terminals attached to a server. Now console and tty0 usually identify the same virtual device.

dr_
  • 29,602