Created
July 2, 2019 08:07
Revisions
-
tomazursic created this gist
Jul 2, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ ## Mount NTFS filesystem # using this on osx derivate sudo /usr/local/bin/ntfs-3g /dev/disk2s1 /Volumes/NTFS -olocal -oallow_other ## Transfer disk image file on external drive with dd progress # at the cost of speed! sudo pv -tpreb <file-name>.iso | sudo dd of=/dev/disk2 bs=4M # without pv from coreutils v8.24 dd if=<file-name>.iso of=/dev/disk2 bs=4M status=progress