{"id":1470,"date":"2021-12-16T12:16:32","date_gmt":"2021-12-16T09:16:32","guid":{"rendered":"https:\/\/files2.tojikon.net\/files-cloud\/2021\/06\/26\/how-to-play-minecraft-on-linux-with-gdlauncher\/https:\/\/files2.tojikon.net\/files-cloud\/2021\/06\/26\/how-to-play-minecraft-on-linux-with-gdlauncher\/"},"modified":"2021-12-16T12:16:32","modified_gmt":"2021-12-16T09:16:32","slug":"how-to-play-minecraft-on-linux-with-gdlauncher","status":"publish","type":"post","link":"https:\/\/tojikon.net\/en\/1470-how-to-play-minecraft-on-linux-with-gdlauncher\/","title":{"rendered":"How to play Minecraft on Linux with GDLauncher"},"content":{"rendered":"<section id=\"related_posts\">\n<div class=\"block-head\">\n<h3>Related Articles<\/h3>\n<\/div>\n<\/section>\n<p>While the official Java Minecraft launcher supports Linux, it isn\u2019t great. If you\u2019d like to use a better launcher on your Linux PC, check out GDLauncher. It\u2019s a sleek, alternative Minecraft launcher that works great on Linux. Here\u2019s how to set it up.<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignnone wp-image-404881 size-full\" src=\"https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-play-minecraft-on-linux-with-gdlauncher.png\" alt=\"Minecraft GDLauncher\" width=\"1200\" height=\"707\" srcset=\"https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-play-minecraft-on-linux-with-gdlauncher.png 1200w, https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-play-minecraft-on-linux-with-gdlauncher-3.png 300w, https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-play-minecraft-on-linux-with-gdlauncher-4.png 1024w, https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-play-minecraft-on-linux-with-gdlauncher-5.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\"\/><\/p>\n<h2>Installing GDLauncher on Linux<\/h2>\n<p>The GDLauncher has excellent Linux support and works on nearly all Linux operating systems through the Flatpak universal package format and AppImage (another universal app format for Linux). In addition, the GDLauncher tool is in the AUR for Arch Linux users to install.<\/p>\n<p>In this section of the guide, we\u2019ll go over the three ways you can get GDLauncher up and running on your Linux system so that you can use it to play Minecraft. To start installing GDLauncher, open up a terminal window by pressing <strong>Ctrl + Alt + T\u00a0<\/strong>on the keyboard or searching for \u201cTerminal\u201d in the app menu. Then, follow the instructions below.<\/p>\n<h3>Flatpak installation instructions<\/h3>\n<p>The best way to get GDLauncher working on Linux is via the Flathub app store as a Flatpak. The reason? Flatpak works on 99% of Linux operating systems and gives updates, so GDLauncher will always be up to date.<\/p>\n<p>To start the installation of GDLauncher via Flatpak, please install the Flatpak runtime. To do that, install the \u201cflatpak\u201d package on your Linux PC. If you are having issues setting up the runtime, please follow this guide on the subject.<\/p>\n<p>After setting up the Flatpak runtime on your computer, you will need to grab the Flathub app store URL and add it to your system. You can do this by using the\u00a0<strong>flatpak remote-add\u00a0<\/strong>command below.<\/p>\n<pre>\nflatpak remote-add --if-not-exists flathub https:\/\/flathub.org\/repo\/flathub.flatpakrepo\n<\/pre>\n<p>Once the Flathub app store is configured, the GDLauncher application can be installed. To set it up on your system, use the following\u00a0<strong>flatpak install\u00a0<\/strong>command below.<\/p>\n<pre>\nsudo flatpak install flathub io.gdevs.GDLauncher\n<\/pre>\n<h3>Arch Linux installation instructions<\/h3>\n<p>The GDLauncher application is available to Arch Linux users in the AUR as a custom package. To start the installation, you will need to set up the\u00a0\u201cbase-devel\u201d and \u201cgit\u201d packages using the\u00a0<strong>pacman\u00a0<\/strong>command.<\/p>\n<pre>\nsudo pacman -S git base-devel\n<\/pre>\n<p>After installing both packages, enter the commands below in succession to set up the Trizen AUR helper application. This program will make installing GDLauncher on Arch Linux a much faster, more straightforward process.\u00a0<\/p>\n<pre>\ngit clone https:\/\/aur.archlinux.org\/trizen.git\ncd trizen\nmakepkg -sri\n<\/pre>\n<p>With Trizen up and running, use the\u00a0<strong>trizen -S\u00a0<\/strong>command to install the app.<\/p>\n<pre>\ntrizen -S gdlauncher-bin\n<\/pre>\n<h3>AppImage installation instructions<\/h3>\n<p>GDLauncher has an AppImage available on their website if you choose to use it. AppImage is sort of like an \u201cEXE\u201d file for Windows but on Linux. To get the app working, use the <strong>wget\u00a0<\/strong>download command below to grab the latest release.\u00a0<\/p>\n<pre>\nwget https:\/\/github.com\/gorilla-devs\/GDLauncher\/releases\/latest\/download\/GDLauncher-linux-setup.AppImage\n<\/pre>\n<p>Next, update the permissions using\u00a0<strong>chmod<\/strong>.<\/p>\n<pre>\nsudo chmod +x GDLauncher-linux-setup.AppImage\n<\/pre>\n<p>From here, open up the Linux file manager and double-click on \u201cGDLauncher-linux-setup.AppImage\u201d to start it up. Or, enter the launch command below.<\/p>\n<pre>\n.\/GDLauncher-linux-setup.AppImage\n<\/pre>\n<h2>Installing Java on Linux<\/h2>\n<p>To play Minecraft on Linux with the GDLauncher, you\u2019ll need to install the Java runtime environment. To do that, open up a terminal window and use the installation instructions to install Java on your Linux OS.<\/p>\n<p>Note: you can also click \u201cAutomatic Setup\u201d in GDLauncher to get Java installed automatically without following the commands below.<\/p>\n<h4>Ubuntu<\/h4>\n<p>On Ubuntu, you can install OpenJDK 11 with the\u00a0<strong>apt\u00a0<\/strong>command below.<\/p>\n<pre>\nsudo apt install openjdk-11-jdk openjdk-11-jre\n<\/pre>\n<h4>Debian<\/h4>\n<p>If you\u2019re on Debian Linux, you can install OpenJDK 8 using the\u00a0<strong>apt-get\u00a0<\/strong>command.<\/p>\n<pre>\nsudo apt-get install openjdk-8-jre openjdk-8-jdk\n<\/pre>\n<h4>Arch Linux<\/h4>\n<p>On Arch Linux, install the latest Java with\u00a0<strong>pacman<\/strong>.<\/p>\n<pre>\nsudo pacman -S jre-openjdk jdk-openjdk\n<\/pre>\n<h4>Fedora<\/h4>\n<p>In Fedora Linux, install Java with the\u00a0<strong>dnf\u00a0<\/strong>command.<\/p>\n<pre>\nsudo dnf install java-11-openjdk\n<\/pre>\n<h4>OpenSUSE<\/h4>\n<p>To get Java working on OpenSUSE, use the\u00a0<strong>zypper<\/strong> command.<\/p>\n<pre>\nsudo zypper install java-11-openjdk\n<\/pre>\n<h2>Using GDLauncher\u00a0<\/h2>\n<p>With Java installed, enter your Mojang account email address and the password. Then, find the \u201cSign In\u201d button, and click on it to sign your account in. After signing in, find the plus icon in the bottom left-hand corner and click on it to add in new instances.<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignnone wp-image-404877 size-full\" src=\"https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-play-minecraft-on-linux-with-gdlauncher-1.png\" alt=\"\" width=\"1200\" height=\"834\" srcset=\"https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-play-minecraft-on-linux-with-gdlauncher-1.png 1200w, https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-play-minecraft-on-linux-with-gdlauncher-6.png 300w, https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-play-minecraft-on-linux-with-gdlauncher-7.png 1024w, https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-play-minecraft-on-linux-with-gdlauncher-8.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\"\/><\/p>\n<p>From here, find the \u201cSelect a version\u201d button, find \u201cVanilla,\u201d and select the version of Minecraft you wish to play. For best results, select the latest release of the game, as it will have the newest features and patches.<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignnone wp-image-404876 size-full\" src=\"https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-play-minecraft-on-linux-with-gdlauncher-2.png\" alt=\"\" width=\"1200\" height=\"723\" srcset=\"https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-play-minecraft-on-linux-with-gdlauncher-2.png 1200w, https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-play-minecraft-on-linux-with-gdlauncher-9.png 300w, https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-play-minecraft-on-linux-with-gdlauncher-10.png 1024w, https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-play-minecraft-on-linux-with-gdlauncher-11.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\"\/><\/p>\n<p>When you\u2019ve selected your version, click on the arrows to return to the main screen and allow GDLauncher to download the game. When the download is complete, choose Minecraft to play your game!<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignnone wp-image-404881 size-full\" src=\"https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-play-minecraft-on-linux-with-gdlauncher.png\" alt=\"\" width=\"1200\" height=\"707\" srcset=\"https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-play-minecraft-on-linux-with-gdlauncher.png 1200w, https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-play-minecraft-on-linux-with-gdlauncher-3.png 300w, https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-play-minecraft-on-linux-with-gdlauncher-4.png 1024w, https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/how-to-play-minecraft-on-linux-with-gdlauncher-5.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\"\/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Related Articles While the official Java Minecraft launcher supports Linux, it isn\u2019t great. If you\u2019d like to use a better launcher on your Linux PC, check out GDLauncher. It\u2019s a sleek, alternative Minecraft launcher that works great on Linux. Here\u2019s how to set it up. Installing GDLauncher on Linux The GDLauncher has excellent Linux support &hellip;<\/p>\n","protected":false},"author":1,"featured_media":1471,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[21],"tags":[33],"_links":{"self":[{"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/posts\/1470"}],"collection":[{"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/comments?post=1470"}],"version-history":[{"count":0,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/posts\/1470\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/media\/1471"}],"wp:attachment":[{"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/media?parent=1470"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/categories?post=1470"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/tags?post=1470"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}