Page 1 of 1

Latest iso absolute64-20180913.iso: unetbootin or rufus

Posted: October 18th, 2018, 3:13 pm
by LarryDC
Since I don't have a running Windows partition (for rufus) nor familiarity with unetbootin, I was stuck until I ran "isohybrid" on the subject iso. Then the usual "dd" worked fine:
# 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