Ainda não tenho certeza se isso corrigirá meu problema de impressão, mas estou tentando reverter meu Java em uma versão de 32 bits, depois de descobrir meu Java de 64 bits não se comunica com o CUPS . (Ubuntu 15.10 64 bits)
sudo apt-get install openjdk-8-jdk:i386
Agora tenho um Java de 32 bits. java -version
retorna
openjdk version "1.8.0_66-internal"
OpenJDK Runtime Environment (build 1.8.0_66-internal-b17)
OpenJDK Server VM (build 25.66-b17, mixed mode)
Mas não consigo instalar o OpenJFX para 32 bits
sudo apt-get install openjfx
ou
sudo apt-get install openjfx:i386'
openjfx
instala a versão de 64 bits, tornando-a invisível para os programas de 32 bits.
The following NEW packages will be installed:
libgconf2-4 libopenjfx-java libopenjfx-jni openjdk-8-jre
openjdk-8-jre-headless openjfx
openjfx:i386
requer um libopenjfx-java:i386
que "não pode ser instalado"
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
openjfx:i386 : Depends: libopenjfx-java:i386 but it is not installable
E: Unable to correct problems, you have held broken packages.
Eu tentei sudo apt-get install libopenjfx-java:i386
Package libopenjfx-java:i386 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'libopenjfx-java:i386' has no installation candidate
sudo apt-get update
foi a primeira coisa que fiz depois de ler o acima, mas recebo a mesma resposta
Esta é a primeira vez que uso :i386
e não tenho ideia do que mais posso fazer para que isso funcione. Alguma idéia?