2

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?

enter image description here

karel
  • 114,770

1 Answers1

1

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
karel
  • 114,770