@AlligatorBlizzard @JustMarkov
Only FOUR ISO’s?
I forget the number, but I maxed out a 32GB flash drive with an absurd amount of ISO’s *LOL*
Wowzerz, this new external NVMe I need to format, how many ISO’s can I shoehorn onto 1TB, and the boot speeds will probably blow my mind \0/
What are some recommendations for putting Ventoy on your main USB (with other contents instead of just ISOs)? I need to find the guide I saw, it mentioned some configurations to prevent it from searching every directory for ISOs
Also the linked website can be subscribed to from here :)
Alternatively when creating the ventoy installation you can chose to leave X amount of space behind the ventoy partition and then create your own data partition there afterwards. You lose the advantage of “dynamically” sharing the available space between ventoy and your data, but with the seperqte partition you can use whatever filesystem you like for your data, and there is a clear seperation between ventoy and your other data.
I have Ventoy on a USB stick, tried to use it recently for DBAN and it didn’t work, is there any way to get around that these days? Haven’t looked into it recently.
It works for Ultimate Boot CD, which includes DBAN and a lot of other fun stuff.
I play with retro hardware and Ventoy has also worked for me with some weird old isos that even Rufus didn’t work with (XP/Server 2003 multidisc from eXPerience that uses a Linux bootloader?)
I like Ventoy because I’m an ISO hoarder but if the task needs a dedicated USB, then I’ll open Etcher.
I don’t… understand… the downvotes. I do the same thing though I never really get to the Balena Etcher part. Also, Ventoy is the only way to get a Windows ISO up and running from Linux, as far as I know.
The down votes are from the Etcher part, it has a cult of lovers and a cult of haters.
I’m l fine with people using Etcher, Rufus, or whatever works for them, but I’m aware that both software I just named has passionate haters.
Etcher is not recommend anymore because it’s adware and there are better free alternative like Impression
I really don’t get why I should use anything else than dd
Not everyone likes to use commands for something as trivial as this, its nice to press a couple buttons and wait for it to be done vs learning how dd works and what arguments to use etc.
My favorite way to create a boot media is simply to use cat. No arguments, no shenanigans just a cat into the device :
cat debian.iso > /dev/sda
iirc there was a reason you should use dd instead of directly copying the data, I think something to do with device block alignment or something?
One caveat is that you will need write access to the drive, which probably means you need to run as root — can’t run that with sudo
as-is, unlike dd
.
Great suggestions. The Ventoy bros are weird. Just use what works for you.
dd, or cat with a shell redirect are all you need to write that iso.
My trouble with dd is all the flags I need to remember to make it fast and more convenient. dd if=file of=/dev/device oflag=direct status=progress bs=1M
is there anything I’m missing?
bs=1M
This part varies based on your hardware (my hardware is much faster with a value of 4096) , but other than that it’s everything.
Here is a handy script that can help determine which bs size is best for your hardware.
oflag=direct
Prevents the writes from piling up in the cache. dd will report the transfer is done when the writes have been cached so this setting prevents dd from exiting until the data has been written completely to the block device.