Last active
July 30, 2017 18:58
-
-
Save annagapuz/466799ed51b17bc77b57a74c509e21c9 to your computer and use it in GitHub Desktop.
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
Benchmark your SSD or hard disk speed | |
To test write speed: | |
time dd if=/dev/zero bs=1024k of=tstfile count=1024 | |
To test read speed: | |
time dd if=tstfile bs=1024k of=/dev/null count=1024 | |
hdiutil convert -format UDRW -o ubcd.img /ubcd537.iso | |
diskutil list | |
insert your usb stick | |
diskutil list | |
diskutil unmountDisk /dev/diskN | |
sudo dd if=ubcd.img.dmg of=/dev/rdiskN bs=1m conv=sync | |
diskutil eject /dev/diskN |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment