2017-02-26 21:30:46 +00:00
+++
title = "Minecraft"
+++
2017-02-03 08:38:34 +00:00
# Minecraft
2017-01-05 02:56:10 +00:00
[Minecraft ](https://minecraft.net ) is a sandbox independent video game originally created by Swedish programmer Markus "Notch" Persson and later developed and published by the Swedish company Mojang.
2017-02-10 13:44:43 +00:00
{{< altimg " minecraft . jpg " " help-center / gaming / minecraft / " > }}
2017-01-05 02:56:10 +00:00
2017-02-03 08:38:34 +00:00
## Installation
2017-01-05 02:56:10 +00:00
Install Java and Minecraft:
``` bash
sudo eopkg it openjdk-8
sudo mkdir -p /opt/minecraft
sudo wget https://s3.amazonaws.com/Minecraft.Download/launcher/Minecraft.jar -O /opt/minecraft/Minecraft.jar
```
Now we can create a desktop icon for it:
2017-02-10 17:45:09 +00:00
``` bash
sudo gedit /usr/share/applications/minecraft.desktop
```
2017-01-05 02:56:10 +00:00
Paste in the following and save it:
2017-02-25 20:23:57 +00:00
``` ini
2017-01-05 02:56:10 +00:00
[Desktop Entry]
Version=1.0
Type=Application
Name=Minecraft
Comment=Minecraft Launcher
Icon=minecraft
Exec=java -jar Minecraft.jar
Path=/opt/minecraft/
NoDisplay=false
Categories=Game;
StartupNotify=false
Terminal=false
```
2017-05-19 10:21:05 +00:00
### Budgie
If you are using Budgie, it may be necessary to update the entries in Budgie Menu. You can do so with:
2017-01-05 02:56:10 +00:00
2017-02-10 17:45:09 +00:00
``` bash
sudo update-desktop-database
2017-05-19 10:21:05 +00:00
```