Ubuntu / etc / alternatif mekanizması


28

Ubuntu'nun / etc / alternative mekanizmasını daha iyi anlamaya çalışıyorum. Temel bilgiler kolaydır: aynı makineye birden fazla "sağlayıcı" kurulmasına izin verir ve varsayılan olanı yapılandırır. Örneğin, Java SE 5 ve Java SE 6'nın yüklü / etc / alternative kolları varsa, varsayılan JRE'nizdir.

Neyi anlamak isterdim:

  1. Seçeneklerin eklendiği merkezi bir kayıt var mı?
  2. Bir paket oluştururken, belirli bir paketi alternatif olarak nasıl yapılandırabilirim? Varsayılan ayar yapabilir miyim?

Yanıtlar:


20

Afaik, update-alternatives komutunun --install seçeneğini kullanarak bir alternatif oluşturursunuz . Bir paketi alternatif olarak kaydetmek istiyorsanız, bu komutu paketin yükleme sonrası komut dosyalarına ekleyebilirsiniz.

Paketinizi --set seçeneği ile veya alternatif grubu otomatik moda getirerek ve paketinizin en yüksek önceliğe sahip olmasını sağlayarak kurulum sırasında varsayılanı yapabilirsiniz .

Merkezi bir depo yok, sadece bu komut tarafından kullanılan iki dizin var:

   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.

Güncelleme alternatifleri kılavuz sayfasının alakalı snippet'leri :

   --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.
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.