• Thrickles
    link
    fedilink
    English
    169 months ago

    Great suggestions. The Ventoy bros are weird. Just use what works for you.

  • @megabat@lemm.ee
    link
    fedilink
    10
    edit-2
    9 months ago

    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?

      • @megabat@lemm.ee
        link
        fedilink
        29 months ago

        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.

        • @BaumGeist@lemmy.ml
          link
          fedilink
          2
          edit-2
          9 months ago

          Use conv=fsync

          This ensures the cache is written before dd exits, but doesn’t necessarily write to disk directly. This means that, for small files, dd can finish release its hold on the input file quicker

  • @BCsven@lemmy.ca
    link
    fedilink
    59 months ago

    Nice thing about GNOME DE is it comes with Gnome Disks. Select device, click the restore image button and point to the ISO

    • Ziglin (it/they)
      link
      fedilink
      29 months ago

      Or you could just install it on any other system with Wayland or x11.

      Gparted works fine for me, so that’s what I use.

      • @BCsven@lemmy.ca
        link
        fedilink
        19 months ago

        Gparted is awesome. But probably overwhelming for newbies just looking to burn an iso to USB. Raspberry PI Image Writer works very simply also.

  • @TheGrandNagus@lemmy.world
    link
    fedilink
    English
    39 months ago

    I don’t burn ISOs often enough to need a dedicated ventoy drive, or to remember how to use the DD command, so Impression is generally what I use. I generally prefer Libadwaita/GTK4 apps that look at home on my system.

      • @TheGrandNagus@lemmy.world
        link
        fedilink
        English
        19 months ago

        I have no idea, I’ve not had to install windows in a while. From a quick search I see conflicting info…

        A user reported it didn’t work, then the dev said he tested it and it works fine

  • @EarthShipTechIntern@lemm.ee
    link
    fedilink
    29 months ago

    I’ve used ventoy to set up a bootable USB with Mint & MX options. It allowed me to set the Mint with persistence. The MX has issues with persistence.

    How to set up reusable boot with dd I don’t know.

  • @ColdWater@lemmy.ca
    link
    fedilink
    19 months ago

    I curious because I don’t have the skill to test it myself but can you just manually copy everything to USB it’s just work?

    • Ghoelian
      link
      fedilink
      4
      edit-2
      9 months ago

      No, the drive needs a boot partition for the bios to know there is something to be booted on the drive.

      Most Linux ISO’s do properly include the partitions in the ISO, so you can clone the iso to a drive and that should work, using dd for example. But just copying the files won’t work.

      iirc windows iso’s did use to support just creating a fat32 partition and moving all the files over, not sure how they managed that. But now the international ISO for win 11 has a file that’s more than the max 4Gb allowed by fat32, so you can’t do that anymore either.

    • @nyan@sh.itjust.works
      link
      fedilink
      29 months ago

      In the general case, no, but there are some rare specific cases where that does work.

      If you’re trying to produce Linux media that will boot on a single-board computer that has an onboard bootloader, like a Pi 4, you can indeed just partition the target medium and copy the files manually (been there, done that, working with a custom Gentoo install with no ISO).

      If the bootloader has to be on the target medium (as it would for a desktop or laptop), then that won’t work unless you also do a manual bootloader install after copying everything. Not impossible, but at that point you’re hitting the level of complexity where it’s easier to figure out the correct dd command.

      (As for Windows? Don’t even bother. It hates being worked on with anything but its own tools.)