mylovesaber / Tools-Share

存放各种自动化工具
GNU General Public License v3.0
40 stars 9 forks source link

反馈 #5

Closed TT-IPIP closed 2 years ago

TT-IPIP commented 2 years ago

/var/spool/mail/root 文件每分钟更新一次正常吗 而且文件越来越大,一晚上就快1mb了

2021-12-23 12-38-13

TT-IPIP commented 2 years ago

这是centos服务器

mylovesaber commented 2 years ago

你 centos 几?你输入 echo $TERM 看看?然后这个定时好像有点问题。。我调整下试试,那个文件增大是因为如果有后台运行一个脚本有更新信息但不显示出来,这些信息就会进入 /var/spool/mail/root 中保存,你打开的话会看到的

TT-IPIP commented 2 years ago

centos7.9 要怎么解决?

mylovesaber commented 2 years ago

脚本的定时我还得测试下,设定的 30min 怎么是 1min 一次。。。 你那个文件增大的问题加个系统定时每分钟都删掉这文件就行了,比如:

echo "* * * * * root /usr/bin/rm -rf /var/spool/mail/root" >> /etc/crontab

另外你输入 echo $TERM 看看?

TT-IPIP commented 2 years ago

echo $TERM

xterm

mylovesaber commented 2 years ago

重新更新定时了,你运行 hosts-tool updatefrom gitee 就可以了 理论上 xterm 的话 tput 可以识别出来的啊。。。你运行这个看看颜色是否正常,是否会有报错: tput setaf 2; echo "测试颜色"; tput sgr0

TT-IPIP commented 2 years ago

感谢 已经更新没有报错

mylovesaber commented 2 years ago

已经取消了 tput 定义颜色的方式,理论上不存在问题了