Memory testings is an option in the grub menu:
And, the ELF binary executables are under /boot :
Is there some reason why you can't use it?
I haven't used the grub memory test in years, but when I did run it all I had to do was start and and let it run for as long as I wanted. I let it run over night. You might want to let it run longer.
Code:
### BEGIN /etc/grub.d/20_memtest86+ ### menuentry '[B]Memory test (memtest86+)[/B]' { insmod part_msdos insmod btrfs set root='hd0,msdos1' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 ce2b5741-c01e-4b3d-b6ba-401ad7f7fcdf else search --no-floppy --fs-uuid --set=root ce2b5741-c01e-4b3d-b6ba-401ad7f7fcdf fi knetbsd /@/boot/memtest86+.elf } menuentry '[B]Memory test (memtest86+, serial console 115200[/B])' { insmod part_msdos insmod btrfs set root='hd0,msdos1' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 ce2b5741-c01e-4b3d-b6ba-401ad7f7fcdf else search --no-floppy --fs-uuid --set=root ce2b5741-c01e-4b3d-b6ba-401ad7f7fcdf fi linux16 /@/boot/memtest86+.bin console=ttyS0,115200n8 }
Code:
~$ vdir /boot/mem* -rw-r--r-- 1 root root 182704 Aug 18 2020 /boot/memtest86+.bin -rw-r--r-- 1 root root 184380 Aug 18 2020 /boot/memtest86+.elf -rw-r--r-- 1 root root 184884 Aug 18 2020 /boot/memtest86+_multiboot.bin
I haven't used the grub memory test in years, but when I did run it all I had to do was start and and let it run for as long as I wanted. I let it run over night. You might want to let it run longer.
Comment