Untuk mengetahui blok drive :
sudo lsblk
Pastikan flash disk di-umount terlebih dahulu
Jalankan perintah ini
sudo umount /dev/sdb1
semisal letak blok drive flashdisk ada pada : /dev/sdb1
sesuai dengan hasil dari perintah sudo lsblk di atas
kemudian jakankan perintah ini :
sudo dd bs=4M if=input.iso of=/dev/sd<?> conv=fdatasync
misalnya
file iso ada di desktop dengan path (misalnya : /home/saifi/Desktop/file.iso)
cd Desktop
sudo dd bs=4M if=UDF\ Volume.iso of=/dev/sdb1 conv=fdatasync
bs = BYTES
read and write up to BYTES bytes at a time
if = FILE
read from FILE instead of stdin
of = FILE
write to FILE instead of stdout
conv =
convert the file as per the comma separated symbol list
fdatasync =
physically write output file data before finishing
VIDEO
No comments:
Post a Comment