mirror of
https://github.com/balena-io/etcher.git
synced 2025-07-16 15:56:33 +00:00
commit
cd9cf09422
116
README.md
116
README.md
@ -32,132 +32,41 @@ installers for all supported operating systems.
|
|||||||
|
|
||||||
## Packages
|
## Packages
|
||||||
|
|
||||||
> [](https://cloudsmith.com) \
|
|
||||||
Package repository hosting is graciously provided by [Cloudsmith](https://cloudsmith.com).
|
|
||||||
Cloudsmith is the only fully hosted, cloud-native, universal package management solution, that
|
|
||||||
enables your organization to create, store and share packages in any format, to any place, with total
|
|
||||||
confidence.
|
|
||||||
|
|
||||||
#### Debian and Ubuntu based Package Repository (GNU/Linux x86/x64)
|
#### Debian and Ubuntu based Package Repository (GNU/Linux x86/x64)
|
||||||
|
|
||||||
> Detailed or alternative steps in the [instructions by Cloudsmith](https://cloudsmith.io/~balena/repos/etcher/setup/#formats-deb)
|
Package for Debian and Ubuntu can be downloaded from the [Github release page](https://github.com/balena-io/etcher/releases/)
|
||||||
|
|
||||||
1. Add Etcher Debian repository:
|
1. Install using dpkg
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
curl -1sLf \
|
sudo dpkg -i balena-etcher_******_amd64.deb
|
||||||
'https://dl.cloudsmith.io/public/balena/etcher/setup.deb.sh' \
|
|
||||||
| sudo -E bash
|
|
||||||
```
|
```
|
||||||
|
|
||||||
2. Update and install:
|
If you're missing dependencies you can fix them with:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
sudo apt-get update #you can use apt instead of apt-get as well
|
sudo apt update && apt --fix-broken install #to add potential missing dependencies
|
||||||
sudo apt-get install balena-etcher-electron
|
|
||||||
```
|
```
|
||||||
>Note: after v1.7.9 the package name changed to `balena-etcher` (no electron at the end)
|
|
||||||
|
|
||||||
##### Uninstall
|
##### Uninstall
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
sudo apt-get remove balena-etcher-electron
|
sudo apt-get remove balena-etcher
|
||||||
rm /etc/apt/sources.list.d/balena-etcher.list
|
apt clean
|
||||||
apt-get clean
|
|
||||||
rm -rf /var/lib/apt/lists/*
|
rm -rf /var/lib/apt/lists/*
|
||||||
apt-get update
|
apt update
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Redhat (RHEL) and Fedora-based Package Repository (GNU/Linux x86/x64)
|
#### Redhat (RHEL) and Fedora-based Package Repository (GNU/Linux x86/x64)
|
||||||
|
|
||||||
> Detailed or alternative steps in the [instructions by Cloudsmith](https://cloudsmith.io/~balena/repos/etcher/setup/#formats-rpm)
|
|
||||||
|
|
||||||
|
|
||||||
##### DNF
|
|
||||||
|
|
||||||
1. Add Etcher rpm repository:
|
|
||||||
|
|
||||||
```sh
|
|
||||||
curl -1sLf \
|
|
||||||
'https://dl.cloudsmith.io/public/balena/etcher/setup.rpm.sh' \
|
|
||||||
| sudo -E bash
|
|
||||||
```
|
|
||||||
|
|
||||||
2. Update and install:
|
|
||||||
|
|
||||||
```sh
|
|
||||||
sudo dnf install -y balena-etcher-electron
|
|
||||||
```
|
|
||||||
>Note: after v1.7.9 the package name changed to `balena-etcher` (no electron at the end)
|
|
||||||
|
|
||||||
###### Uninstall
|
|
||||||
|
|
||||||
```sh
|
|
||||||
rm /etc/yum.repos.d/balena-etcher.repo
|
|
||||||
rm /etc/yum.repos.d/balena-etcher-source.repo
|
|
||||||
```
|
|
||||||
|
|
||||||
##### Yum
|
##### Yum
|
||||||
|
|
||||||
1. Add Etcher rpm repository:
|
Package for Fedora-based and Redhat can be downloaded from the [Github release page](https://github.com/balena-io/etcher/releases/)
|
||||||
|
|
||||||
```sh
|
1. Install using yum
|
||||||
curl -1sLf \
|
|
||||||
'https://dl.cloudsmith.io/public/balena/etcher/setup.rpm.sh' \
|
|
||||||
| sudo -E bash
|
|
||||||
```
|
|
||||||
|
|
||||||
2. Update and install:
|
|
||||||
|
|
||||||
```sh
|
|
||||||
sudo yum install -y balena-etcher-electron
|
|
||||||
```
|
|
||||||
>Note: after v1.7.9 the package name changed to `balena-etcher` (no electron at the end)
|
|
||||||
|
|
||||||
###### Uninstall
|
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
sudo yum remove -y balena-etcher-electron
|
sudo yum localinstall balena-etcher-***.x86_64.rpm
|
||||||
rm /etc/yum.repos.d/balena-etcher.repo
|
|
||||||
rm /etc/yum.repos.d/balena-etcher-source.repo
|
|
||||||
```
|
|
||||||
|
|
||||||
#### OpenSUSE LEAP & Tumbleweed install (zypper)
|
|
||||||
|
|
||||||
1. Add the repo
|
|
||||||
|
|
||||||
```sh
|
|
||||||
curl -1sLf \
|
|
||||||
'https://dl.cloudsmith.io/public/balena/etcher/setup.rpm.sh' \
|
|
||||||
| sudo -E bash
|
|
||||||
```
|
|
||||||
2. Update and install
|
|
||||||
|
|
||||||
```sh
|
|
||||||
sudo zypper up
|
|
||||||
sudo zypper install balena-etcher-electron
|
|
||||||
```
|
|
||||||
>Note: after v1.7.9 the package name changed to `balena-etcher` (no electron at the end)
|
|
||||||
|
|
||||||
##### Uninstall
|
|
||||||
|
|
||||||
```sh
|
|
||||||
sudo zypper rm balena-etcher-electron
|
|
||||||
# remove the repo
|
|
||||||
sudo zypper rr balena-etcher
|
|
||||||
sudo zypper rr balena-etcher-source
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Solus (GNU/Linux x64)
|
|
||||||
|
|
||||||
```sh
|
|
||||||
sudo eopkg it etcher
|
|
||||||
```
|
|
||||||
|
|
||||||
##### Uninstall
|
|
||||||
|
|
||||||
```sh
|
|
||||||
sudo eopkg rm etcher
|
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Arch/Manjaro Linux (GNU/Linux x64)
|
#### Arch/Manjaro Linux (GNU/Linux x64)
|
||||||
@ -173,6 +82,7 @@ yay -S balena-etcher
|
|||||||
```sh
|
```sh
|
||||||
yay -R balena-etcher
|
yay -R balena-etcher
|
||||||
```
|
```
|
||||||
|
|
||||||
#### WinGet (Windows)
|
#### WinGet (Windows)
|
||||||
|
|
||||||
This package is updated by [gh-action](https://github.com/vedantmgoyal2009/winget-releaser), and is kept up to date automatically.
|
This package is updated by [gh-action](https://github.com/vedantmgoyal2009/winget-releaser), and is kept up to date automatically.
|
||||||
@ -221,5 +131,3 @@ the [license].
|
|||||||
[milestones]: https://github.com/balena-io/etcher/milestones
|
[milestones]: https://github.com/balena-io/etcher/milestones
|
||||||
[newissue]: https://github.com/balena-io/etcher/issues/new
|
[newissue]: https://github.com/balena-io/etcher/issues/new
|
||||||
[license]: https://github.com/balena-io/etcher/blob/master/LICENSE
|
[license]: https://github.com/balena-io/etcher/blob/master/LICENSE
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user