Mecanismo / etc / alternativas de Ubuntu

28

Estoy tratando de entender mejor el mecanismo / etc / alternative de Ubuntu. Los conceptos básicos son fáciles: permite la instalación de múltiples "proveedores" en la misma máquina y configura cuál es el valor predeterminado. Por ejemplo, si tiene Java SE 5 y Java SE 6 instalados / etc / alternative maneja cuál es su JRE predeterminado.

Lo que me gustaría entender:

  1. ¿Existe un registro central en el que se agregan las opciones?
  2. Al crear un paquete, ¿cómo puedo configurar un paquete en particular como alternativa? ¿Puedo hacer que sea el predeterminado?
adureza
fuente

Respuestas:

20

Afaik, crea una alternativa usando la opción --install del comando update-alternative . Puede agregar este comando a las secuencias de comandos posteriores a la instalación del paquete si desea registrar un paquete como alternativa.

Puede hacer que su paquete sea el predeterminado en la instalación a través de la opción --set o poniendo el grupo alternativo en modo automático y asegurándose de que su paquete tenga la máxima prioridad.

No hay un depósito central, solo los dos dos directorios utilizados por este 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.

Fragmentos relevantes de la página de manual de actualización-alternativas :

   --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.
nagul
fuente