Java não funciona se usado a partir do gnome

0

Quando tento instalar algo (que usa o InstallAnywhere) no terminal do GNOME, eu tenho algo assim:

Preparing to install...
Extracting the JRE from the installer archive...
Unpacking the JRE...
Extracting the installation resources from the installer archive...
Configuring the installer for this system's environment...
No Java virtual machine could be found from your PATH
environment variable.  You must install a VM prior to
running this program.

A solução alternativa é se conectar a localhost via ssh ou alternar para o console com ctrl+alt+f[x] antes de iniciar a instalação.

Chamar java da linha de comando ou whereis java mostra os caminhos adequados.

    
por nervosol 08.05.2013 / 15:14

1 resposta

0

Você pode definir e exportar o PATH e outras variáveis de ambiente no script ~/.xprofile e tornar o java visível para a sessão X. Você deve relogar para o servidor X depois.

export PATH="$PATH:/path_to_jre/bin"

Você também pode ter o mesmo resultado modificando /etc/environment . Você deve reiniciar depois.

PATH="...:/path_to_jre/bin"

Verifique sua variável PATH com o comando env.

env | grep PATH
    
por Grzegorz Żur 08.05.2013 / 22:03