# dd bs=4M if=absolute64-20180913.iso of=/dev/sdb ##[or c .. or d....but NEVER /dev/sda].
# sync ##Just to be sure the copy has really finished
If you want to be fancy try:
"dd-fancy_4M"
Code: Select all
#!/bin/bash
echo ' '
partitions
echo ' '
ls -s $1
echo ' '
echo 'Syntax: ' 'entire-path_filename_.iso' '[space]' 'only final letter of USB'
echo ' '
echo Burning $1 onto /dev/sd$2 at bs=4M
echo ' '
read -p 'Ctrl-C if this NOT what you want' xc
echo ' '
dd bs=4M if=$1 | pv -tprebI $1 | dd of=/dev/sd$2
echo ' '
echo 'Done. Now sync'
sync
sync
eject /dev/sd$2