From 2a7b1c4db9b62049bf16c14ede3e6076ed29f46f Mon Sep 17 00:00:00 2001 From: trinib Date: Mon, 15 Jan 2024 07:18:09 -0400 Subject: [PATCH] Update README.md --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6e7f984..5edea59 100644 --- a/README.md +++ b/README.md @@ -629,6 +629,10 @@ _Bash is the [Unix](https://www.google.com/search?q=What+is+UNIX+explain%3F&clie Used to retrieve information or statistics form components of the system such as network connections, IO devices, or CPU, etc. +dpkg +Installs and removes software packages in the .deb format. Can be used alongside tools like apt for efficient package management. + + dstat Check and repair MS-DOS file systems. @@ -3527,7 +3531,9 @@ apt upgrade # Upgrades all upgradable packages apt clean # Clears out the local repository of downloaded package files dpkg -i|--install package_name.deb # Install deb file -rpm -i|--install package_name.rpm # Install rpm file +dpkg -P package_name.deb # Remove a deb file installion (including configuration files) +rpm -i|--install package_name.rpm # Install a rpm file installion +rpm -e package_name.rpm # Remove rpm file installion (including dependencies) ``` ### Install package source code