How to Install Etcher on Ubuntu

November 13, 2024

Introduction

Etcher (also known by its full name, balenaEtcher) is a free, open-source image flasher, a utility for creating bootable USB flash drives or SD cards from .img and .iso files.

In this tutorial, you will learn how to install Etcher on Ubuntu using the AppImage format or command line interface.

How to install Etcher on Ubuntu

Note: Etcher is an easy way to write a Linux image on an SD card of USB flash.

Prerequisites

How to Install Balena Etcher on Ubuntu via AppImage

Etcher is available for download as an AppImage, a portable software distribution format. AppImage makes it easy to run applications without a complicated installation process.

The following steps help you run Etcher from its AppImage.

Step 1: Download AppImage from Balena's Website

Visit Etcher's official website and download the AppImage for Linux. Since Ubuntu supports only 64-bit architecture, choose the x64 version.

Download Etcher from balena's website

Step 2: Extract the .zip File

To extract the .zip file, navigate to where you downloaded it, right-click the .zip file, and select Extract.

Extract Etcher

The .zip file extracts to the current directory.

Step 3: Run Etcher

After you extract the files, locate the balena-etcher file and run it.

balena-etcher file

The Etcher tool interface appears:

balenaEtcher launched

Tip: To uninstall Etcher AppImage, delete the file you downloaded.

How to Install Balena Etcher on Ubuntu via Apt

Installing Balena Etcher on Ubuntu via apt offers a straightforward method for setting up this tool to create bootable media.

Unlike using the AppImage, installing via apt ensures Balena Etcher is integrated into your system and easily accessible from the terminal. The following text walks you through each step to install Balena Etcher using apt on Ubuntu.

Step 1: Download Etcher

Download and run the installation script for Balena Etcher using curl or wget.

For example, with curl, run:

curl -L -o balena-etcher_1.19.25_amd64.deb https://github.com/balena-io/etcher/releases/download/v1.19.25/balena-etcher_1.19.25_amd64.deb
curl -L -o balena-etcher_1.19.25_amd64.deb https://github.com/balena-io/etcher/releases/download/v1.19.25/balena-etcher_1.19.25_amd64.deb terminal output

Note: To ensure you're installing the latest Etcher version, check the Etcher Releases page on GitHub before you proceed.

Step 2: Install Etcher

Proceed with installing Etcher using apt. After updating the package list, run:

sudo apt install ./balena-etcher_1.19.25_amd64.deb
sudo apt install ./balena-etcher_1.19.25_amd64.deb terminal output

Step 3: Run Etcher

Run Etcher by finding it in the list of your Ubuntu applications. Alternatively, start it via the terminal:

balena-etcher
balenaEtcher launched via the terminal

Conclusion

This tutorial presented two simple methods to install Etcher, a popular bootable media creator. AppImage comes in handy if you need Etcher for a single use. On the other hand, if you plan to use the application regularly, you may want to perform a full installation via the command line.

Next, learn how else to use the apt package manager on Ubuntu.

Was this article helpful?
YesNo
Marko Aleksic
Marko Aleksić is a Technical Writer at phoenixNAP. His innate curiosity regarding all things IT, combined with over a decade long background in writing, teaching and working in IT-related fields, led him to technical writing, where he has an opportunity to employ his skills and make technology less daunting to everyone.
Next you should read
How to Format USB Drives in Linux
April 30, 2024

USB formatting is done for several reasons, such as deleting data or...
Read more
How to Upgrade to Ubuntu 20.04
May 7, 2020

Ubuntu 20.04 (Focal Fossa) is the newest Ubuntu LTS release. You can upgrade to...
Read more
How to Install CentOS 8 {with Screenshots}
December 14, 2019

Since there is no way to upgrade from CentOS 7 to CentOS 8...
Read more
How to use apt Package Manager on Ubuntu Linux
November 13, 2024

In Linux, special tools were developed for managing applications. Application...
Read more