27 lines
1.5 KiB
Markdown
27 lines
1.5 KiB
Markdown
|
|
## 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.)
|