我已经在网上搜索了这个问题的答案。在auditd 配置文件auditd.conf 中有一个参数priority_boost。RedHat联机帮助页说:
priority_boost
This is a non-negative number that tells the audit daemon how much of a priority boost it should take. The default is 4. No change is 0.
我很难理解这个值有什么影响。有人可以解释一下吗?
通过
auditd
的源,priority_boost
用于修改auditd
过程nice
值。该值越大,auditd 的优先级越高。这是auditd的源代码片段:
nice(1)
以及来自手册页的片段:请注意,在
auditd
代码段中,nice 设置为(int)-config.priority_boost
,这意味着如果您设置priority_boost
为 4,您实际上将其 nice 设置为 -4,因此优先级更高。