터미널을 통해 개별 앱을 업데이트하는 방법


19

모든 응용 프로그램을 업데이트하지 않고 Firefox 만 업데이트하고 싶습니다. 그리고 터미널을 통해하고 싶습니다. 가능합니까? 인터넷 연결이 느리기 때문입니다.

그놈 데스크탑 환경에서 Ubuntu 15.04를 사용하고 있습니다.

답변:


19

Firefox 만 단독으로 업그레이드하려면 :

sudo apt-get dist-upgrade firefox

또는

sudo apt-get upgrade firefox

...에서 man 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.

2
명령을 사용할 때 sudo apt-get upgrade wputwput뿐만 아니라 모든 프로그램을 업그레이드했습니다. 업그레이드가 무엇인지에 대한 설명을 보았지만 이것이 지정된 프로그램을 업그레이드하는 것만은 아닙니다 (적어도 모든 경우는 아님).
Battousai 2016 년

1
테스트했습니다 sudo apt-get dist-upgrade firefox. 모든 프로그램을 업데이트하므로 문제를 해결하지 못합니다. Firefox 앱만 sudo apt-get --only-upgrade install firefox업데이트 하고 문제를 해결합니다.
Ugnius Malūkas

@ UgniusMalūkas : 적어도 이것이 사실이라고 확신합니다. 어떤 버전의 Ubuntu를 테스트하고 있습니까? 그런 깃발이 있다는 것을 기억하지 못합니다. 하지만 지금 아치 위에 있으므로 apt-get변경되었을 수 있습니다.

@ParanoidPanda : 솔직히 말해서, 나는 리눅스 민트에 18.2을 테스트 한
Ugnius Malūkas

9

터미널 유형에서 Firefox 만 업그레이드하려면 다음을 수행하십시오.

sudo apt upgrade firefox  

위의 명령은 --only-upgrade옵션 없이 작동합니다 . Firefox가 이미 최신 버전 인 경우 명령은 새 패키지를 설치하지 않으며 다음 메시지가 표시됩니다.

firefox is already the newest version.

패키지 가 이미 설치된 경우 --only-upgrade매개 변수 없이 만 작동합니다 . 추가 매개 변수는 Firefox가 아직 설치되지 않은 경우에만 설치하지 못하게하지만 여기서는 그렇지 않으므로 여기서 생략 할 수 있습니다. sudo apt-get install firefoxfirefox
바이트 사령관

두 가지 모두 옳습니다 .- 업그레이드 만하고 시도하지 않고 모두 시도했습니다. 감사합니다
RonnieDroid

0

최신 버전의 패키지로 업그레이드하려면 다음과 같이하십시오 (이미 시도했습니다).

sudo apt install google-chrome-stable

0
sudo apt-get install firefox

firefox최신 버전으로 만 업그레이드 됩니다.

자세한 내용 man apt-get은 설치 섹션을 참조하십시오.

설치

또한 시스템에있는 모든 패키지를 업그레이드하지 않고 이미 설치된 하나 이상의 패키지를 업그레이드하려는 경우 사용할 대상입니다.
현재 설치된 모든 패키지의 최신 버전을 설치하는 "업그레이드"대상과 달리 "install"은 지정된 패키지의 최신 버전 만 설치합니다.
업그레이드하려는 패키지 이름을 제공하기 만하면 최신 버전을 사용할 수있는 경우 해당 패키지 (및 위에서 설명한 종속성)가 다운로드되어 설치됩니다.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.