HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

last — View the last logged in users. More information: <https://manned.org/last>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommanduserslastcliloggedview
linux

Problem

How to use the last command: View the last logged in users. More information: <https://manned.org/last>.

Solution

last — View the last logged in users. More information: <https://manned.org/last>.

View last login information (e.g., username, terminal, boot time, kernel) of all users as read from /var/log/wtmp:
last


List login information of a specific user:
last {{username}}


Specify how many of the last logins to show:
last {{[-n|--limit]}} {{login_count}}


Print the full date and time for entries and then display the hostname column last to prevent truncation:
last {{[-F|--fulltimes]}} {{[-a|--hostlast]}}


View all logins by a specific user and show the IP address instead of the hostname:
last {{username}} {{[-i|--ip]}}


List information since a specific time and date:
last {{[-s|--since]}} {{-7days}}


View all recorded reboots (i.e., the last logins of the pseudo user "reboot"):
last reboot


Display help:
last {{[-h|--help]}}

Code Snippets

View last login information (e.g., username, terminal, boot time, kernel) of all users as read from `/var/log/wtmp`

last

List login information of a specific user

last {{username}}

Specify how many of the last logins to show

last {{[-n|--limit]}} {{login_count}}

Print the full date and time for entries and then display the hostname column last to prevent truncation

last {{[-F|--fulltimes]}} {{[-a|--hostlast]}}

View all logins by a specific user and show the IP address instead of the hostname

last {{username}} {{[-i|--ip]}}

Context

tldr-pages: linux/last

Revisions (0)

No revisions yet.