From 9f29df069c77a17071716f0986a3454a9044c2ff Mon Sep 17 00:00:00 2001 From: Hugh Ratsch Date: Tue, 18 Feb 2025 16:36:36 -0600 Subject: [PATCH] updated notes --- src/rhcsa.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/rhcsa.md b/src/rhcsa.md index d56e880..5ab9fb3 100644 --- a/src/rhcsa.md +++ b/src/rhcsa.md @@ -688,5 +688,8 @@ sudo dnf list # List all packages sudo dnf search httpd # Search for the httpd package sudo dnf info httpd # Display information about the httpd package + +sudo dnf provides /bin/bash # Display the package that provides the /bin/bash command +sudo dnf deplist httpd # Display the dependencies of the httpd package ```