Skip to content

Commit d25b8ae

Browse files
authored
Merge pull request #7453 from benyaminl/readme-install-fedora-rhel
add fedora and RHEL installation docs
2 parents 91456e4 + 598889a commit d25b8ae

4 files changed

Lines changed: 26 additions & 0 deletions

File tree

.vscode/cspell.dictionaries/acronyms+names.wordlist.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ Codacy
4646
Cygwin
4747
Deno
4848
EditorConfig
49+
EPEL
4950
FreeBSD
5051
Gmail
5152
GNU

.vscode/cspell.dictionaries/jargon.wordlist.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ canonicalizing
1313
capget
1414
codepoint
1515
codepoints
16+
codeready
1617
codegen
1718
colorizable
1819
colorize

.vscode/cspell.dictionaries/shell.wordlist.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,4 @@ xargs
103103

104104
# * directories
105105
sbin
106+
libexec

docs/src/installation.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,16 @@ apt install rust-coreutils
5353
export PATH=/usr/lib/cargo/bin/coreutils:$PATH
5454
```
5555

56+
### Fedora
57+
58+
[![Fedora package](https://repology.org/badge/version-for-repo/fedora_rawhide/uutils-coreutils.svg)](https://packages.fedoraproject.org/pkgs/rust-coreutils/uutils-coreutils)
59+
60+
```shell
61+
dnf install uutils-coreutils
62+
# To use it:
63+
export PATH=/usr/libexec/uutils-coreutils:$PATH
64+
```
65+
5666
### Gentoo
5767

5868
[![Gentoo package](https://repology.org/badge/version-for-repo/gentoo/uutils-coreutils.svg)](https://packages.gentoo.org/packages/sys-apps/uutils-coreutils)
@@ -89,6 +99,19 @@ nix-env -iA nixos.uutils-coreutils
8999
dnf install uutils-coreutils
90100
```
91101

102+
### RHEL/AlmaLinux/CENTOS Stream/Rocky Linux/EPEL 9
103+
104+
[![epel 9 package](https://repology.org/badge/version-for-repo/epel_9/uutils-coreutils.svg)](https://packages.fedoraproject.org/pkgs/rust-coreutils/uutils-coreutils/epel-9.html)
105+
106+
```shell
107+
# Install EPEL 9 - Specific For RHEL please check codeready-builder-for-rhel-9 First then install epel
108+
dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm -y
109+
# Install Core Utils
110+
dnf install uutils-coreutils
111+
# To use it:
112+
export PATH=/usr/libexec/uutils-coreutils:$PATH
113+
```
114+
92115
### Ubuntu
93116

94117
[![Ubuntu package](https://repology.org/badge/version-for-repo/ubuntu_23_04/uutils-coreutils.svg)](https://packages.ubuntu.com/source/lunar/rust-coreutils)

0 commit comments

Comments
 (0)