Comments on: How to Create a Bootable USB from ISO on Linux https://linuxiac.com/how-to-create-bootable-usb-drive-using-dd-command/ All things Linux & Open Source Tue, 13 Feb 2024 00:16:23 +0000 hourly 1 https://wordpress.org/?v=6.8.2 By: John Sanders https://linuxiac.com/how-to-create-bootable-usb-drive-using-dd-command/#comment-53331 Tue, 13 Feb 2024 00:16:23 +0000 https://linuxiac.com/?p=3546#comment-53331 dd apparently turned my vfat filesystem into an iso9660. I did not remount and check after the dd but only after I loaded slack15 iso.

]]>
By: Jyhem https://linuxiac.com/how-to-create-bootable-usb-drive-using-dd-command/#comment-31527 Wed, 02 Nov 2022 21:41:09 +0000 https://linuxiac.com/?p=3546#comment-31527 The “dd” command is awfully slow because the default block size is too small for modern usage (512 bytes).
Using more sensible values such as: “dd if=… of=… bs=1M” will lower execution time tremendously.

]]>
By: Nick https://linuxiac.com/how-to-create-bootable-usb-drive-using-dd-command/#comment-20476 Sat, 23 Apr 2022 16:27:52 +0000 https://linuxiac.com/?p=3546#comment-20476 The “sudo mkfs.vfat /dev/sdb” step is unnecessary and can be skipped. ‘dd’ is going to overwrite it, anyway.

]]>
By: Bari https://linuxiac.com/how-to-create-bootable-usb-drive-using-dd-command/#comment-17970 Sat, 26 Feb 2022 11:26:04 +0000 https://linuxiac.com/?p=3546#comment-17970 Writing a bootable Windows 10 iso does not work this way.
This may be due to:
~$: man mkfs.vfat
“…
BUGS mkfs.fat can not create boot-able filesystems. This isn’t as easy as you might think at first glance for various reasons and has been discussed a lot already. mkfs.fat simply will not support it 😉 “

]]>
By: Daniel https://linuxiac.com/how-to-create-bootable-usb-drive-using-dd-command/#comment-17833 Thu, 24 Feb 2022 16:50:22 +0000 https://linuxiac.com/?p=3546#comment-17833 In reply to Joe.

I believe that depends on the size of the required install and the operating system in use. If you’re installing a windows OS I believe NFTS is the desired format, and in other cases FAT32 works. Although fat32 has a size limitation so sometimes you’ll need exFAT instead.

]]>
By: Joe https://linuxiac.com/how-to-create-bootable-usb-drive-using-dd-command/#comment-14457 Thu, 06 Jan 2022 17:53:38 +0000 https://linuxiac.com/?p=3546#comment-14457 this is really well written. would be interesting to see an article about how the formatting was chosen and what are the considerations.

]]>
By: Shail https://linuxiac.com/how-to-create-bootable-usb-drive-using-dd-command/#comment-13702 Sun, 26 Dec 2021 13:08:18 +0000 https://linuxiac.com/?p=3546#comment-13702 In reply to Pickyduck.

lsblk will show you partitions of drive /dev/sdb
Try to use /dev/sdb1 where sdb1 is the partition of that drive

]]>
By: Anonymous https://linuxiac.com/how-to-create-bootable-usb-drive-using-dd-command/#comment-13699 Sun, 26 Dec 2021 13:08:02 +0000 https://linuxiac.com/?p=3546#comment-13699 In reply to Pickyduck.

lsblk will show you partitions of drive /dev/sdb
Try to use /dev/sdb1 where sdb1 is the partition of that drive

]]>
By: Pickyduck https://linuxiac.com/how-to-create-bootable-usb-drive-using-dd-command/#comment-13209 Fri, 17 Dec 2021 09:18:28 +0000 https://linuxiac.com/?p=3546#comment-13209 Thanks, amazing tutorial!

P.S. If “sudo mkfs.vfat /dev/sdb” gives “Partitions or virtual mappings on device ‘/dev/sdb’, not making filesystem” error, try overriding with -I ( sudo mkfs.vfat /dev/sdb -I )

]]>