history历史记录控制

Posted su-root

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了history历史记录控制相关的知识,希望对你有一定的参考价值。

往往我们操作的每一条命令都会被机器记录下来,所有我们为了安全需要屏蔽掉某些敏感的操作命令。

设置linux默认的历史记录数:

临时生效:

export  HISTSIZE=5

history

技术分享图片

永久生效:

echo "export HISTSEZE=5" >>/etc/profile

. /etc/profile或者source /etc/profile    //是得配置生效

 技术分享图片

控制历史记录的文件:命令行的历史记录数量变量

cat ~/.bash_history

技术分享图片

历史记录文件的命令数量变量(~/.bash_history)

临时生效:

export HISTFILESIZE=5

history

 

永久生效:

echo “HISTFILESIZE=5” >>/etc/profile

. /etc/profile或者source /etc/profile   //是得配置生效

 技术分享图片

清空历史记录:history –c

 技术分享图片

清空指定记录命令:

history –d 行号

 技术分享图片

以上是关于history历史记录控制的主要内容,如果未能解决你的问题,请参考以下文章

使用 django-simple-history 跟踪具有外键历史记录的 Django 模型历史记录

linux命令历史

history(路由控制)

linux下history命令显示历史指令记录的使用方法

linux怎么清除history记录

如何清除linux的history 命令历史记录