3

I am trying to install BalenaEtcher on ubuntu 20.04 but getting "BalenaEtcher repository not found 502 bad gateway"

Tried these commands: echo "deb https://deb.etcher.io stable etcher" | sudo tee /etc/apt/sources.list.d/balena-etcher.list

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 379CE192D401AB61

sudo apt-get update

sudo apt-get install balena-etcher-electron

2 Answers2

3

Finally this worked for me

curl -1sLf \
   'https://dl.cloudsmith.io/public/balena/etcher/setup.deb.sh' \
   | sudo -E bash

then,

sudo apt-get update
sudo apt-get install balena-etcher-electron

ref: https://github.com/balena-io/etcher#debian-and-ubuntu-based-package-repository-gnulinux-x86x64

3

I'm not telling you what to do, but why don't you run balenaEtcher via Appimage?

You will probably need balenaEtcher only occasionally and the Appimage works really well. You can firejail it if you want to. If you add Appimagelauncher, then the Appimages integrate really well with the desktop. You can search them via Alt + F2 or start them via launcher.

You don't need to install a .deb file. It is perhaps less risky to use the Appimage. Just a thought...

Nmath
  • 12,333
  • The Appimage works really good for me also. Just download https://github.com/balena-io/etcher/releases/download/v1.7.9/balena-etcher-electron-1.7.9-linux-x64.zip?d_id=e7f87540-a6ee-4b35-828e-da044bda2299R , unzip and click – C.S.Cameron Jul 10 '22 at 22:23