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


21

누군가 "업데이트"는 작은 변화를위한 것이고 "업그레이드"는 큰 변화를위한 것이라고 말합니다. 소프트웨어 업데이트 및 업그레이드에 대해 매우 혼란스러워합니다. 그리고 업데이트를 사용해야 할 때와 업그레이드를 사용해야 할 때.

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

답변:


27

apt-get을 사용하는 우분투 / 데비안 등:

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

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

- 출처 .

그러나 yum을 사용 하는 Red Hat / CentOS 에서는 명령이 찾은 업데이트를 적용 할 것인지 묻습니다.update

$ sudo yum 업데이트

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

 [..] 
 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-upgrade 의 차이를 의미합니다 .

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.

1
최근의 경험에 따르면 Ubuntu 16.04에서 "업그레이드"명령이 "update"명령을 사용하여 어떤 패키지에 업데이트가 있는지 알 수 있지만 "업데이트"를 실행할 때 실제로 어떤 버전이 다운로드되고 설치되는지는 완전히 알지 못합니다 . "업그레이드"명령을 실행하면 "업데이트"명령에 표시된 최신 버전의 업데이트 만 다운로드하여 설치합니다. 따라서 "update"를 실행 한 다음 1 주일 후에 "upgrade"를 실행하면 "update"보다 최신 버전으로 업그레이드 될 수 있습니다.
still_dreaming_1
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.