last: Show Listing of Last Logged Users in UNIX, Linux

NAME
last, lastb – show listing of last logged in users

SYNOPSIS
last [-R] [-num] [ -n num ] [-adiox] [ -f file ] [name…]  [tty…]
lastb [-R] [-num] [ -n num ] [ -f file ] [-adiox] [name…]  [tty…]

DESCRIPTION
Last  searches  back  through  the  file /var/log/wtmp (or the file designated by the -f flag) and displays a list of all users logged in (and out) since that file was created.  Names of users and tty’s can be given, in which case last will show only those entries matching the arguments.  Names of ttys can be abbreviated, thus last 0 is the same as last tty0.

When  last catches a SIGINT signal (generated by the interrupt key, usually control-C) or a SIGQUIT signal (generated by the quit key, usually con­trol-\), last will show how far it has searched through the file; in the case of the SIGINT signal last will then terminate.

The pseudo user reboot logs in each time the system is rebooted.  Thus last reboot will show a log of all reboots since the log file was created. Lastb is the same as last, except that by default it shows a log of the file /var/log/btmp, which contains all the bad login attempts.

OPTIONS
• -num: This is a count telling last how many lines to show.
• -n: num The same.
• -R: Suppresses the display of the hostname field.
• -a: Display the hostname in the last column. Useful in combination with the next flag.
• -d: For non-local logins, Linux stores not only the host name of the remote host but its IP number as well. This option translates the IP number
back into a hostname.
• -i: This option is like -d in that it displays the IP number of the remote host, but it displays the IP number in numbers-and-dots notation.
• -o: Read an old-type wtmp file (written by linux-libc5 applications).
• -x: Display the system shutdown entries and run level changes.

# last
root     pts/1        10.4.222.123     Mon Apr  4 02:32   still logged in
root     pts/1        10.4.222.123     Mon Apr  4 00:20 - 00:22  (00:02)
root     pts/1        abcdefgh.xyz.123 Sun Apr  3 20:11 - 23:55  (03:44)
root     pts/1        abcdefgh.xyz.123 Fri Apr  1 17:42 - 18:12  (00:30)
root     pts/1        abcdefgh.xyz.123 Fri Apr  1 16:54 - 17:01  (00:07)
root     pts/1        abcdefgh.xyz.123 Fri Apr  1 01:36 - 02:35  (00:59)
root     pts/1        abcdefgh.xyz.123 Thu Mar 31 18:20 - 18:26  (00:06)
root     pts/1        10.4.222.123     Thu Mar 31 06:53 - 06:57  (00:03)
root     pts/1        abcdefgh.xyz.123 Wed Mar 30 18:47 - 18:51  (00:03)
root     pts/1        abcdefgh.xyz.123 Tue Mar 29 19:43 - 19:53  (00:09)
root     pts/1        10.4.222.123     Sun Mar 27 16:39 - 16:42  (00:02)
root     pts/1        10.4.222.123     Fri Mar 25 09:23 - 09:24  (00:01)
root     pts/1        10.4.222.123     Fri Mar 25 06:47 - 07:34  (00:46)

You May Also Like

Leave a Reply?