I’ve been trying to find a linux programming similar to Rufus to flash images of OSes on a thumb drive.

Nothing from the listicles on the internet or the programs in flatpak have worked for me as well as Rufus on Windows.

What have you used that’s worked well? Or, could I run Rufus on my linux machine with WINE?

    • ShortN0te
      arrow-up
      3
      arrow-down
      1
      ·
      4 months ago
      link
      fedilink

      Why? I am free to use whatever I want. This is not Microsoft Windows.

    • qpsLCV5
      arrow-up
      2
      arrow-down
      0
      ·
      4 months ago
      link
      fedilink

      using dd for that is outdated info that everyone keeps blindly parroting with zero understanding why. cat is simpler and works fine.

      note: both cat and dd only work for this when the image is made in a compatible way, my linux isos always work fine but a windows iso didnt and needs a more specific tool.

      • boredsquirrel
        arrow-up
        1
        arrow-down
        1
        ·
        4 months ago
        link
        fedilink

        cat is for writing files, dd for writing disks.

        Can you explain how this can work?

        • ShortN0te
          arrow-up
          5
          arrow-down
          0
          ·
          4 months ago
          link
          fedilink

          No, cat is not for writing files. Cat is for reading files and directing the data to standard output.

          With “>” you are directing standard output to a file, in this case a blockdevice.

        • tuna
          arrow-up
          2
          arrow-down
          0
          ·
          4 months ago
          link
          fedilink

          /dev/sdX is a file, and both dd, cat can read files in full. You can even try something like zstd to compress it too.

          One of the nice things about dd though is you can see the progress with --status=progress