Saw that it just was released, but not yet on Fedora? Used a little script I wrote to install and run a test on it. Works from me, but might not for others, but if someone want to try it. Last Fedora version is the 7.20 release.
They have a different name for the file, so just changed that. Files it gets from site and extracted. 156672 Nov 23 17:50 mt86p_800_i586 139776 Nov 23 17:55 mt86p_800_la64 161280 Nov 23 17:50 mt86p_800_x86_64 218319 Nov 24 09:36 mt86plus_8.00.binaries.zip I just used the x86_64 file My Script to download and setup. Don't know that process that created rpm for 7.20. #!/usr/bin/bash clear mkdir -p /tmp/memtest cd /tmp/memtest || exit f=$(wget -O - https://memtest.org/ 2>/dev/null | grep -m1 binaries.zip | sed -e 's/.*<a href="//' -e 's/".*//') if [ -z "$f" ] then echo "Unable to get pathname for binaries.zip" >&2 exit 1 fi wget -nc https://memtest.org/"$f" echo "$f" zip=$(echo "$f" | cut -f4 -d/) unzip -u "$zip" boot=$(find / -maxdepth 2 -iname loader | sed 's_/loader__') if [ -z "$boot" ] then boot="/boot"; fi echo "$boot" cp mt86p_800_x86_64* "$boot" -p -v ver=$(echo "$zip" | cut -b10-13); machineid=$(cat /etc/machine-id) { echo title Memtest86+ \("$ver"\) echo version 0-"$ver"-memtest86+ echo linux /mt86p_800_x86_64 echo grub_users \$grub_users echo grub_arg --unrestricted echo grub_class fedora } >/boot/loader/entries/"$machineid"-0-Memtest86+.conf cd /boot || exit if [ ! -f blank ] then touch blank fi Rebooted machine, and ran the option. So, just in case someone else want to check it out, or perhaps group that created the 7.20 rpm could look at creating an 8.00 version. Thanks. +------------------------------------------------------------+ Michael D. Setzer II - Computer Science Instructor (Retired) mailto:[email protected] mailto:[email protected] mailto:[email protected] Guam - Where America's Day Begins G4L Disk Imaging Project maintainer http://sourceforge.net/projects/g4l/ +------------------------------------------------------------+ -- _______________________________________________ users mailing list -- [email protected] To unsubscribe send an email to [email protected] Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/[email protected] Do not reply to spam, report it: https://pagure.io/fedora-infrastructure/new_issue
