Então, aqui está como eu funcionei:
@Mitch em um comentário acima foi útil em fornecer um link
na parte inferior desta página, outro comentador criou um arquivo .deb que instalaria o ibm-java-6 e funcionou perfeitamente para mim.
infelizmente, no momento em que este artigo foi escrito, este link está quebrado e as instruções da página anterior também não funcionam. Também no momento em que escrevo, a IBM fornece o JRE para o java 7, mas não o sdk, portanto, se você quiser os dois, precisará seguir as instruções abaixo.
Inscreva-se aqui e baixe o arquivo sdk bin para o java 6
encontre o arquivo bin para "IBM POWER de 32 bits"
certifique-se de alterar o instalador de html
você terá que criar uma conta e entrar, para baixar o arquivo
Tudo o que você precisa fazer é baixar o arquivo sdk porque o JRE está incluído nele
tgz package (InstallAnywhere)
ibm-java-sdk-6.0-13.1-linux-ppc.bin (98 MB)
Depois de baixar este arquivo, eu gosto de colocar todas as instalações do meu repositório não na pasta / opt, mas você pode não se importar, mas é isso que eu vou fazer.
Crie uma nova pasta
sudo mkdir /opt/JavaIBM
copie o java sdk que você baixou para a pasta JavaIBM. Este passo realmente não é completamente necessário.
para descompactar o arquivo bin, tudo que você precisa fazer é executá-lo como faria com qualquer script. Espero que você não tenha desinstalado nenhuma versão anterior do java neste ponto, porque você precisará do java para instalar isto.
torna o arquivo instalável
cd /opt/JavaIBM
sudo chmod a+x <java .bin filename>
execute o script
sudo ./<java .bin filename>
um instalador java irá aparecer e apenas passar pelos prompts.
Em seguida, você terá que atualizar seu sistema para usar o novo Java
Eu vou estar usando as instruções nesta página
Edit the system PATH file /etc/profile and add the following system variables to your system path. Use nano, gedit or any other text editor, as root, open up /etc/profile.
Type/Copy/Paste: sudo gedit /etc/profile
or
Type/Copy/Paste: sudo nano /etc/profile
9
Scroll down to the end of the file using your arrow keys and add the following lines below to the end of your /etc/profile file:
Type/Copy/Paste:
JAVA_HOME=/opt/JavaIBM/ibm-java-ppc-6
PATH=$PATH:$HOME/bin:$JAVA_HOME/bin
JRE_HOME=/opt/JavaIBM/ibm-java-ppc-6/jre
PATH=$PATH:$HOME/bin:$JRE_HOME/bin
export JAVA_HOME
export JRE_HOME
export PATH
10
Save the /etc/profile file and exit.
Observe neste ponto que o sdk e o jre estão na mesma pasta ibm-java-6 A pasta sdk é apenas a pasta principal e a pasta jre é chamada de jre
tenha cuidado
Inform your Ubuntu Linux system where your Oracle Java JDK/JRE is located. This will tell the system that the new Oracle Java version is available for use.
Type/Copy/Paste: sudo update-alternatives --install "/usr/bin/java" "java" "/opt/JavaIBM/ibm-java-6/jre/bin/java" 1
this command notifies the system that Oracle Java JRE is available for use
Type/Copy/Paste: sudo update-alternatives --install "/usr/bin/javac" "javac" "/opt/JavaIBM/ibm-java-6/bin/javac" 1
this command notifies the system that Oracle Java JDK is available for use
Type/Copy/Paste: sudo update-alternatives --install "/usr/bin/javaws" "javaws" "/opt/JavaIBM/ibm-java-6/jre/bin/javaws" 1
this command notifies the system that Oracle Java Web start is available for use
12
Inform your Ubuntu Linux system that Oracle Java JDK/JRE must be the default Java.
Type/Copy/Paste: sudo update-alternatives --set java /opt/JavaIBM/ibm-java-6/jre/bin/java
this command will set the java runtime environment for the system
Type/Copy/Paste: sudo update-alternatives --set javac /opt/JavaIBM/ibm-java-6/bin/java
this command will set the javac compiler for the system
Type/Copy/Paste: sudo update-alternatives --set javaws /opt/JavaIBM/ibm-java-6/jre/bin/javaws
this command will set Java Web start for the system
13
Reload your system wide PATH /etc/profile by typing the following command:
Type/Copy/Paste: . /etc/profile
tenha cuidado para saber onde seus arquivos java foram instalados e que você entenda que o sdk é a pasta raiz que foi criada ibm-ppc-java-6 ou qualquer nome que ele seja e que o jre é a pasta jre dentro de essa pasta ... ambas as pastas têm pastas bin, mas são um pouco diferentes.