Last active
January 2, 2018 10:10
-
-
Save rubenerd/27dfd369da490fa481cf to your computer and use it in GitHub Desktop.
Quick USB bootable MemTest86
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| ## No need for horrible GUI bootable USB key generators | |
| ## Haven't seen if there's a memtest86+ equiv | |
| key="/dev/sdb" ## TRIPLE CHECK this drive location first | |
| curl -OL "http://www.memtest86.com/downloads/memtest86-usb.tar.gz" | |
| tar xzvf memtest86-usb.tar.gz | |
| sudo dd if=memtest86-usb.tar.gz of=${key} bs=10240 conv=sync |
There is a typo above. The right file is memtest86-usb.img and not memtest86-usb.tar.gz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here is the tutorial "How to bootable usb pendrive with CMD step by step easy tutorial".
in this tutorial i was show , how you can make your pendrive bootable for windows setup with easy step .
Watch it and comment blew . its easy or not . video => https://www.youtube.com/watch?v=dd69WxjlWkc
Thanks.