java warnings on linux

1

Olá, estou recebendo avisos depois de ter instalado o java no kubuntu 11.10. Os programas java são executados, mas sempre recebo 4 avisos:

$ java
Warning: no leading - on line 1 of '/usr/lib/jvm/java-6-sun-1.6.0.26/jre/lib/amd64/jvm.cfg'
Warning: missing VM type on line 1 of '/usr/lib/jvm/java-6-sun-1.6.0.26/jre/lib/amd64/jvm.cfg'
Warning: no leading - on line 1 of '/usr/lib/jvm/java-6-sun-1.6.0.26/jre/lib/amd64/jvm.cfg'
Warning: missing VM type on line 1 of '/usr/lib/jvm/java-6-sun-1.6.0.26/jre/lib/amd64/jvm.cfg'

O que estou perdendo? Obrigado antecipadamente!

Aqui está o conteúdo do arquivo /usr/lib/jvm/java-6-sun-1.6.0.26/jre/lib/amd64/jvm.cfg:

/usr/lib/jvm/java-6-sun
#
# %W% %E%
#
# Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
# ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
#
# List of JVMs that can be used as an option to java, javac, etc.
# Order is important -- first in this list is the default JVM.
# NOTE that this both this file and its format are UNSUPPORTED and
# WILL GO AWAY in a future release.
#
# You may also select a JVM in an arbitrary location with the
# "-XXaltjvm=<jvm_dir>" option, but that too is unsupported
# and may not be available in a future release.
#
-server KNOWN
-client IGNORE
-hotspot ERROR
-classic WARN
-native ERROR
-green ERROR
    
por BugShotGG 31.03.2012 / 13:36

2 respostas

0

O problema foi a falta de # na primeira linha antes do arquivo /usr/lib/jvm/java-6-sun in jvm.cfg . Eu não descobri por que estava faltando. Agora está funcionando bem sem nenhum aviso. Obrigado.

    
por 02.04.2012 / 11:13
2

Você já passou pelos seguintes procedimentos?

Abra o terminal e execute os seguintes comandos

Adicione o repositório de parceiros usando o seguinte comando

sudo add-apt-repository “deb http://archive.canonical.com/ lucid partner”

Atualize a lista de fontes

sudo apt-get update

Agora, instale pacotes Sun Java usando os seguintes comandos

sudo apt-get install sun-java6-jre sun-java6-plugin sun-java6-fonts

O comando acima fará o download de todos os pacotes necessários e começará a instalação. Você receberá uma tela contendo a Licença do Distribuidor Sun Operating System para Java e pressione Enter para continuar.

Você verá uma caixa de diálogo perguntando se concorda com os termos da licença DLJ. Selecione Sim e pressione Enter; o JRE terminará a instalação.

Testando o Java Runtime Environment

Você deve confirmar que seu sistema está configurado corretamente para o JRE da Sun. Este é um processo de duas etapas.

Primeiro, verifique se o JRE está instalado corretamente executando o seguinte comando em um terminal.

    
por 31.03.2012 / 13:47

Tags