This is an automated email from the ASF dual-hosted git repository. vatamane pushed a commit to branch rhel-10-instructions-dev in repository https://gitbox.apache.org/repos/asf/couchdb-pkg.git
commit 7d67697e1811a0d824d52e6487f7a413693294af Author: Nick Vatamaniuc <[email protected]> AuthorDate: Mon Feb 23 22:39:35 2026 -0500 Dev install RHEL10 compat rpm instructions Since we don't need Spidermonkey the instructions are a bit simpler as well. --- README.md | 29 ++++++++++++++++++++--------- 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 2acb0e4..999501d 100644 --- a/README.md +++ b/README.md @@ -146,21 +146,32 @@ echo "deb [signed-by=/usr/share/keyrings/couchdb-archive-keyring.gpg] https://ap #### RHEL/AlmaLinux/RockyLinux 8 +As root or under `sudo` ``` -sudo dnf install -y yum-utils -sudo yum-config-manager --add-repo https://apache.jfrog.io/artifactory/couchdb/couchdev.repo -sudo dnf install -y couchdb +dnf install -y yum-utils +yum-config-manager --add-repo https://apache.jfrog.io/artifactory/couchdb/couchdev.repo +dnf install -y couchdb ``` #### RHEL/AlmaLinux/RockyLinux 9 +As root or under `sudo` ``` -sudo dnf install -y yum-utils -sudo yum-config-manager --add-repo https://apache.jfrog.io/artifactory/couchdb/couchdev.repo -sudo dnf config-manager --set-enabled crb -sudo dnf install epel-release epel-next-release -sudo dnf install -y mozjs78 -sudo dnf install -y couchdb +dnf install -y yum-utils +yum-config-manager --add-repo https://apache.jfrog.io/artifactory/couchdb/couchdev.repo +dnf config-manager --set-enabled crb +dnf install epel-release epel-next-release +dnf install -y mozjs78 +dnf install -y couchdb +``` + +#### RHEL/AlmaLinux/RockyLinux 10 + +As root or under `sudo` +``` +dnf install -y yum-utils +yum-config-manager --add-repo https://apache.jfrog.io/artifactory/couchdb/couchdev.repo +dnf install -y couchdb ``` #### Enable Nouveau
