소프트웨어 업데이트와 업그레이드의 차이점은 무엇입니까?

소프트웨어 업데이트와 업그레이드의 차이점은 무엇입니까?

누군가는 "업데이트"는 작은 변화를 위한 것이고 "업그레이드"는 큰 변화를 위한 것이라고 말합니다. 소프트웨어 업데이트와 업그레이드에 대해 매우 혼란스럽습니다. 업데이트를 사용해야 하는 경우와 업그레이드를 사용해야 하는 경우도 있습니다.

누군가 패키지 관리자에서 이러한 용어의 차이점을 설명할 수 있습니까?

답변1

우분투/데비안등을 사용하여적절한:

update먼저 을 실행 한 다음 을 실행해야 합니다 upgrade. 둘 중 어느 것도 자동으로 다른 것을 실행하지 않습니다.

  • apt-get update사용 가능한 패키지 및 해당 버전 목록을 업데이트하지만 패키지를 설치하거나 업그레이드하지는 않습니다.
  • apt-get upgrade실제로 가지고 있는 패키지의 최신 버전을 설치합니다. 목록을 업데이트한 후 패키지 관리자는 사용자가 설치한 소프트웨어에 사용 가능한 업데이트를 알게 됩니다. 이것이 당신이 먼저 원하는 이유입니다 update.

-원천.

그러나레드햇 / CentOS사용하여명령 은 update찾은 업데이트를 적용할지 묻습니다.

$ sudo 냠 업데이트

사용 가능한 모든 업데이트 목록을 확인하고 이를 적용할지 묻습니다. 이와 같이:

 [..] 
 kf5-sonnet-core                            x86_64                   5.33.0-1.el7                                    epel                   150 k
 kf5-sonnet-ui                              x86_64                   5.33.0-1.el7                                    epel                   141 k

Transaction Summary
==================================================================================================================================================
Upgrade  52 Packages

Total size: 15 M
Is this ok [y/d/N]: 

친구가 언급할 때업데이트"작은 변화"로업그레이드"큰 변화"라는 말은 실제로 다음과 같은 차이점을 의미합니다.업그레이드그리고dist-업그레이드.

apt-get 매뉴얼에서:

   upgrade
       upgrade is used to install the newest versions of all packages
       currently installed on the system from the sources enumerated in
       /etc/apt/sources.list. Packages currently installed with new
       versions available are retrieved and upgraded; under no
       circumstances are currently installed packages removed, or packages
       not already installed retrieved and installed. New versions of
       currently installed packages that cannot be upgraded without
       changing the install status of another package will be left at
       their current version. An update must be performed first so that
       apt-get knows that new versions of packages are available.

   dist-upgrade
       dist-upgrade in addition to performing the function of upgrade,
       also intelligently handles changing dependencies with new versions
       of packages; apt-get has a "smart" conflict resolution system, and
       it will attempt to upgrade the most important packages at the
       expense of less important ones if necessary. The dist-upgrade
       command may therefore remove some packages. The
       /etc/apt/sources.list file contains a list of locations from which
       to retrieve desired package files. See also apt_preferences(5) for
       a mechanism for overriding the general settings for individual
       packages.

관련 정보