LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Do you still use dd to burn ISOs to USB drives ? (https://www.linuxquestions.org/questions/linux-newbie-8/do-you-still-use-dd-to-burn-isos-to-usb-drives-4175698156/)

DavidMcCann 07-22-2021 10:44 AM

I use dd. Who cares about the speed — how often do you use it? I used it in 2020 and 2919, but I can't remember the time before that!

hifi100 07-22-2021 10:49 AM

Quote:

Originally Posted by DavidMcCann (Post 6268840)
I use dd. Who cares about the speed — how often do you use it?

That's true for me too. But 3-4 years ago I used to be a distrohopper. I was installing a new distro almost every 3 months but now I simply hate reinstallations & that's the primary reason why I chose Arch. The secondary reason is of course Arch's bleeding edge nature.

hazel 07-22-2021 10:54 AM

Quote:

Originally Posted by hifi100 (Post 6268842)
The secondary reason is of course Arch's bleeding edge nature.

That's the primary reason why I don't use Arch!

hifi100 07-22-2021 11:02 AM

Quote:

Originally Posted by hazel (Post 6268844)
That's the primary reason why I don't use Arch!

I am no Arch expert. I installed it 5 months back. I update the system everyday in the morning & sometimes even multiple times a day & despite that nothing broke. YMMV.

hazel 07-22-2021 11:15 AM

Quote:

Originally Posted by hifi100 (Post 6268851)
I update the system every day in the morning & sometimes even multiple times a day...

Grr! I can't imagine doing that! I update Slackware once a month, AntiX once a week.

teckk 07-22-2021 11:31 AM

Quote:

I sincerely tried to replace Google with Duckduckgo but the results are not at all accurate in comparison to Google
Yes, google does better. I use Duckduckgo all that I can but google gives relevant results better.

Quote:

Grr! I can't imagine doing that! I update Slackware once a month.
You don't have to update arch everyday. I sometimes wait 4 months between updates on some machines. And of course that means that the update is 600MB.

Quote:

Do you still use dd to burn ISOs to USB drives ?
I have used dd for 17 or so years. It's a bitstream duplicator, and it works just fine. ddrescue works a little better on a poor source. Such as on a optical disk that is going bad. dd is as basic and important to me as cp, ls, mv, grep etc.

rtmistler 07-22-2021 11:46 AM

I use dd, it has always worked.

Not insulting anyone intentionally, but I personally kind of feel like for me, it's a waste of time to even consider trying something else. Probably because for various reasons in my past I've tried new stuff which intends to replace classic, good tools, and had nominal to bad experiences. Reason (a) is one may have to learn how to use it, along with any quirks and I've already gotten there with dd, reason (b) is "who knows if under the top level they're not just using dd anyways?", and the obvious reason (c) the new whiz-bang tool may not "just work" as dd does.

m.a.l.'s pa 07-22-2021 12:43 PM

In, the past, I used mainly dd, but lately I've been using cp more often, especially for Debian (see here and here). I used dd for my two most recent Arch installations.

fatmac 07-22-2021 01:22 PM

Quote:

Originally Posted by DavidMcCann (Post 6268840)
...how often do you use it? I used it in 2020 and 2919...

Wow! used in the future too..... :D

hazel 07-22-2021 01:26 PM

I didn't know you could use cp to write to a raw device.

fatmac 07-22-2021 01:32 PM

Quote:

Originally Posted by hazel (Post 6268828)
...if I had only Windows and I wanted to create an image for booting Linux, I don't know what I'd do....

Not sure if it's still available, but there used to be a Windows version of dd, that is what I used back then.

brianL 07-22-2021 01:50 PM

I use dd, it works, not tried anything else.

igadoter 07-22-2021 05:14 PM

Well maybe simple example
Code:

$ wget -O - http://www.example.org/example.iso | dd of=/dev/sdb bs=1M
burns on fly, some versions
Code:

$ wget -O - http://www.example.org/example.iso |  tee >(md5sum >example.md5) |
dd of=/dev/sdb bs=1M

burns on fly and counts checksum. Sometimes people provide gzipped images instead of hybrid iso's. Just download and pipe through gunzip and all above. You can even count checksums for both compressed image and image itself.

dugan 07-22-2021 05:23 PM

Just don't forget to run sync after running dd.

rkelsen 07-22-2021 05:41 PM

Quote:

Originally Posted by fatmac (Post 6268823)
I'd be interested in ventoy if it didn't use exfat - they should use ext4. ;)

Come on man... This is literally on the front page of their website: "FAT32/exFAT/NTFS/UDF/XFS/Ext2(3)(4) supported for main partition"

Notice it says "main" partition there... Well the other partition it creates is an EFI System partition, and so their hands are tied with that.


All times are GMT -5. The time now is 04:39 AM.