Skip to content

Instantly share code, notes, and snippets.

@rubenerd
Last active January 2, 2018 10:10
Show Gist options
  • Select an option

  • Save rubenerd/27dfd369da490fa481cf to your computer and use it in GitHub Desktop.

Select an option

Save rubenerd/27dfd369da490fa481cf to your computer and use it in GitHub Desktop.
Quick USB bootable MemTest86
#!/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

ghost commented Nov 12, 2016

Copy link
Copy Markdown

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.

@TimoGo

TimoGo commented Jan 1, 2018

Copy link
Copy Markdown

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