모든 응용 프로그램을 업데이트하지 않고 Firefox 만 업데이트하고 싶습니다. 그리고 터미널을 통해하고 싶습니다. 가능합니까? 인터넷 연결이 느리기 때문입니다.
그놈 데스크탑 환경에서 Ubuntu 15.04를 사용하고 있습니다.
모든 응용 프로그램을 업데이트하지 않고 Firefox 만 업데이트하고 싶습니다. 그리고 터미널을 통해하고 싶습니다. 가능합니까? 인터넷 연결이 느리기 때문입니다.
그놈 데스크탑 환경에서 Ubuntu 15.04를 사용하고 있습니다.
답변:
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.
sudo apt-get dist-upgrade firefox
. 모든 프로그램을 업데이트하므로 문제를 해결하지 못합니다. Firefox 앱만 sudo apt-get --only-upgrade install firefox
업데이트 하고 문제를 해결합니다.
apt-get
변경되었을 수 있습니다.
터미널 유형에서 Firefox 만 업그레이드하려면 다음을 수행하십시오.
sudo apt upgrade firefox
위의 명령은 --only-upgrade
옵션 없이 작동합니다 . Firefox가 이미 최신 버전 인 경우 명령은 새 패키지를 설치하지 않으며 다음 메시지가 표시됩니다.
firefox is already the newest version.
--only-upgrade
매개 변수 없이 만 작동합니다 . 추가 매개 변수는 Firefox가 아직 설치되지 않은 경우에만 설치하지 못하게하지만 여기서는 그렇지 않으므로 여기서 생략 할 수 있습니다. sudo apt-get install firefox
firefox
sudo apt-get install firefox
firefox
최신 버전으로 만 업그레이드 됩니다.
자세한 내용 man apt-get
은 설치 섹션을 참조하십시오.
설치
또한 시스템에있는 모든 패키지를 업그레이드하지 않고 이미 설치된 하나 이상의 패키지를 업그레이드하려는 경우 사용할 대상입니다.
현재 설치된 모든 패키지의 최신 버전을 설치하는 "업그레이드"대상과 달리 "install"은 지정된 패키지의 최신 버전 만 설치합니다.
업그레이드하려는 패키지 이름을 제공하기 만하면 최신 버전을 사용할 수있는 경우 해당 패키지 (및 위에서 설명한 종속성)가 다운로드되어 설치됩니다.
sudo apt-get upgrade wput
wput뿐만 아니라 모든 프로그램을 업그레이드했습니다. 업그레이드가 무엇인지에 대한 설명을 보았지만 이것이 지정된 프로그램을 업그레이드하는 것만은 아닙니다 (적어도 모든 경우는 아님).