web-dev-qa-db-fra.com

Minecraft Launcher ne fonctionne pas à Lubuntu 18.04 LTS

J'exécute minecraft.jar via Java 8 Oracle et c'est ce que le programme de lancement me fournit:

Bootstrap (v5)
Current time is May 2, 2018 12:13:19 PM
System.getProperty('os.name') == 'Linux'
System.getProperty('os.version') == '4.15.0-20-generic'
System.getProperty('os.Arch') == 'AMD64'
System.getProperty('Java.version') == '1.8.0_171'
System.getProperty('Java.vendor') == 'Oracle Corporation'
System.getProperty('Sun.Arch.data.model') == '64'

Downloading: https://s3.amazonaws.com/Minecraft.Download/launcher/launcher.pack.lzma
Exception: javax.net.ssl.SSLException: Java.lang.RuntimeException: Unexpected error: Java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty

Unable to download remote file. Check your internet connection/proxy settings.
FATAL ERROR: net.minecraft.bootstrap.FatalBootstrapError: Unable to download while being forced
    at net.minecraft.bootstrap.Bootstrap.execute(Bootstrap.Java:95)
    at net.minecraft.bootstrap.Bootstrap.main(Bootstrap.Java:381)
...    
Please fix the error and restart.

Comment dois-je procéder?

3
Tyler Pluim

C’est aussi l’erreur qui me saute aux yeux ... Le problème est que buntu 18.04 LTS a Java JDK 11, Minecraft ne peut pas exécuter cela. version de Java ...

La meilleure option serait d’installer le ( Minecraft Premium Snap Launcher .

Tout d’abord, assurez-vous d’avoir installé le support logiciel enfichable:

Sudo apt-get update
Sudo apt-get install snapd

Vous devez vous déconnecter et vous reconnecter si ceci nouvellement installé snapd, car il ajoute un nouveau script d'initialisation du shell qui inclut les emplacements nécessaires dans votre variable d'environnement PATH. Sans cela, la commande snap ne sera pas trouvée.

Sudo snap install minecraft

Et l’autre option serait de revenir à Ubuntu 16.04 (tant qu’il est supporté), qui est toujours livré avec Java 8.

5
Antonio Duatz

Type

Sudo snap install minecraft

dans le terminal pour l'installer. Pas besoin de passer par les tracas JDK/JVM.

0
HattinGokbori87