zoukankan      html  css  js  c++  java
  • Why is Yum Replaced by DNF?

    Yum Package Manager has been replaced by DNF Package Manager since many long-standing issues in Yum remain unresolved.

    These problems include poor performance, excessive memory usage, slowdown for dependency resolution.

    DNF uses “libsolv” for dependency resolution, developed and maintained by SUSE to improve performance.

    It was written mostly in python, and it has its own way of coping with dependency resolution.

    Its API is not fully documented, and its extension system only allows Python plugins.

    Yum is a front-end tool for rpm that manages dependencies and repositories, and then uses RPM to install, download, and remove packages.

    Why would they want to build a new tool instead of fixing existing problems?

    Ales Kozamblak explained that the fixing was not technically feasible and that the yum team was not ready to accept the changes immediately.

    Also, the big challenge is that there are 56K lines for yum, but only 29K lines for DNF.

    So there is no way to fix it, except the fork. However yum was working fine.

    S.NoDNF (Dandified YUM)YUM (Yellowdog Updater, Modified)
    1 DNF uses libsolv for dependency resolution, developed and maintained by SUSE. YUM uses the public API for dependency resolution
    2 API is fully documented API is not fully documented
    3 It is written in C, C++, Python It is written only in Python
    4 DNF is currently used in Fedora, Red Hat Enterprise Linux 8 (RHEL), CentOS 8, OEL 8 and Mageia 6/7. YUM is currently used in Red Hat Enterprise Linux 6/7 (RHEL), CentOS 6/7, OEL 6/7.
    5 DNf supports various extensions Yum supports only Python based extension
    6 The API is well documented so it's easy to create new features It is very difficult to create new features because the API is not properly documented.
    7 The DNF uses less memory when synchronizing the metadata of the repositories. The YUM uses excessive memory when synchronizing the metadata of the repositories.
    8 DNF uses a satisfiability algorithm to solve dependency resolution (It's using a dictionary approach to store and retrieve package and dependency information). Yum dependency resolution gets sluggish due to public API.
    9 All performance is good in terms of memory usage and dependency resolution of repository metadata. Over all performance is poor in terms of many factors.
    10 DNF Update: If a package contains irrelevant dependencies during a DNF update process, the package will not be updated. YUM will update a package without verifying this.
    11 If the enabled repository does not respond, dnf will skip it and continue the transaction with the available repositories. If a repository is not available, YUM will stop immediately.
    12 dnf update and dnf upgrade equals. It's different in yum
    13 The dependencies on package installation are not updated Yum offered an option for this behavior
    14 Clean Up Package Removal: When removing a package, dnf automatically removes any dependency packages not explicitly installed by the user. Yum didn’t do this
    15 Repo Cache Update Schedule: By default, ten minutes after the system boots, updates to configured repositories are checked by dnf hourly. This action is controlled by the system timer unit named "/usr/lib/systemd/system/dnf-makecache.timer". Yum do this too.
    16 Kernel packages are not protected by dnf. Unlike Yum, you can delete all kernel packages, including one that runs. Yum will not allow you to remove the running kernel
    17 libsolv: for solving packages and reading repositories.

    hawkey: hawkey, library providing simplified C and Python API to libsolv.

    librepo: library providing C and Python (libcURL like) API for downloading linux repository metadata and packages.

    libcomps: Libcomps is alternative for yum.comps library. It’s written in pure C as library and there’s bindings for python2 and python3
    Yum does not use separate libraries to perform this function.
    18 DNF contains 29k lines of code Yum contains 56k lines of code
    19 DNF was developed by Ales Kozumplik YUM was developed by Zdenek Pavlas, Jan Silhan and team members
  • 相关阅读:
    【转】36个经典的JQuery导航菜单演示+下载
    【转】ASP.NET 3.5 开发范例精讲精析读书笔记
    【转】js弹出框详解
    【转】谈谈三层架构中MODEL的作用
    【转】制作.net实体类生成器(1)
    ASP.NET开发实战宝典.pdf配套视频源码iso| 开发实战宝典pdf和配套视频源码iso
    【转】if (!IsPostBack)
    jquery
    取web.config 连接字符串
    js接收传递过来的参数
  • 原文地址:https://www.cnblogs.com/rusking/p/13619265.html
Copyright © 2011-2022 走看看