mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 12:07:46 +00:00
Merge pull request #7453 from benyaminl/readme-install-fedora-rhel
add fedora and RHEL installation docs
This commit is contained in:
commit
d25b8ae935
4 changed files with 26 additions and 0 deletions
|
@ -46,6 +46,7 @@ Codacy
|
||||||
Cygwin
|
Cygwin
|
||||||
Deno
|
Deno
|
||||||
EditorConfig
|
EditorConfig
|
||||||
|
EPEL
|
||||||
FreeBSD
|
FreeBSD
|
||||||
Gmail
|
Gmail
|
||||||
GNU
|
GNU
|
||||||
|
|
|
@ -13,6 +13,7 @@ canonicalizing
|
||||||
capget
|
capget
|
||||||
codepoint
|
codepoint
|
||||||
codepoints
|
codepoints
|
||||||
|
codeready
|
||||||
codegen
|
codegen
|
||||||
colorizable
|
colorizable
|
||||||
colorize
|
colorize
|
||||||
|
|
|
@ -103,3 +103,4 @@ xargs
|
||||||
|
|
||||||
# * directories
|
# * directories
|
||||||
sbin
|
sbin
|
||||||
|
libexec
|
||||||
|
|
|
@ -53,6 +53,16 @@ apt install rust-coreutils
|
||||||
export PATH=/usr/lib/cargo/bin/coreutils:$PATH
|
export PATH=/usr/lib/cargo/bin/coreutils:$PATH
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Fedora
|
||||||
|
|
||||||
|
[](https://packages.fedoraproject.org/pkgs/rust-coreutils/uutils-coreutils)
|
||||||
|
|
||||||
|
```shell
|
||||||
|
dnf install uutils-coreutils
|
||||||
|
# To use it:
|
||||||
|
export PATH=/usr/libexec/uutils-coreutils:$PATH
|
||||||
|
```
|
||||||
|
|
||||||
### Gentoo
|
### Gentoo
|
||||||
|
|
||||||
[](https://packages.gentoo.org/packages/sys-apps/uutils-coreutils)
|
[](https://packages.gentoo.org/packages/sys-apps/uutils-coreutils)
|
||||||
|
@ -89,6 +99,19 @@ nix-env -iA nixos.uutils-coreutils
|
||||||
dnf install uutils-coreutils
|
dnf install uutils-coreutils
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### RHEL/AlmaLinux/CENTOS Stream/Rocky Linux/EPEL 9
|
||||||
|
|
||||||
|
[](https://packages.fedoraproject.org/pkgs/rust-coreutils/uutils-coreutils/epel-9.html)
|
||||||
|
|
||||||
|
```shell
|
||||||
|
# Install EPEL 9 - Specific For RHEL please check codeready-builder-for-rhel-9 First then install epel
|
||||||
|
dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm -y
|
||||||
|
# Install Core Utils
|
||||||
|
dnf install uutils-coreutils
|
||||||
|
# To use it:
|
||||||
|
export PATH=/usr/libexec/uutils-coreutils:$PATH
|
||||||
|
```
|
||||||
|
|
||||||
### Ubuntu
|
### Ubuntu
|
||||||
|
|
||||||
[](https://packages.ubuntu.com/source/lunar/rust-coreutils)
|
[](https://packages.ubuntu.com/source/lunar/rust-coreutils)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue