How to Install Minecraft on Linux ?
Last Updated :
08 Oct, 2024
Minecraft is one of the most popular sandbox video games developed by Mojang, originally created by Markus "Notch" Persson using the Java programming language. If you're an experienced gamer or new to the Minecraft world, playing it on Linux is easy with the right instructions.
Here, we will walk you through the process of downloading and installing Minecraft on Linux systems, including Ubuntu, Debian, and other Linux distributions.
System Requirements for Minecraft on Linux
If you don't have OpenJDK installed, then install it by entering the following commands in Terminal.
1. For Ubuntu/Debian users:
sudo apt-get install openjdk-8-jdk

2. For Other Linux Distributions:
su -c "yum install java-1.8.0-openjdk"
Check your java version by entering the following commands in Terminal:
java -version
javac -version

Steps to Download and Install Minecraft using Terminal
For other Linux distribution users:
Step 1: Download the Minecraft.tar.gz archive from their official website using wget.
wget https://launcher.mojang.com/download/Minecraft.tar.gz

Step 2: Extract the downloaded archive.
tar -xvf Minecraft.tar.gz

Step 3: Go to the newly created folder after extracting and start up the launcher.
cd minecraft-launcher
./minecraft-launcher

For Ubuntu/Debian users:
Step 1: Download the Minecraft.deb file from their official website using wget.
wget https://launcher.mojang.com/download/Minecraft.deb

Step 2: Install the downloaded package.
sudo dpkg -i Minecraft.deb

Step 3: To solve dependency issues, enter the following command.
sudo apt -f install

Step 4: Start up the launcher.
minecraft-launcher

Setting Up Minecraft Game Files on Linux
The following steps represent the remaining steps to installing Minecraft game files and are common for every Linux distribution user.
Step 1: After starting up the launcher, click on either Microsoft Login/Mojang Login to authenticate your account containing a license.

Step 2: Click on Play/Play Demo depending on your License.

Step 3: This will start by downloading the latest release of Minecraft(Java Edition) from Minecraft Servers.

Step 4: After downloading is over, click on Play Demo again to start the game.

Step 5: Click on Play/Play Demo World to load Minecraft World.

Conclusion
Installing Minecraft on Linux is easy and opens up a world of endless gaming possibilities. If you’re on Ubuntu, Debian, or another Linux distribution, following these steps ensures a seamless installation and setup process. Once installed, you can enjoy everything Minecraft has to offer, from creative mode to survival adventures. With Java 8 installed, you’re just a few clicks away from starting your Minecraft journey on Linux.
Similar Reads
How to Install .NET on Linux?
.NET is a free, cross-platform, open-source developer platform for building many different types of applications.With .NET you can build various kinds of applications including :Web ApplicationMobile AppsDesktop AppsGamesIOTYou can write .NET apps in one of the following languages :Â C#F#Visual basic
1 min read
How To Install Microsoft Edge On Linux?
Want to set up Microsoft Edge on a Linux system? Linux users may now access Microsoft Edge, which was previously only available on Windows. Microsoft Edge for Linux is simple to download and use as your daily browser, regardless of the distribution you're usingâUbuntu, Debian, or another. Regardless
4 min read
How To Install Maven On Linux?
Maven is your software program development sidekick! Maven, crafted using the Apache Software Foundation, is the go-to device for simplifying the complex international of build automation and task management. It's designed to permit you to be conscious of coding while effortlessly managing obligatio
3 min read
How to Install LISP on Linux?
LISP (List programming) is the second-oldest high-level programming language after Fortran. It has a fully parenthesized prefix notation. Installing LISP on Linux:Follow the below steps to install LISP on Linux: Step 1: Install SBCL compiler. Steel Bank Common Lisp (SBCL) is the most common Lisp com
1 min read
How to Install Netbeans on a Linux
NetBeans is an open-source Integrated Development Environment (IDE) primarily for Java programming, but it also supports various other programming languages. It is used to develop mobile applications, desktop applications, and web applications. This guide will help you install NetBeans on a Linux sy
4 min read
How to Install MySQL on Linux?
MySQL is an open-source relational database management system that is based on SQL queries. Here, "My" represents the name of the co-founder Michael Widenius's daughter and "SQL" represents the Structured Query Language. MySQL is used for data operations like querying, filtering, sorting, grouping,
3 min read
How to Install Node.js on Linux
Installing Node.js on a Linux-based operating system can vary slightly depending on your distribution. This guide will walk you through various methods to install Node.js and npm (Node Package Manager) on Linux, whether using Ubuntu, Debian, or other distributions.PrerequisitesA Linux System: such a
6 min read
How to Install Tor on Linux?
Tor browser is a web browser that is designed and developed to protect your privacy online and is mostly famous among normal people as a key for safely accessing hidden or restricted online resources, including those on the dark web. We will see what Tor is and how to install it on your Linux machin
5 min read
How to Install Perl on Linux?
Prerequisite: Introduction to Perl Before, we start with the process of Installing Perl on our System. We must have first-hand knowledge of What the Perl Language is and what it actually does?. Perl is a general-purpose, high level interpreted and dynamic programming language. Perl was originally de
3 min read
How to Install Python on Linux
This guide explains how to install Python on Linux machines. Python has become an essential programming language for developers, data scientists, and system administrators. It's used for various applications, including web development, data science, automation, and machine learning.This comprehensiv
15+ min read