Memtest86 is a memory diagnostic tool that runs independently of the operating system. It tests the computer's RAM to detect any errors or faults that may be causing system instability or crashes. How to fix my problem please?
-
3A new version works in UEFI mode. See this link. – sudodus Mar 24 '23 at 19:16
-
1You've provided no OS/release details; my box is a semi-recent box (purchased last month in fact) & memtest86 works on it, but our releases may differ & I don't know yours. – guiverc Mar 24 '23 at 21:47
-
I think the name of the package that you're using is memtest86+, which is a fork of memtest86. – karel Mar 27 '23 at 13:06
1 Answers
Memtester is a userspace utility for testing the memory subsystem for faults. In comparison to memtest86 or PCMemTest you do not need to reboot the computer to test for memory faults.
Memtester can also be told to test memory starting at a particular physical address.
To install Memtester in all currently supported versions of Ubuntu open the terminal and type:
sudo apt install memtester
PCMemTest is a standalone memory tester for x86 and x86-64 architecture computers. It provides a more thorough memory check than that provided by BIOS memory tests.
PCMemTest can be loaded and run either directly by a PC BIOS (legacy or UEFI) or via an intermediate bootloader that supports the Linux 16-bit, 32-bit, 64-bit, or EFI handover boot protocol. It should work on any Pentium class or later 32-bit or 64-bit CPU.
PCMemTest is a fork and rewrite of Memtest86+, which in turn was a fork of Memtest86.
To install PCMemTest in Ubuntu 22.04 and later open the terminal and type:
sudo apt install pcmemtest

- 114,770