From dc581e66da6b241bd6b48ebd4755cd97e72f18e6 Mon Sep 17 00:00:00 2001 From: ganome Date: Tue, 12 Nov 2024 09:55:06 -0700 Subject: [PATCH] removed package management hyperlinks --- .../Advanced Package Management.md | 27 ------------------- 1 file changed, 27 deletions(-) delete mode 100644 08 - Advanced Linux Administration/Advanced Package Management.md diff --git a/08 - Advanced Linux Administration/Advanced Package Management.md b/08 - Advanced Linux Administration/Advanced Package Management.md deleted file mode 100644 index 9b879fb..0000000 --- a/08 - Advanced Linux Administration/Advanced Package Management.md +++ /dev/null @@ -1,27 +0,0 @@ -## In **Linux Mint**, package management is essential for installing, updating, and managing software. Let's explore some key tools and concepts: - -1. **APT (Advanced Packaging Tool)**: - - APT is the primary package manager for Debian-based systems, including Linux Mint. - - It handles software installation, removal, querying, and upgrades. - - Common APT commands: - - `sudo apt update`: Refreshes package lists from repositories. - - `sudo apt install package-name`: Installs a package. - - `sudo apt remove package-name`: Removes a package. - - `sudo apt upgrade`: Upgrades installed packages. - - `sudo apt search keyword`: Searches for packages. - - APT uses `.deb` packages and works alongside `dpkg`, which installs individual `.deb` files. - -2. **Synaptic Package Manager**: - - Synaptic is an advanced graphical package management tool. - - To install Synaptic: - ``` - sudo apt install synaptic - ``` - - Launch it from the Applications menu or by typing `synaptic` in the terminal. - -Remember, APT and Synaptic empower you to manage software efficiently in Linux Mint! 😊🚀 ²³ - -Source: Conversation with Copilot, 7/12/2024 -- [(1) How to Install and Update Apps on Linux Mint - UMA Technology.](https://umatechnology.org/how-to-install-and-update-apps-on-linux-mint/.) -- [(2) How to Use APT Command in Linux [15 Useful Examples] - UbuntuMint.](https://www.ubuntumint.com/apt-commands/.) -- [(3) Package Management Essentials: apt, yum, dnf, pkg.](https://www.digitalocean.com/community/tutorials/package-management-basics-apt-yum-dnf-pkg.) \ No newline at end of file