Механізм альтернатив Ubuntu / etc /


28

Я намагаюся краще зрозуміти механізм альтернатив Ubuntu / etc /. Основи прості: вони дозволяють встановлювати на одній машині кілька "провайдерів", а також налаштовує, що є типовим. Наприклад, якщо у вас встановлені Java SE 5 і Java SE 6 / ручки альтернатив, які є вашим JRE за замовчуванням.

Що я хотів би зрозуміти:

  1. Чи є центральний реєстр, в який додаються параметри?
  2. Як створювати пакет, як я можу налаштувати певний пакет як альтернативу? Чи можу я зробити його за замовчуванням?

Відповіді:


20

Afaik, ви створюєте альтернативу, використовуючи параметр --install команди update-alternative . Ви можете додати цю команду до сценаріїв після встановлення пакета, якщо ви хочете зареєструвати пакунок як альтернативу.

Ви можете зробити свій пакет за замовчуванням при встановленні через опцію --set або встановивши альтернативну групу в автоматичному режимі та забезпечивши, щоб ваш пакет мав найвищий пріоритет.

Немає центрального сховища, лише два каталоги, які використовуються цією командою:

   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.

Відповідні фрагменти сторінки "Параметри оновлення ":

   --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.
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.