web-dev-qa-db-fra.com

Tenir l'ancienne version d'un paquet?

J'ai ajouté un référentiel apt pour CRAN (R) afin d'obtenir une version plus ancienne (3.3).

apt-get install r-base-core=3.3.1trusty0

- La seule chose dont j'ai peur maintenant est de faire apt-get update/upgrade va faire exploser cette version et mes affaires vont casser. Existe-t-il un moyen de faire en sorte que apt conserve cette ancienne version et ne la mette jamais à niveau, même si vous mettez à niveau quelque chose d'autre?

2
Wells

Vous pouvez utiliser apt-mark pour conserver un paquet. La commande devrait être

apt-mark hold <packagename>

De apt-mark

apt 1.2.26 (AMD64)
Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]

apt-mark is a simple command line interface for marking packages
as manually or automatically installed. It can also be used to
manipulate the dpkg(1) selection states of packages, and to list
all packages with or without a certain marking.

Most used commands:
  auto - Mark the given packages as automatically installed
  manual - Mark the given packages as manually installed
  hold - Mark a package as held back
  unhold - Unset a package set as held back
  showauto - Print the list of automatically installed packages
  showmanual - Print the list of manually installed packages
  showhold - Print the list of package on hold

See apt-mark(8) for more information about the available commands.
Configuration options and syntax is detailed in apt.conf(5).
Information about how to configure sources can be found in sources.list(5).
Package and version choices can be expressed via apt_preferences(5).
Security details are available in apt-secure(8).

J'espère que cela t'aides!

2
Terrance