Table of Contents
How to check how many users are logged in in Linux
Home Operation and Maintenance Linux Operation and Maintenance How to check how many users are logged in in Linux

How to check how many users are logged in in Linux

May 17, 2022 am 10:38 AM
linux

View method: 1. Use the w command. This command is used to display the user information currently logged in to the system. The syntax is "w [-fhlsuV][user name]"; 2. Use the who command. This command uses To display which users are on the system, the syntax is "who [parameter]".

How to check how many users are logged in in Linux

#The operating environment of this tutorial: linux7.3 system, Dell G3 computer.

How to check how many users are logged in in Linux

1. Use the w command to check the process information being used by the logged-in user

Linux w command is used Displays the information of users currently logged into the system.

Execute this command to know who are the users currently logged into the system and the programs they are executing.

Executing the w command alone will display all users. You can also specify a user name to display only the relevant information of a certain user.

Syntax

w [-fhlsuV][用户名称]
Copy after login

Parameter description:

-f Turn on or off the display of where the user logs in to the system.

-h Does not display the title information column of each field.

-l Use detailed format list, this is the default value.

-s Use a concise format list and do not display the user login time, terminal stage operations and CPU time consumed by the program.

-u Ignore the name of the executing program and information about the CPU time consumed by the program.

-V Display version information. The

w command is used to display the names of users who have logged in to the system and what they are doing. The information used by this command comes from the /var/run/utmp file. The information output by the w command includes:

  • User name

  • The user’s machine name or tty number

  • Remote host address

  • The time the user logged into the system

  • Idle time (little effect)

  • The time taken by the process attached to the tty (terminal) (JCPU time)

  • The time taken by the current process (PCPU time)

  • The command currently being used by the user

is as follows:

# w  // 显示当前用户登录信息及执行的命令
19:50:14 up 9:27, 4 users, load average: 0.31, 0.26, 0.18
USER   TTY   FROM       LOGIN@  IDLE  JCPU  PCPU WHAT
root   tty7   :0        Thu12  31:39m 10:10  0.60s gnome-session
root   pts/0  :0.0       17:09  2:18m 15.26s 0.15s bash
root   pts/1  192.168.1.17   18:51  1.00s 1.24s 0.14s -bash
root   pts/2  192.168.1.17   19:48  60.00s 0.05s 0.05s -bash
Copy after login

2. Use the who command to view (login) the user name and the started process

The who command is used to list the names of users currently logged in to the system. The output is: user name, tty number, time and date, and host address.

The who command in Linux is used to display which users are on the system. The displayed information includes user ID, terminal used, where they are connected from, online time, latency, and CPU Usage, actions, etc.

Syntax:

who [参数]
Copy after login

You can know which users are currently logged in to the system. Executing the who command alone will list the login account, the terminal used, the login time and where to log in from or currently in use. Which X monitor.

Parameters:

  • -H or --heading Display the title information column of each column.

  • -i or -u or --idle Display the idle time. If the user has performed any action within the previous minute, it will be marked with a "." symbol. If the user has performed any action within the past minute, it will be marked with a "." If there has been no action for more than 24 hours, the "old" string is marked.

  • #-m The effect of this parameter is the same as specifying the "ami" string.

  • -q or --count Only display the account names and total number of people logged into the system.

  • -s This parameter will be ignored and will not be processed. It is only responsible for solving the compatibility issues of other versions of the who directive.

  • -w or -T or --mesg or --message or --writable Display the user's information status bar.

  • #-l List any login processes.

  • -T or -w Display the user's information status bar.

The example is as follows: Display the user currently logged in to the system

[root@localhost ~]# who
root     tty2         2021-05-20 09:20 (tty2)
Copy after login

Recommended learning: Linux video tutorial

The above is the detailed content of How to check how many users are logged in in Linux. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What computer configuration is required for vscode What computer configuration is required for vscode Apr 15, 2025 pm 09:48 PM

VS Code system requirements: Operating system: Windows 10 and above, macOS 10.12 and above, Linux distribution processor: minimum 1.6 GHz, recommended 2.0 GHz and above memory: minimum 512 MB, recommended 4 GB and above storage space: minimum 250 MB, recommended 1 GB and above other requirements: stable network connection, Xorg/Wayland (Linux)

Linux Architecture: Unveiling the 5 Basic Components Linux Architecture: Unveiling the 5 Basic Components Apr 20, 2025 am 12:04 AM

The five basic components of the Linux system are: 1. Kernel, 2. System library, 3. System utilities, 4. Graphical user interface, 5. Applications. The kernel manages hardware resources, the system library provides precompiled functions, system utilities are used for system management, the GUI provides visual interaction, and applications use these components to implement functions.

How to run java code in notepad How to run java code in notepad Apr 16, 2025 pm 07:39 PM

Although Notepad cannot run Java code directly, it can be achieved by using other tools: using the command line compiler (javac) to generate a bytecode file (filename.class). Use the Java interpreter (java) to interpret bytecode, execute the code, and output the result.

vscode cannot install extension vscode cannot install extension Apr 15, 2025 pm 07:18 PM

The reasons for the installation of VS Code extensions may be: network instability, insufficient permissions, system compatibility issues, VS Code version is too old, antivirus software or firewall interference. By checking network connections, permissions, log files, updating VS Code, disabling security software, and restarting VS Code or computers, you can gradually troubleshoot and resolve issues.

How to check the warehouse address of git How to check the warehouse address of git Apr 17, 2025 pm 01:54 PM

To view the Git repository address, perform the following steps: 1. Open the command line and navigate to the repository directory; 2. Run the "git remote -v" command; 3. View the repository name in the output and its corresponding address.

Can vscode be used for mac Can vscode be used for mac Apr 15, 2025 pm 07:36 PM

VS Code is available on Mac. It has powerful extensions, Git integration, terminal and debugger, and also offers a wealth of setup options. However, for particularly large projects or highly professional development, VS Code may have performance or functional limitations.

How to use VSCode How to use VSCode Apr 15, 2025 pm 11:21 PM

Visual Studio Code (VSCode) is a cross-platform, open source and free code editor developed by Microsoft. It is known for its lightweight, scalability and support for a wide range of programming languages. To install VSCode, please visit the official website to download and run the installer. When using VSCode, you can create new projects, edit code, debug code, navigate projects, expand VSCode, and manage settings. VSCode is available for Windows, macOS, and Linux, supports multiple programming languages ​​and provides various extensions through Marketplace. Its advantages include lightweight, scalability, extensive language support, rich features and version

vscode terminal usage tutorial vscode terminal usage tutorial Apr 15, 2025 pm 10:09 PM

vscode built-in terminal is a development tool that allows running commands and scripts within the editor to simplify the development process. How to use vscode terminal: Open the terminal with the shortcut key (Ctrl/Cmd). Enter a command or run the script. Use hotkeys (such as Ctrl L to clear the terminal). Change the working directory (such as the cd command). Advanced features include debug mode, automatic code snippet completion, and interactive command history.

See all articles