Meccanismo di Ubuntu / etc / alternatives


28

Sto cercando di capire meglio il meccanismo di Ubuntu / etc / alternatives. Le basi sono semplici: consente l'installazione di più "provider" sulla stessa macchina e configura l'impostazione predefinita. Ad esempio se hai Java SE 5 e Java SE 6 installati / etc / alternatives che è il tuo JRE predefinito.

Cosa vorrei capire:

  1. Esiste un registro centrale in cui vengono aggiunte le opzioni?
  2. Quando si crea un pacchetto, come posso configurare un pacchetto particolare come alternativa? Posso renderlo predefinito?

Risposte:


20

Dopo, si crea un'alternativa usando l' opzione --install del comando update-alternatives . È possibile aggiungere questo comando agli script post-installazione del pacchetto se si desidera registrare un pacchetto come alternativa.

Puoi rendere il tuo pacchetto predefinito all'installazione tramite l' opzione --set o mettendo il gruppo alternativo in modalità automatica e assicurando che il tuo pacchetto abbia la massima priorità.

Non esiste un repository centrale, solo le due due directory utilizzate da questo comando:

   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.

Snippet rilevanti della pagina man 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.
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.