Por que estou vendo dois caminhos java em 'update-alternatives --config java'

0

quando digito sudo update-alternatives --config java in termainl recebo a seguinte saída: -

$ sudo update-alternatives --config java
There are 3 choices for the alternative java (providing /usr/bin/java).

  Selection    Path                                            Priority   Status
------------------------------------------------------------
* 0            /usr/lib/jvm/java-9-oracle/bin/java              1091      auto mode
  1            /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java   1081      manual mode
  2            /usr/lib/jvm/java-8-oracle/jre/bin/java          1081      manual mode
  3            /usr/lib/jvm/java-9-oracle/bin/java              1091      manual mode

Press <enter> to keep the current choice[*], or type selection number: 

Como você pode ver, existem dois caminhos java iguais /usr/lib/jvm/java-9-oracle/bin/java one está na 0th seleção e segundo na 3ª seleção. Porque isto é assim?? porque eu não estou vendo isso para openjdk8 ou java-8-oracle ??

    
por noone 12.10.2017 / 22:33

1 resposta

1

Eu acredito que quando você executar java --version , você obterá java 9 , mas qual é o seu padrão. Agora update-alternatives apresentará ao sistema várias opções para programas aplicáveis e indicará qual é a opção padrão quando não for selecionada manualmente pelo usuário, por isso as opções auto seen e two para java 9.

Trecho de man update-alternatives :

update-alternatives  creates,  removes, maintains and displays information about the symbolic links comprising
the Debian alternatives system.

It is possible for several programs fulfilling the same or similar functions to be installed on a single  sys‐
   tem  at  the  same  time.   For example, many systems have several text editors installed at once.  This gives
   choice to the users of a system, allowing each to use a different editor, if desired, but makes  it  difficult
   for a program to make a good choice for an editor to invoke if the user has not specified a particular prefer‐
   ence.

Debian's alternatives system aims to solve this problem.  A generic name in the filesystem is  shared  by  all
   files  providing interchangeable functionality.  The alternatives system and the system administrator together
   determine which actual file is referenced by this generic name.  For example, if the text  editors  ed(1)  and
   nvi(1)  are  both installed on the system, the alternatives system will cause the generic name /usr/bin/editor
   to refer to /usr/bin/nvi by default. The system administrator can override this  and  cause  it  to  refer  to
   /usr/bin/ed  instead, and the alternatives system will not alter this setting until explicitly requested to do
   so.

Em outras palavras, ele diz que você tem três opções para java e que uma dessas opções sempre será usada em circunstâncias normais.

    
por George Udosen 12.10.2017 / 22:51