updated notes

This commit is contained in:
Hugh Ratsch
2025-02-18 16:29:36 -06:00
parent 4643b7e0de
commit 990c6e55bd
+13
View File
@@ -677,3 +677,16 @@ rpm2cpio httpd-2.4.37-1.el8.x86_64.rpm | cpio -tv # Display the contents of the
rpm2cpio httpd-2.4.37-1.el8.x86_64.rpm | cpio -idmv # Extract 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
``` ```
### 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
```