1.设置闲置账号时超时时间TMOUT
超过时间自动断开连接(退出登录)这里是设置10s
2.设置linux默认记录的历史记录数
[root@cs70-moban ~]# history
1 find / -name ifconfig
2 find / -name ifconfig-*
3 find / -name ifcfg
4 cd /usr/sbin/ifcfg
5 cd /usr/sbin
6 ls
7 vi ifcfg
8 cd ..
9 cd /etc/sysconfig/network-scripts
10 ls
11 vi ifcfg-eno16777736
12 cd
13 echo $PATH
14 ls /sbinlgrep ifconfig
15 ls /sbin|grep ifconfig
16 yum search ifconfig
17 yum install ifconfig
18 cd /etc/sysconfig/network-scripts/
19 ls
20 vi ifcfg-eno16777736
21 cd
22 yum search ifconfig
23 ip addr
24 yum provides ifconfig
25 yum install net-tools
以下省略很多
设置显示5条(最近 临时)
[root@cs70-moban ~]# HISTSIZE=5
[root@cs70-moban ~]# history
304 history
305 HISFILESIZE=5
306 history
307 HISTSIZE=5
308 history
3.配置文件设置,使上面的两个永久生效
[root@cs70-moban ~]# echo 'TMOUT=300' >> /etc/profile
[root@cs70-moban ~]# echo 'HISTSIZE=5' >> /etc/profile
[root@cs70-moban ~]# echo 'HISTFILESIZE=10'>>/etc/profile
[root@cs70-moban ~]# source /etc/profile
4。查看所有历史记录
[root@cs70-moban ~]# cat ~/.bash_history
find / -name ifconfig
find / -name ifconfig-*
find / -name ifcfg
cd /usr/sbin/ifcfg
cd /usr/sbin
以下省略很多
注意:TMOUT:控制超时时间
HISTSIZE:命令行的历史记录数
HISTFILESIZE:历史记录文件的命令数量