mirror of
https://github.com/ClementTsang/bottom
synced 2024-11-21 19:53:05 +00:00
docs: fix Debian package links (#1550)
Fixes .deb package links in examples.
This commit is contained in:
parent
537a67152f
commit
218d1899fc
1 changed files with 12 additions and 8 deletions
20
README.md
20
README.md
|
@ -194,21 +194,25 @@ sudo paru -S bottom-git
|
||||||
### Debian / Ubuntu
|
### Debian / Ubuntu
|
||||||
|
|
||||||
A `.deb` file is provided on each [stable release](https://github.com/ClementTsang/bottom/releases/latest) and
|
A `.deb` file is provided on each [stable release](https://github.com/ClementTsang/bottom/releases/latest) and
|
||||||
[nightly builds](https://github.com/ClementTsang/bottom/releases/tag/nightly) for x86, aarch64, and armv7
|
[nightly builds](https://github.com/ClementTsang/bottom/releases/tag/nightly) for x86, aarch64, and armv7.
|
||||||
(note stable ARM builds are only available for 0.6.8 and later). An example of installing this way:
|
Some examples of installing it this way:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# x86-64
|
# x86-64
|
||||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.2/bottom_0.10.2_amd64.deb
|
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.2/bottom_0.10.2-1_amd64.deb
|
||||||
sudo dpkg -i bottom_0.10.2_amd64.deb
|
sudo dpkg -i bottom_0.10.2-1_amd64.deb
|
||||||
|
|
||||||
# ARM64
|
# ARM64
|
||||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.2/bottom_0.10.2_arm64.deb
|
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.2/bottom_0.10.2-1_arm64.deb
|
||||||
sudo dpkg -i bottom_0.10.2_arm64.deb
|
sudo dpkg -i bottom_0.10.2-1_arm64.deb
|
||||||
|
|
||||||
# ARM
|
# ARM
|
||||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.2/bottom_0.10.2_armhf.deb
|
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.2/bottom_0.10.2-1_armhf.deb
|
||||||
sudo dpkg -i bottom_0.10.2_armhf.deb
|
sudo dpkg -i bottom_0.10.2-1_armhf.deb
|
||||||
|
|
||||||
|
# musl-based
|
||||||
|
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.2/bottom-musl_0.10.2-1_amd64.deb
|
||||||
|
sudo dpkg -i bottom-musl_0.10.2-1_amd64.deb
|
||||||
```
|
```
|
||||||
|
|
||||||
### Exherbo Linux
|
### Exherbo Linux
|
||||||
|
|
Loading…
Reference in a new issue