Mekanisme Ubuntu / etc / alternative

28

Saya mencoba untuk lebih memahami mekanisme Ubuntu / etc / alternative. Dasar-dasarnya mudah: memungkinkan beberapa "penyedia" diinstal pada mesin yang sama, dan mengkonfigurasi mana yang merupakan default. Sebagai contoh jika Anda memiliki Java SE 5 dan Java SE 6 yang terinstal / etc / alternative menangani yang merupakan JRE default Anda.

Apa yang ingin saya pahami:

  1. Apakah ada registri pusat tempat opsi ditambahkan?
  2. Saat membuat paket, bagaimana saya bisa mengkonfigurasi paket tertentu sebagai alternatif? Bisakah saya menjadikannya default?
kemurnian
sumber

Jawaban:

20

Afaik, Anda membuat alternatif menggunakan opsi --install dari perintah pembaruan-alternatif . Anda dapat menambahkan perintah ini ke skrip pasca pemasangan paket jika Anda ingin mendaftarkan paket sebagai alternatif.

Anda dapat menjadikan paket Anda default pada instalasi melalui opsi --set atau dengan meletakkan grup alternatif dalam mode otomatis dan memastikan paket Anda memiliki prioritas tertinggi.

Tidak ada repositori pusat, hanya dua dua direktori yang digunakan oleh perintah ini:

   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.

Cuplikan yang relevan dari halaman manual pembaruan-alternatif :

   --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
sumber