mirror of
https://github.com/ClementTsang/bottom
synced 2024-11-25 13:40:20 +00:00
docs: add .rpm install instructions to the README (#1208)
This commit is contained in:
parent
9ad72bf365
commit
e1d6168641
2 changed files with 15 additions and 4 deletions
2
.github/ISSUE_TEMPLATE/packaging.yml
vendored
2
.github/ISSUE_TEMPLATE/packaging.yml
vendored
|
@ -16,7 +16,7 @@ body:
|
|||
are related to the following sources:
|
||||
|
||||
* [crates.io](https://crates.io/crates/bottom)
|
||||
* [Binary releases released on GitHub](https://github.com/ClementTsang/bottom/releases)
|
||||
* [Binary releases/packages released on GitHub](https://github.com/ClementTsang/bottom/releases)
|
||||
|
||||
|
||||
For any other distribution channel, please first try to contact the package maintainers where appropriate
|
||||
|
|
17
README.md
17
README.md
|
@ -32,7 +32,7 @@
|
|||
- [Arch Linux](#arch-linux)
|
||||
- [Debian/Ubuntu](#debianubuntu)
|
||||
- [Snap](#snap)
|
||||
- [Fedora/CentOS](#fedoracentos)
|
||||
- [Fedora/CentOS/AlmaLinux/Rocky Linux](#fedoracentosalmalinuxrocky-linux)
|
||||
- [Gentoo](#gentoo)
|
||||
- [Nix](#nix)
|
||||
- [Solus](#solus)
|
||||
|
@ -189,15 +189,26 @@ sudo snap connect bottom:system-observe
|
|||
sudo snap connect bottom:process-control
|
||||
```
|
||||
|
||||
### Fedora/CentOS
|
||||
### Fedora/CentOS/AlmaLinux/Rocky Linux
|
||||
|
||||
Available in [COPR](https://copr.fedorainfracloud.org/coprs/atim/bottom/):
|
||||
bottom is available in [COPR](https://copr.fedorainfracloud.org/coprs/atim/bottom/):
|
||||
|
||||
```bash
|
||||
sudo dnf copr enable atim/bottom -y
|
||||
sudo dnf install bottom
|
||||
```
|
||||
|
||||
<!--FIXME: Update this whenever you release a new stable version after 0.9.2!-->
|
||||
|
||||
`.rpm` files are also generated (currently only for [nightly builds](https://github.com/ClementTsang/bottom/releases/tag/nightly))
|
||||
for x86. If you wish to install this way, then you can do something like:
|
||||
|
||||
```bash
|
||||
# x86-64
|
||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/nightly/bottom-0.9.3-1.x86_64.rpm
|
||||
sudo rpm -i bottom-0.9.3-1.x86_64.rpm
|
||||
```
|
||||
|
||||
### Gentoo
|
||||
|
||||
Available in the [official Gentoo repo](https://packages.gentoo.org/packages/sys-process/bottom):
|
||||
|
|
Loading…
Reference in a new issue