Linux清除用户登录记录和命令历史的方法

by Web全栈工程师 on 2014 年 07 月 02 日

清除登陆系统成功的记录

last
echo >/var/log/wtmp

清除登陆系统失败的记录

lastb
echo > /var/log/btmp

清除历史执行命令

history
history -c
echo > ./.bash_history

查看当前登录用户

w
who

查看自己的用户名

whoami

查看所有用户

cat /etc/passwd |cut -f 1 -d :
cut -d : -f 1 /etc/passwd
cat /etc/passwd |awk -F \: '{print $1}'

Comments on this entry are closed.

Previous post:

Next post: