Introduction to who command examples in Linux

Introduction to who command examples in Linux

About who

Displays users logged into the system. Executing the who command will tell you which users are currently logged into the system. Executing the who command alone will list the login account, the terminal used, the login time, and where they logged in from or which X display they are using.

describe

The who command prints information about all users who are currently logged in.

who syntax

who [ OPTION ]... [ FILE ] [ am i ]


Options

-a , --all Same as using options -b -d --login -p -r -t -T -u.
-b , --boot Displays the time of the last system boot.
-d , --dead Display dead processes.
-H , --heading Print a row of column headers.
--ips Print IP addresses instead of hostnames. With --lookup, canonicalize based on the stored IP (if available) instead of the stored hostname.
-l , --login Print system login process.
--lookup Try to canonicalize the hostname via DNS.
-m Print only information about the user and host associated with standard input (the terminal from which the command was issued). This method complies with the POSIX standard.
-p , --process Print active processes spawned by init.
-q , --count Displays all login names, and a count of all logged in users.
-r , --runlevel Print the current runlevel.
-s , --short Print only the name, line, and time fields, which is the default.
-t , --time Prints the time the system clock was last changed, if the information is available.
-T , -w , --mesg Adds a character that indicates the state of the terminal: '+' if the terminal is writable, '-' if the terminal is not writable, or '?'
-u , --users Prints each user's idle time and process ID.
--message Same as -T.
--writable Same as -T.
--help Displays a help message and then exits.
--version Display version information and then exit.

notes

If a file is specified, who collects its information from that file. Otherwise, it reads from the default file location (usually /var/run/utmp).

If the argument "ami" is specified, who assumes the -m option.

who Example

linuxidc@linuxidc:~$ who

Version View


Displays the username, line, and time of all current login sessions. For example:

who am i

Displays the same information, but only for the terminal session in which the command was issued, for example:

linuxmi pts/3 2018-12-02 08:52 (:0.0)

Displays "all" information along with a heading above each column of data, for example:

linuxidc@linuxidc:~$ who -aH

 
Name Line Time Idle Process Number Remarks Exit System Boot 2018-12-02 07:45

Run level 5 2018-12-02 07:46

linuxidc ? :0 2018-12-02 07:47 ? 4569 (:0) 

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM.

You may also be interested in:
  • A brief discussion on whoami and who commands in Linux

<<:  Installation tutorial of MySQL 5.7 green version under windows2008 64-bit system

>>:  js to implement the snake game with comments

Recommend

Implementation of mysql decimal data type conversion

Recently, I encountered a database with the follo...

Best Practices for Deploying ELK7.3.0 Log Collection Service with Docker

Write at the beginning This article only covers E...

Detailed explanation of the pitfalls of nginx proxy socket.io service

Table of contents Nginx proxies two socket.io ser...

Detailed explanation of MySQL clustered index and non-clustered index

1. Clustered Index Table data is stored in the or...

CSS to achieve text on the background image

Effect: <div class="imgs"> <!-...

Analysis of permissions required to run docker

Running Docker requires root privileges. To solve...

Detailed explanation of the use of CSS3 rgb and rgba (transparent color)

I believe everyone is very sensitive to colors. C...

Web lesson plans, lesson plans for beginners

Teaching Topics Web page Applicable grade Second ...

Solution to the problem of eight hours difference in MySQL insertion time

Solve the problem of eight hours time difference ...

MySQL slow query: Enable slow query

1. What is the use of slow query? It can record a...

How to make full use of multi-core CPU in node.js

Table of contents Overview How to make full use o...

Example of how to exit the loop in Array.forEach in js

Table of contents forEach() Method How to jump ou...

Pure CSS to achieve left and right drag to change the layout size

Utilize the browser's non- overflow:auto elem...

MySQL 8.0.12 Installation and Usage Tutorial

Recorded the installation and use tutorial of MyS...

Definition and function of zoom:1 attribute in CSS

Today I was asked what the zoom attribute in CSS ...