From 990c6e55bd32df7731febfcbd2e9b1759c5386ee Mon Sep 17 00:00:00 2001 From: Hugh Ratsch Date: Tue, 18 Feb 2025 16:29:36 -0600 Subject: [PATCH] updated notes --- src/rhcsa.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/rhcsa.md b/src/rhcsa.md index f5e2582..d56e880 100644 --- a/src/rhcsa.md +++ b/src/rhcsa.md @@ -676,4 +676,17 @@ sudo rpm -e httpd # Remove the httpd package rpm2cpio httpd-2.4.37-1.el8.x86_64.rpm | cpio -tv # Display the contents of the httpd package rpm2cpio httpd-2.4.37-1.el8.x86_64.rpm | cpio -idmv # Extract the contents of the httpd package -``` \ No newline at end of file +``` + +### dnf +```bash +sudo dnf install httpd # Install the httpd package + +sudo dnf remove httpd # Remove the httpd package + +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 +``` +