memtester 退出代码 6

memtester 退出代码 6

在 Ubuntu 18.04 中,我一直在运行memtester以测试硬件的 RAM。使用命令

sudo memtester 100M 2

我收到退出代码

6

这在手册页中没有记录。6那么 eit 代码是什么意思呢?

答案1

来自 memtester 手册页:

memtester's exit code is 0 when everything works properly. Otherwise, it is the logical OR of the following values:

x01
    error allocating or locking memory, or invocation error 
x02
    error during stuck address test 
x04
    error during one of the other tests

因此 6 是 2 和 4 的逻辑“或”

相关内容