Jstock: / usr / bin não existe mesmo se existir

0

Ubuntu: 14.04.4 LTS
Versão Java: 1.8.0_74

Eu instalei o Jstock (1.0.7.13) via isso: link
Então eu inicio o programa via ./jstock.sh

Quando eu começo o Jstock, obtenho:

Warning: /usr/bin does not exist

Então o programa começa.

Mesmo que a pasta obviamente exista, também encontrei /usr/share/java , então isso também existe.
Quando digito whereis java , diz:

java: /usr/bin/java /usr/bin/X11/java /usr/share/java /usr/share/java /usr/share/man/man1/java.1.gz

O arquivo jstock.sh diz:

#!/bin/bash
#
# Normally, editing this script should not be required.
# Only case is to set up JAVA_HOME if it's not already defined.
#
# To specify an alternative JVM, edit and uncomment the following 
# line and change the path accordingly.
#JAVA_HOME=/usr/share/java

_JAVA_EXEC="java"
if [ -n $JAVA_HOME ] ; then
    _TMP="$JAVA_HOME/usr/bin"
    if [ -f "$_TMP" ] ; then
        if [ -x "$_TMP" ] ; then
            _JAVA_EXEC="$_TMP"
        else
            echo "Warning: $_TMP is not executable"
        fi
    else
        echo "Warning: $_TMP does not exist"
    fi
fi
if ! which "$_JAVA_EXEC" >/dev/null ; then
    echo "Error: No Java Runtime Environment found"
    echo "Please set the environment variable JAVA_HOME to the root       directory of your SUN Java installation, e.g. by editing the 7th line in this     launcher script."
    exit 1
fi

#
# Resolve the location of the JStock installation.
# This includes resolving any symlinks.
PRG=$0
while [ -h "$PRG" ]; do
    ls='ls -ld "$PRG"'
    link='expr "$ls" : '^.*-> \(.*\)$' 2>/dev/null'
    if expr "$link" : '^/' 2> /dev/null >/dev/null; then
        PRG="$link"
    else
        PRG="'dirname "$PRG"'/$link"
    fi
done

JSTOCK_BIN='dirname "$PRG"'
cd "${JSTOCK_BIN}"

_VMOPTIONS="-Xms64m -Xmx512m"
$_JAVA_EXEC $_VMOPTIONS -jar jstock.jar

O programa funciona bem, mas como quero usá-lo na realidade, quero que o programa funcione totalmente, sem nenhum erro.

btw: Como posso escrever aqui como um ser humano normal? Eu fiz espaços estranhos para evitar escrever tudo em uma linha. Thx!

    
por JonnyPython 01.03.2016 / 19:25

1 resposta

1

Alterar a linha _TMP="$JAVA_HOME/usr/bin para _TMP="$JAVA_HOME/usr/bin/java funciona para mim.

    
por zhjermia 10.08.2016 / 17:33