1、增加新用户
useradd newname
2、设置新用户密码
passwd 用户名
3、设置linux记录日志
PS1="`whoami`@`hostname`:"'[$PWD]' 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/dbasky ] then mkdir /tmp/dbasky chmod 777 /tmp/dbasky fi if [ ! -d /tmp/dbasky/${LOGNAME} ] then mkdir /tmp/dbasky/${LOGNAME} chmod 300 /tmp/dbasky/${LOGNAME} fi export HISTSIZE=4096 DT=`date "+%Y-%m-%d_%H:%M:%S"` export HISTFILE="/tmp/dbasky/${LOGNAME}/${USER_IP}-dbasky.$DT" chmod 600 /tmp/dbasky/${LOGNAME}/*dbasky* 2>/dev/null
会在系统的/tmp新建个
dbasky
目录,在目录中记录了所有的登陆过系统的用户和IP地址,还有历史命令!我们还可以用这个方法来监测系统的安全性。
注意:最好再给
dbasky
这个目录建议你加个t位!!
chmod o+t dbasky
补充权限:https://blog.popkx.com/limit-certain-user-visit-certain-directory-in-linux/
关于日志 https://blog.csdn.net/jctian000/article/details/81773255