Mechanizm Ubuntu / etc / alternatives


28

Próbuję lepiej zrozumieć mechanizm Ubuntu / etc / alternatives. Podstawy są proste: pozwala na zainstalowanie wielu „dostawców” na tym samym komputerze i konfiguruje, co jest ustawieniem domyślnym. Na przykład, jeśli masz zainstalowane Java SE 5 i Java SE 6 uchwyty / etc / alternatives, które są twoim domyślnym JRE.

Co chciałbym zrozumieć:

  1. Czy istnieje centralny rejestr, do którego dodano opcje?
  2. Jak podczas tworzenia pakietu mogę skonfigurować konkretny pakiet jako alternatywę? Czy mogę ustawić go jako domyślny?

Odpowiedzi:


20

Afaik, tworzysz alternatywę za pomocą opcji --install polecenia update-alternatives . Możesz dodać to polecenie do skryptów poinstalacyjnych pakietu, jeśli chcesz zarejestrować pakiet jako alternatywę.

Możesz ustawić swój pakiet jako domyślny podczas instalacji za pomocą opcji --set lub przełączając alternatywną grupę w tryb automatyczny i upewniając się, że pakiet ma najwyższy priorytet.

Nie ma centralnego repozytorium, tylko dwa dwa katalogi używane przez to polecenie:

   alternatives directory
          A directory, by default /etc/alternatives, containing the symlinks.

   administrative directory
          A directory, by default /var/lib/dpkg/alternatives, containing update-alternatives’ state  infor‐
          mation.

Odpowiednie fragmenty strony podręcznika update-alternatives :

   --install genname symlink altern priority [--slave genname symlink altern]...
          Add a group of alternatives to the system.  genname is the generic name for the master link, sym‐
          link is the name of its symlink in the alternatives directory,  and  altern  is  the  alternative
          being  introduced for the master link.  The arguments after --slave are the generic name, symlink
          name in the alternatives directory and the alternative for a slave link.  Zero  or  more  --slave
          options, each followed by three arguments, may be specified.

          If the master symlink specified exists already in the alternatives system’s records, the informa‐
          tion supplied will be added as a new set of alternatives for the group.  Otherwise, a new  group,
          set  to  automatic mode, will be added with this information.  If the group is in automatic mode,
          and the newly added alternatives’ priority is higher than any other  installed  alternatives  for
          this group, the symlinks will be updated to point to the newly added alternatives.


   --set name path
          Set the program path as alternative for name.  This is equivalent to --config but is non-interac‐
          tive and thus scriptable.

   --auto link
          Switch the master symlink link to automatic mode.  In the process, this symlink  and  its  slaves
          are updated to point to the highest priority installed alternatives.
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.