#Linux--记录每个用户登录后的IP信息,还有其它的操作信息,追加
vim /etc/profile PS1="`whoami`@`hostname`:"‘[$PWD]‘
(Linux系统提示符是用系统变量PS1来定义的)
history
(who -u am i 会显示系统中登陆进来的用户及登陆从哪个IP登陆进来的,这里后面过滤了就取值一个登陆进来的IP)
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/ruige ] then mkdir /tmp/ruige chmod 777 /tmp/ruige fi if [ ! -d /tmp/ruige/${LOGNAME} ] then mkdir /tmp/ruige/${LOGNAME} chmod 300 /tmp/ruige/${LOGNAME} fi export HISTSIZE=4096 DT=`date ‘+%Y:%m:%d %r‘` export HISTFILE="/tmp/ruige/${LOGNAME}/${USER_IP} ruige.$DT" chmod 600 /tmp/ruige/${LOGNAME}/*ruige* 2>/dev/null
时间: 2024-10-25 00:01:14