DeveloperBreeze

Linux Programming Tutorials, Guides & Best Practices

Explore 50+ expertly crafted linux tutorials, components, and code examples. Stay productive and build faster with proven implementation strategies and design patterns from DeveloperBreeze.

Cheatsheet

Essential dpkg Commands Cheat Sheet for Debian and Ubuntu Systems

Completely removes the package, including its configuration files.

  • List installed packages:

Oct 24, 2024
Read More
Tutorial
bash

Mastering Linux Package Management: APT, YUM, DNF, and More

A package manager is a collection of software tools that automate the process of installing, upgrading, configuring, and removing software packages from a computer's operating system. Package managers maintain a database of available packages, their dependencies, and their versions.

  • APT (Advanced Package Tool): Used primarily in Debian-based distributions like Ubuntu.
  • YUM (Yellowdog Updater, Modified): Traditionally used in Red Hat-based distributions like CentOS.
  • DNF (Dandified YUM): The next-generation version of YUM, used in Fedora and CentOS 8+.
  • Zypper: Used in openSUSE and SUSE Linux Enterprise.
  • Pacman: Used in Arch Linux and its derivatives.

Aug 19, 2024
Read More