How to quickly check RAM on Linux
ib-aid.com
How to quickly check RAM on Linux
1–4 of 4 posts
Re: How to quickly check RAM on Linux
#2Also look at memtester[0] as a userspace tool.
Re: How to quickly check RAM on Linux
#3Also look at memtester[0] as a userspace tool. [0] http://pyropus.ca/software/memtester/
thanks, I'll add the link.
Re: How to quickly check RAM on Linux
#4How does the given command check RAM?
dd if=/dev/zero of=/run/zero.bin bs=1G count=8
sha1sum /run/zero.bin
/dev/zero is a special file that always returns zeros. Nothing in there looks like it touches more than a trivial amount of RAM.Plus, this test can't tell if a bit is always zero.