码迷,mamicode.com
首页 > 其他好文 > 详细

一种监控所有账户登陆及操作命令的方法

时间:2014-06-17 18:43:29      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:style   tar   get   os   name   div   

公司师兄教的一种方法:

将如下脚本,加入到/etc/profile最后即可
 
PS1="`whoami`@`hostname`:"‘[$PWD]‘
history
USER_IP=`who -u am i 2>/dev/null| awk ‘{print $NF}‘|sed -e ‘s/[()]//g‘`
if [ "$USER_IP" = "" ]
then
USER_IP=`hostname`
fi
if [ ! -d /tmp/history ]
then
mkdir /tmp/history
chmod 777 /tmp/history
fi
if [ ! -d /tmp/history/${LOGNAME} ]
then
mkdir /tmp/history/${LOGNAME}
chmod 300 /tmp/history/${LOGNAME}
fi
export HISTSIZE=4096
DT=`date +"%Y%m%d_%H%M%S"`
export HISTFILE="/tmp/history/${LOGNAME}/${USER_IP} history.$DT"
chmod 600 /tmp/history/${LOGNAME}/*history* 2>/dev/null



一种监控所有账户登陆及操作命令的方法,布布扣,bubuko.com

一种监控所有账户登陆及操作命令的方法

标签:style   tar   get   os   name   div   

原文地址:http://blog.csdn.net/clark_xu/article/details/31731423

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!