HOWTO manually install JAVA and MINECRAFT

How to do things, solutions, recipes, tutorials
Post Reply
Message
Author
linuxcbon
Posts: 1312
Joined: Thu 09 Aug 2007, 22:54

HOWTO manually install JAVA and MINECRAFT

#1 Post by linuxcbon »

HOWTO manually install JAVA and MINECRAFT

2 guides for the price of one : :)

Download Java from web site :
http://www.java.com/en/download/linux_manual.jsp
- If your linux is 32 bits : Linux (for example jre-8u73-linux-i586.tar.gz)
- If your linux is 64 bits : Linux x64 (for example jre-8u73-linux-x64.tar.gz)

Install Java from terminal shell :
for example :

Code: Select all

# tar -xvf jre-8u73-linux-x64.tar.gz
# mkdir /usr/java/
# mv jre1.8.0_73/ /usr/java/
# ln -s /usr/java/jre1.8.0_73/bin/* /usr/bin/
Download Minecraft.jar from :
https://minecraft.net/download

Run it from console :

Code: Select all

# java -jar Minecraft.jar
PS : to create a new account, it will not work from Minecraft
It is better to create an account directly in a browser at https://account.mojang.com/

Jaso
Posts: 9
Joined: Sat 30 Apr 2016, 06:13

Can't wait to get this to work

#2 Post by Jaso »

I followed these institutions to the letter. The Java installed to /use/Java/ but Minecraft did not run after console root# java -jar Minecraft.jar. I checked my pwd, is there some reason why this wouldn't work on tharpup 6.0.5(solved). I must have typed it wrong. It is working now. I hope I didn't reply in the wrong place. Sorry if that is the case.

User avatar
takenp
Posts: 101
Joined: Wed 05 Aug 2015, 23:27
Location: Moskva
Contact:

Re: HOWTO manually install JAVA and MINECRAFT

#3 Post by takenp »

Code: Select all

# tar -xvf jre-8u73-linux-x64.tar.gz
# mkdir /usr/java/
# mv jre1.8.0_73/ /usr/java/
# ln -s /usr/java/jre1.8.0_73/bin/* /usr/bin/

I'd like to confirm that the instruction still works!
Just have launched the Minecraft for my kids ;)

Post Reply