/ usr / bin / java: Nenhum arquivo ou diretório [fechado]

0

Eu segui todo o post mas não consegui resolver este problema:

Por engano, apaguei o /usr/bin/java . Depois de instalar muitos tempos, continuo recebendo este erro.

Depois de executar update-alternatives --display java , estou recebendo:

update-alternatives: error: no alternatives for java
    
por Gaurav Singh 02.06.2017 / 21:09

1 resposta

2

Em um terminal, execute o seguinte:

update-java-alternatives -l | awk '{ print $1; }'

Escolha uma das opções listadas e execute:

sudo update-java-alternatives -s the-option-you-chose
    
por Chai T. Rex 03.06.2017 / 19:17