Linux清除用户登录记录和命令历史方法
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
清除登陆系统成功的记录
[root@localhost root]# echo > /var/log/wtmp
//此文件默认打开时乱码,可查到ip等信息
[root@localhost root]# last
//
此时即查不到用户登录信息
清除登陆系统失败的记录
[root@localhost root]# echo > /var/log/btmp
//
此文件默认打开时乱码
,
可查到
登陆失败
信息
[root@localhost root]# lastb
//
查不到登陆失败
信息
清除历史执行命令
[root@localhost root]# history -c
//
清空历史执行命令
[root@localhost root]# echo > ./.bash_history
//
或清空用户目录下的这个文件即可
导入空历史记录
[root@localhost root]# vi /root/history
//
新建记录文件
[root@localhost root]# history -c
//
清除记录
[root@localhost root]# history -r /root/history.txt
//
导入记录
[root@localhost root]# history
//
查询导入结果
example
[root@localhost root]# vi /root/history
[root@localhost root]# history -c
[root@localhost root]# history -r /root/history.txt
[root@localhost root]# history
[root@localhost root]# echo > /var/log/wtmp
[root@localhost root]# last
[root@localhost root]# echo > /var/log/btmp
[root@localhost root]# lastb
[root@localhost root]# history -c
[root@localhost root]# echo > ./.bash_history
[root@localhost root]# history
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献2条内容
所有评论(0)