From 9f161421ec725112b854ae3e98efcea34ead16fd Mon Sep 17 00:00:00 2001 From: tjuhaszrh Date: Mon, 1 Sep 2025 11:48:29 +0200 Subject: [PATCH] fix: correct outdated fedora/CentOs/RHEL install guide (#8114) * fix: correct outdated fedora/CentOs/RHEL install guide Installation method in Fedora/CentOs/RHEL space has changed in the last few years, moving away from using modules to using traditional rpms for all maintained stream versions. * Fix: Typo Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: tjuhaszrh * Fix: Formatting Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: tjuhaszrh * Fix: Formatting Co-authored-by: Michael Esteban Signed-off-by: tjuhaszrh * Fix: spelling Co-authored-by: Michael Esteban Signed-off-by: tjuhaszrh * Fix: Capitalization Co-authored-by: Michael Esteban Signed-off-by: tjuhaszrh --------- Signed-off-by: tjuhaszrh Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Michael Esteban --- .../pages/en/download/package-manager/all.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/apps/site/pages/en/download/package-manager/all.md b/apps/site/pages/en/download/package-manager/all.md index 20b56fa8fd845..5859d52200293 100644 --- a/apps/site/pages/en/download/package-manager/all.md +++ b/apps/site/pages/en/download/package-manager/all.md @@ -43,7 +43,23 @@ pacman -S nodejs npm ## CentOS, Fedora and Red Hat Enterprise Linux -Node.js is available as a module called `nodejs` in CentOS/RHEL 8 and Fedora. +Node.js and npm packages are available in the main Repository for Fedora and RHEL 10. + +It can be installed from a default stream which contains the currently active +LTS Node.js version. + +```bash +dnf install nodejs npm +``` + +Or from a specific stream for alternative, maintained versions (maintained versions +might differ between Fedora and various RHEL releases). + +```bash +dnf install nodejs24 +``` + +For older CentOS/RHEL releases Node.js is available as a module called `nodejs`. ```bash dnf module install nodejs: