last命令-显示用户历史登录情况-Linux命令大全ROED容易得分享

ROED2023-01-14  59

last命令 – 显示用户历史登录情况

 

last命令的功能是用于显示用户历史登录情况,通过查看系统记录的日志文件内容,进而使管理员可以获知谁曾经或者试图连接过服务器。

通过读取系统登陆历史日志文件(/var/log/wtmp)并按照用户名、登录终端、来源终端、时间等信息进行划分,让用户对系统历史登录情况一目了然。

语法格式:last [选项]

常用参数:

-n 显示行数
-a 将来源终端信息项放置放到最后
-R 省略来源终端
-d 将IP地址转换成主机名称
-f 指定记录文件
-x 显示系统开关机等信息

参考实例

显示近期用户或终端的历史登录情况:

[root@linuxcool ~]# last

root     tty2         tty2             Mon Oct 17 03:13    gone - no logout
reboot   system boot  4.18.0-80.el8.x8 Mon Oct 17 03:05   still running
root     tty2         tty2             Mon Oct 17 03:00 - 03:05  (00:05)
reboot   system boot  4.18.0-80.el8.x8 Mon Oct 17 02:59 - 03:05  (00:06)

wtmp begins Mon Oct 17 02:59:19 2022

仅显示最近3条历史登录情况,并不显示来源终端信息:

[root@linuxcool ~]# last -n 3 -R
root     tty2         Mon Oct 17 03:13    gone - no logout
reboot   system boot  Mon Oct 17 03:05   still running
root     tty2         Mon Oct 17 03:00 - 03:05  (00:05)

wtmp begins Mon Oct 17 02:59:19 2022

显示系统的开关机历史信息,并将来源终端放置到最后面:

[root@linuxcool ~]# last -x -a 
root     tty2         Mon Oct 17 03:13    gone - no logout  tty2
runlevel (to lvl 5)   Mon Oct 17 03:06   still running      4.18.0-80.el8.x86_64
reboot   system boot  Mon Oct 17 03:05   still running      4.18.0-80.el8.x86_64
shutdown system down  Mon Oct 17 03:05 - 03:05  (00:00)     4.18.0-80.el8.x86_64
root     tty2         Mon Oct 17 03:00 - 03:05  (00:05)     tty2
runlevel (to lvl 5)   Mon Oct 17 02:59 - 03:05  (00:05)     4.18.0-80.el8.x86_64
reboot   system boot  Mon Oct 17 02:59 - 03:05  (00:06)     4.18.0-80.el8.x86_64

wtmp begins Mon Oct 17 02:59:19 2022

last命令 – 显示用户历史登录情况,知识来源于网络运用于网络,仅供学习、交流使用,版权归属原作者所有。【内容仅供参考,请读者自行甄别,以防风险】

申明 1、网站名称:容易得 网址:WWW.ROED.CN
2、网站的内容来源于网络,如有侵权,请联系邮箱:185254287#qq.com 本站会在7个工作日内进行删除处理。
3、转载发布此文目的在于传递分享更多信息,仅代表原作者个人观点,并不代表本站赞同其观点和对其真实性负责。文章内容仅供参考,请读者自行甄别,以防风险。
4、禁止发布和链接任何有关政治、色情、宗教、迷信、低俗、变态、血腥、暴力以及危害国家安全,诋毁政府形象等违法言论和信息。
转载请注明原文地址:https://www.roed.cn/read-411.html