Table of Contents
This tip is about the how to configure and install Balena Etcher on Debian 11 Bullseye. So read this free guide, How to configure and install Balena Etcher on Debian 11 Bullseye step by step. If you have query related to same article you may contact us.
How to configure and install Balena Etcher on Debian 11 Bullseye – Guide
Balena Etcher for Debian Bullseye is a free and open source utility used to burn image files as .iso and .img files, as well as zipped folders to create SD cards and active USB flash drives.
Finally, Etcher Validate Writing Images Booting and has an easy driver selection to rid you of a possible drive data wiping error.
prerequisites
Update operating system
Update your Debian operating system to make sure all existing packages are up To date:
sudo apt update && sudo apt upgrade -y
O tutorial will be using the sudo command and assuming you have sudo status.
To check the status of sudo on your account:
sudo whoami
Example output showing sudo status:
[joshua@debian~]$ sudo whoamiroot
Per up an existing or new sudo account, visit our tutorial on how to add a user to Sudoers in Debian.
To use the root account, use the following command with the root password to login.
su
O tutorial will use the terminal for installation found in Activities> Show Applications> Terminal.
Install Required Dependencies
In order for the installation to complete, the following packages need to be installed.
sudo apt install curl apt-transport-https
Note, if you’re not sure, just run the command.
Import balenaEtcher Repository
The first task is to import the official Etcher repository. For Debian users this is relatively easy as there is a bash script that the balena team created that can be downloaded and automates the import.
On your terminal, use the following command to download the bash script.
curl -1sLf ‘https://dl.cloudsmith.io/public/balena/etcher/setup.deb.sh’ | sudo -and bash
If the above commands fail, it is more than likely that the curl package is not installed. To fix this, use the following terminal command.
sudo apt install curl -y
Then repeat the process to download the bash script.
The command will automatically launch the bash command to launch the script and import the repository, and if you lost the apt-transport-https package, try to install it.
Once completed, you should see the instructions in the final from the terminal output.
Then perform an APT update to ensure the package manager is up updated with the addition of the new repository.
sudo apt update
Install balenaEtcher on Debian
Now that you’ve imported the repository, it’s time to install the Etcher software. On your terminal, use the following command.
sudo apt-get install balena-etcher-electron
Type Y and press the ENTER KEY to proceed with the installation.
Then verify the installation using the apt-cache policy command.
sudo apt-cache policy balena-etcher-electron
Create USB installation image with balenaEtcher
With balenaEtcher now installed, the tutorial will show quickly how to create a bootable USB installation image. This is one of the most common uses for this software, as many Linux users know about distro hopping and the importance of installation images.
O tutorial will create an alternate Fedora install image.
First, download the .iso installation image. To tutorial In this case, it will be from the Fedora workstation download page.
Then back on your Debian 11 system, open balenaEtcher, which can be found under activities > show apps > balenaEtcher.
The first screen you’ll see is pretty self-explanatory. One of the reasons this software is popular is its relative ease of use compared to alternative options.
On the application screen, click on the button “Flash from the file.”
After selecting the desired installation image, click the button button “Select the target.”
In the next window, select the USB you want to use as the destination for the Etcher application to burn the image.
Now, to finish and start creating the bootable USB installation image disc, click the “Flash” button button.
Once complete and successful, you will see similar output.
Congratulations, you have installed balenaEtcher and created your first bootable USB disk with the software.
How to Keep balenaEtcher Updated
The installation method used the APT package manager to install the software from the repository.
To update balenaEtcher, use the apt-update command as you would any APT package or system update check.
sudo apt update
Ideally, you should do this frequently to keep your system up to date. If an available upgrade is listed, use the apt-upgrade command to continue.
sudo apt update
Final note
I hope you like the guide How to configure and install Balena Etcher on Debian 11 Bullseye. In case if you have any query regards this article you may ask us. Also, please share your love by sharing this article with your friends.