码迷,mamicode.com
首页 > 系统相关 > 详细

linux 操作系统修改主机名颜色以及记录操作历史记录

时间:2019-08-08 19:02:36      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:man   uid   messages   操作   lin   用户   and   操作系统   历史记录   

一、修改主机名颜色:

# root @ k8s-node05       cat /etc/profile

在文件末尾增加:

# for bash_color
PS1="\e[33;36m#\e[0m \e[31;40m\u\e[0m @ \e[32;40m\h\e[0m\] in \e[33;40m\w\e[0m\n$ "

# root @ k8s-node05   source /etc/profile

 

二、增加记录操作历史记录:

# root @ k8s-node05    cat /etc/bashrc 

在文件末尾增加:

# for bash_history
export PROMPT_COMMAND=\
‘{ msg=$(history 1 | { read x y ; echo $y ;});\
logger -t bash_history "[euid=$(whoami)]":$(who am i):[`pwd`]" $msg";}‘

 

# root @ k8s-node05    source  /etc/bashrc

所有用户的操作记录会记录到文件  

# root @ k8s-node05        tail -f   /var/log/messages

bash_history: [euid=root]:root pts/0 2019-08-08 18:10 (10.212.134.201):[/var/log] cat /etc/bashrc

可以结合es 将日志打入到es 

 

linux 操作系统修改主机名颜色以及记录操作历史记录

标签:man   uid   messages   操作   lin   用户   and   操作系统   历史记录   

原文地址:https://www.cnblogs.com/lixinliang/p/11323007.html

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