一:设置所有用户的历史命令限制
vim /etc/profile
HISTSIZE=100

二:设置当前用户在注销登录后自动清空历史命令
echo "history -c" >> /root/.bash_logout

三:设置空置超时自动注销终端
vim /etc/profile
export TMOUT=6000