I am shocked by this - the quote in below is very concerning:

“However, in 2024, the situation changed: balenaEtcher started sharing the file name of the image and the model of the USB stick with the Balena company and possibly with third parties.”

Can’t see myself using this software anymore…

  • Brickfrog@lemmy.dbzer0.com
    link
    fedilink
    arrow-up
    0
    ·
    edit-2
    5 months ago

    That’s interesting, apparently it was mentioned on github but nothing seems to have changed in the end

    https://github.com/balena-io/etcher/issues/3784

    Haven’t used that software in a long time but maybe there’s an opt-out somewhere during runtime? Although I don’t see why a user needs to be required to opt out of nonsense like this when just writing firmware to a USB disk.

    Only ever touched balenaEtcher when some project or distro recommended it. Overall prefer Rufus for this sort of thing when working on Windows.

    • wizardbeard@lemmy.dbzer0.com
      link
      fedilink
      English
      arrow-up
      0
      ·
      edit-2
      5 months ago

      I’ve used Sardu on Windows for making multi-iso bootable USB sticks a long time ago in the past, but I’d admittedly never looked at their ToS or Privacy Policy. My use case was slapping some live boot antivirus scanners, data recovery tools, and one or two lightweight liveboot-Linux ISOs on one USB as a portable toolkit.

      When I’m making anything else from Windows, I’ve always stuck with Rufus. Had never heard of BalenaEtcher before now.

      • Cataphract@lemmy.ml
        link
        fedilink
        arrow-up
        0
        ·
        5 months ago

        I"m horrible with names of programs and mess with a lot of junk comps switching out OS’s and just tinkering around so I’m always using crazy utility programs. BalenaEtcher is used in a lot of tutorials or guides for installations, I think recently both Elementary OS and even Ubuntu had instructions pointing towards BalenaEtcher.

        I never thought it was a great program, it was finicky to use and errors out quickly multiple times. Looking back I saw the signs, weird new program being promoted above other “well established” burn programs, ads, and now scrolling down their webpage it’s just a bunch of promotional subscription bullshit. I think I just threw up in my mouth a little bit looking at the “balenacloud” and “balenasense”, like if they’re collecting your data through etcher then all of that shit is probably compromised. Another fucking google wannabe corp.

    • Andromxda 🇺🇦🇵🇸🇹🇼@lemmy.dbzer0.com
      link
      fedilink
      English
      arrow-up
      0
      ·
      5 months ago

      If you actually read the post, you would have known, it does work, but there are some privacy concerns with it:

      “However, in 2024, the situation changed: balenaEtcher started sharing the file name of the image and the model of the USB stick with the Balena company and possibly with third parties.”

  • Rozz@lemmy.sdf.org
    link
    fedilink
    arrow-up
    0
    ·
    5 months ago

    What options are there for flashing to SD cards? Something that works on Mac too would be nice. A gui is preferred.

    • downhomechunk@midwest.social
      link
      fedilink
      English
      arrow-up
      0
      ·
      edit-2
      5 months ago

      Plug your usb drive in and run lsblk to figure out which letter to use instead of x in /dev/sdx

      sudo dd if=image.iso of=/dev/sdx bs=1M status=progress

      EDIT: I totally didn’t read your request. This is not gui or Mac based, but it still might help someone.

      • Revan343@lemmy.ca
        link
        fedilink
        arrow-up
        0
        ·
        edit-2
        5 months ago

        Mac should have dd, I’d assume lsblk as well not lsblk though. There’s fdisk though

        • downhomechunk@midwest.social
          link
          fedilink
          English
          arrow-up
          0
          ·
          5 months ago

          I use a microSD to usb adapter and have 2 spinning rust disks. So it’s /sdc for me, but i still always double check. Dd isn’t called the disk destroyer for nothing.

  • SpatchyIsOnline@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    5 months ago

    Here’s a wildcard people might not know about: Raspberry Pi Imager

    I use it because it’s faster than Etcher and it also has a bunch of quick links to download popular images (mainly for RPI and other arm-based SBCs) in one click which is handy if you use those regularly.

  • BoxOfFeet@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    5 months ago

    Wow, I was not aware of that. I really liked balena. Thankfully, I haven’t been using it since installing Mint.

  • Andromxda 🇺🇦🇵🇸🇹🇼@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    0
    ·
    5 months ago

    Just use dd. It’s not that hard. You pass it 2 arguments: if= the file you want to flash, and of= the destination. If you’re feeling fancy, pass in some status=progress. And don’t forget to prepend it with sudo. That’s it.

    • harsh3466@lemmy.ml
      link
      fedilink
      arrow-up
      0
      ·
      edit-2
      5 months ago

      I just tried this the other day and was unable to boot from the USB. any chance you could shed some light on what i might have screwed up?

      The command was:

      dd if=fedora.iso of=/dev/sdc bs=4M status=progress
      

      The USB stick was not mounted and the fedora image was verified. The command completed successfully but I couldn’t boot from it. When I used fedora writer to burn the same image to the same USB stick it booted no problem.

      Edit: spelling

      • Maiq@lemy.lol
        link
        fedilink
        arrow-up
        0
        ·
        5 months ago

        Did you make sure that the of is correct? lsblk to make sure.

        If your sure it wrote to the right drive i would make sure that you have a good download. Did you run your checksums?

        I think fedora works with secureboot but you might want to disable it just to see if that is the issue. I believe you can reenable it after install.

        Make sure to go into the bios and boot from external drive/usb.

        Out of 15 years of using dd i have never had a problem.

        • harsh3466@lemmy.ml
          link
          fedilink
          arrow-up
          0
          ·
          5 months ago

          I did verify with lsblk, with a listing before and after plugging in the stick to be absolutely sure.

          I also did verify the checksum of the ISO.

          I’ll double check SecureBoot, but as I mentioned, the same ISO written to the same stick with Fedora writer did boot in the same machine it wouldn’t boot from with the dd version.

          I know it’s something I did or didn’t do to make it work correctly, so this is not me trying to dunk on dd, just trying to understand what I did wrong.

        • gnuhaut@lemmy.ml
          link
          fedilink
          arrow-up
          0
          ·
          5 months ago

          I don’t think oflags=direct has any influence on the result. Apparently that’s about disabling the page cache in the kernel, which can avoid a situation in which the system slows down due to buildup yet-to-write pages.

          • massacre@lemmy.world
            link
            fedilink
            English
            arrow-up
            0
            ·
            edit-2
            5 months ago

            Perhaps not. But the flag allows for direct I/O for data, bypassing buffers which can be overrun with certain size blocks, potentially causing dirty buffer depending on the machine being used. My understanding is that it’s “more reliable” for writing (especially on shitty USB Flash drives) and getting the exact ISO properly written.

            But it could be useless all the same - I’m just pointing out that OPs command is not the one recommended by Fedora when writing their ISO. Also OP is less likely to pull the drive before buffers have flushed this way.

            • gnuhaut@lemmy.ml
              link
              fedilink
              arrow-up
              0
              ·
              5 months ago

              Oh yeah that’s where I was getting at, but I didn’t have time to write that out earlier. I agree that OP probably pulled out the usb stick before buffers were flushed. I imagine that direct I/O would mitigate this problem a lot because presumably whatever buffers still exist (there would some hardware buffers and I think Linux kernel I/O buffers) will be minimal compared to the potentially large amount of dirty pages one might accumulate using normal cached writes. So I imagine those buffers would be empty very shortly (less than one second maybe?) after dd finishes, whereas I’ve seen regular dd finish tens of seconds before my usb stick stopped blinking it’s LED. Still if you wait for that long the result will be the same.

          • Rogue@feddit.uk
            link
            fedilink
            arrow-up
            0
            ·
            5 months ago

            You didn’t screw up, you beautifully proved why the CLI is never a simple solution.

            • Abnorc@lemm.ee
              cake
              link
              fedilink
              arrow-up
              0
              ·
              5 months ago

              This is why people trying to pass this as a primary option baffle me a bit. dd is not that bad in isolation, but all of these little commands add up.

              If we want Linux to be mainstream, we need to accept that most users aren’t going to be linux enthusiasts. They just want a PC that works normally.

    • yeehaw@lemmy.ca
      link
      fedilink
      arrow-up
      0
      ·
      5 months ago

      Can always use dd but I always go stupid when I need to set boot flags and all that crap, which is so much easier with etcher. I think I’ve done dd with gparted in the past.

      • ☂️-@lemmy.ml
        link
        fedilink
        arrow-up
        0
        ·
        5 months ago

        does gparted set the correct flags too, can it also do windows

        i just want a dumb ui i can dumbly drag the iso file to and it takes care of everything for me.

      • lime!@feddit.nu
        link
        fedilink
        English
        arrow-up
        0
        ·
        5 months ago

        i’ve never needed to set a single flag with dd. i just do if=the_iso of=the_disk. what flags?

        • yeehaw@lemmy.ca
          link
          fedilink
          arrow-up
          0
          ·
          5 months ago

          Don’t you need to mark usb disks as bootable if you want to boot from them to install Linux or whatever

          • lime!@feddit.nu
            link
            fedilink
            English
            arrow-up
            0
            ·
            edit-2
            5 months ago

            that’s not something i’ve ever had to do, i’ve only done that for hard drives.

          • qpsLCV5@lemmy.ml
            link
            fedilink
            arrow-up
            0
            ·
            5 months ago

            i think it depends on the image you get - for archlinux you can simply cat (or dd) the file onto a usb stick and it works perfectly fine, bootable. but i think i have seen an image at some point where it didn’t work, but i don’t recall what it was.

    • Andromxda 🇺🇦🇵🇸🇹🇼@lemmy.dbzer0.com
      link
      fedilink
      English
      arrow-up
      0
      ·
      edit-2
      5 months ago

      If you actually read the post, you would have known, it does work, but there are some privacy concerns with it:

      “However, in 2024, the situation changed: balenaEtcher started sharing the file name of the image and the model of the USB stick with the Balena company and possibly with third parties.”

    • utubas@lemm.ee
      link
      fedilink
      arrow-up
      0
      ·
      5 months ago

      Ventoy uses several blobs without any instructions of compiling them yourself?

  • xttweaponttx@sh.itjust.works
    link
    fedilink
    arrow-up
    0
    ·
    5 months ago

    Balenaetcher has, for me at least, failed to write to USBs for the last 3 years or so that I’ve tried to use it - meanwhile random iso writers from flatpak have been more reliable for me. Very obnoxious that so many iso related sites recommend it. Rufus, kicks tons of ass, if for whatever reason you’re still on windows.

    Also on most distros I’ve tried, the disk utility has some sort of right click or context menu that gets you a ‘restore disk image’ button that works great as well.

      • xttweaponttx@sh.itjust.works
        link
        fedilink
        arrow-up
        0
        ·
        5 months ago

        😂 I also read this as Ron’s voice!

        Nah as much as i love doing stuff via terminal, I am extra paranoid specifically about writing to the wrong device and losing data; I prefer as many confirmations as possible that I’m writing to the correct drive, and graphical installers tend to give me just a few more reassurances. A few examples would be stuff like

        • a graphical representation of partitions (the general layout of a drive tends to offer an easy ‘fingerprint’ in my mind; like the pattern of partitions help me confirm I’m looking at, say, a Debian install USB compared to a single-partition general purpose storage disk)
        • icons for different types of devices, like an SD card, USB, or hard disk icon
        • confirmation dialogues summarizing what device is targeted, and what all will be performed

        I’m also the kind of person who stares at a written email worrying about every last nuance of my phrasing, so 🤷‍♂️😂 definitely a me problem, I think!

  • DaTingGoBrrr@lemm.ee
    link
    fedilink
    Svenska
    arrow-up
    0
    ·
    5 months ago

    balenaEtcher never worked for me. No image that I flashed has been usable to boot. The RPi imager has been working flawlessly

  • kaidezee@lemmy.ml
    link
    fedilink
    arrow-up
    0
    ·
    edit-2
    5 months ago

    Honestly, if you’re using Windows, then you most likely already sent any and all of your secrets to Microsoft. Including that you installed Tails.