Minecraft on linux fedora

Minecraft on linux fedora

[Edit] So I managed to solve my problem as follows:

  1. See if you already have openJDK with this command: «java -version». If not, install it (version 8 is recommended, but always give preference to the pre-installed version of the system);
  2. I downloaded the .tar.gz package from the official minecraft website and extracted it (getting a binary file);
  3. Then, I moved the binary file to the «usr/bin» folder (the original location where it was located on debian-based installations) and ran it from the terminal using the «minecraft-launcher» command.
  4. After that, I created a «.desktop» file in the «~/.local/share/applications» folder following this tutorial (As long as you have followed step 2 as I said, then your Exec command will be «minecraft-launcher» and the path will be «usr/bin»); and
  5. I installed the menulibre through the software store and edited the launcher icon for minecraft (you don’t need to download one, just go to the «~/.minecraft/launcher/icons/» directory and select «minecraft256.png», that’s just will work if you previously ran the binary, as stated in step 2).
  6. And done, everything should work normally now!

As the title already suggests, I would like to install Minecraft on my new Fedora installation, but there is no package for my system on the official website. I know I could compile it from source, but I find it very annoying to have to do it every time a new launcher version comes out. I also looked at launchers like MultiMC, but it still doesn’t have support for microsoft accounts (something I need).

So I’d like a launcher with:

  • Automatic updates;
  • Built-in Java version;
  • Support for Microsoft Accounts; and
  • Mod-friendly.

What are my possibilities? I prefer the official launcher, but any other launcher who can satisfy these requirements is welcome.

Источник

Install a Minecraft Server on Fedora 26

This article is outdated and may not work correctly for current operating systems or software.

Читайте также:  Виды графической оболочки линукса

Using a Different System?

In this tutorial, I will guide you through setting up a Minecraft server on a high-performance SSD VPS at Vultr. You will learn how to set up a Minecraft server on Fedora 26 x64.

Requirements

Preparation

First, login to your new Fedora server at Vultr and install the required software.

[root@vultr ~]# yum install java-1.8.0-openjdk . Is this ok [y/N]: y 
[root@vultr ~]# yum install screen . Is this ok [y/N]: y 

Open the Minecraft server port (25565) in firewalld :

firewall-cmd --zone=public --permanent --add-port=25565/tcp firewall-cmd --reload 

For security reasons, let’s create a user to run your Minecraft server under. If anyone finds a vulnerability in the server, they will not be able to gain root access on your server.

adduser mcserver # set a secure password. passwd mcserver # this allows you to run screen while su'd from root for the next step chown mcserver `tty` 

Configuration

Lets switch user to mcserver and install Minecraft server! Change the URL accordingly to the newest version of Minecraft.

su - mcserver mkdir minecraft cd minecraft wget -O minecraft_server.jar https://s3.amazonaws.com/Minecraft.Download/versions/1.11.2/minecraft_server.1.11.2.jar chmod +x minecraft_server.jar screen echo "eula=true" > eula.txt # start your Minecraft server java -Xmx768M -Xms768M -jar minecraft_server.jar nogui 

Congratulations, your Minecraft server is now up and running on a high-performance SSD VPS server!

Notes

To install on a 768MB VPS, follow the same commands above but change the last java command to:

java -Xmx512M -Xms512M -jar minecraft_server.jar nogui 

If you require more players (and thus more RAM) you just launch a larger instance and then simply subtract 256M from the amount of RAM your instance has allocated. For example, a 4096M instance would launch with -XmX3840M -Xms3840M.

If you want a private server, you can specify player names that are allowed to join. To do this, first, start your server:

java -Xmx768M -Xms768M -jar minecraft_server.jar nogui 

Wait for it to finish loading.

. [Server thread/INFO]: Preparing spawn area: 1% [Server thread/INFO]: Preparing spawn area: 36% [Server thread/INFO]: Preparing spawn area: 92% [Server thread/INFO]: Done (3.496s)! For help, type "help" or "?" 

Type the following commands into the console.

whitelist on whitelist add whitelist add . 

Enter your friend’s user name instead of . You can add as many of them as you would like. After this, you will see the following output:

[Server thread/INFO]: Turned on the whitelist [Server thread/INFO]: Added to the whitelist 

If you want to turn the allow list off, simply type whitelist off .

Читайте также:  Linux mint change color

Want to contribute?

You could earn up to $600 by adding new articles.

Источник

Saved searches

Use saved searches to filter your results more quickly

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.

Unofficial Minecraft installer for Fedora and openSUSE

License

DarkWav/Minecraft-Installer-RPM

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Sign In Required

Please sign in to use Codespaces.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching Xcode

If nothing happens, download Xcode and try again.

Launching Visual Studio Code

Your codespace will open once ready.

There was a problem preparing your codespace, please try again.

Latest commit

Git stats

Files

Failed to load latest commit information.

README.md

Unofficial Minecraft installer for Fedora and openSUSE

This is just a quick script to package the official Minecraft launcher into
a rpm package based on the official AUR build script.

While the Script and the Specfile are released under the GGPLv3 all other libraries are still properties of their respective owners!

  • A working Java Installation (preferrably Java 8)
  • A working Internet Connection
  • The following commands must be available:

Installing dependencies in openSUSE (Terminal):

sudo zypper in rpm-build wget bsdtar bash

Installing dependencies in Fedora (Terminal):

sudo dnf in rpm-build wget bsdtar bash

1. Download minecraft-installer.sh
2. Open a Terminal at the location where you downloaded the Installer
3. Make the Installer executable (Type in Terminal):

chmod +x minecraft-installer.sh

5. If you want to install a Launcher Update, just run the Installer again
6. To uninstall the Launcher, run

sudo rpm -e minecraft-launcher

I am not responsible for any harm or damage this script might do to your computer.
While it is possible for this script to work on RHEL / CentOS / SLE / PCLinuxOS / openMandriva / Mageia it is only guaranteed to do so with Fedora and openSUSE.

Читайте также:  Copy all users linux

Current Status for non-supported distros:

  • RHEL: Working
  • CentOS: Working
  • SLE: Working
  • PCLinuxOS: BORKED (libcef.so dependency issue)
  • Mageia: Working
  • openMandriva: Not Tested

About

Unofficial Minecraft installer for Fedora and openSUSE

Источник

Step-by-step – Minecraft Launcher Fedora 37 Installation

GNU/Linux Fedora 37 Installing Minecraft Launcher – Quick-Start Guide

You are Welcome! The Tutorial shows you Step-by-Step How to Install Minecraft Java Edition Flatpak App in Fedora 37 GNU/Linux Desktop.

And Minecraft 3D Sandbox Game developed by Mojang Studios where players interact with a fully modifiable three-dimensional environment made of Blocks and Entities.

Flatpak is a technology for Building, Distributing, Installing and Running Linux Apps.

1. Terminal Getting-Started Guide

Contents

Showing Ads here is the best solution I found for not embarassing somebody about participating in a #%$Foundation^.

«When the Last Tree has been cut down, the Last Fish caught, the Last River poisoned, only then will we realize that One Cannot Eat Money.»

«No usable Computer exists today with completely Open Software and Hardware (as much as some companies want to Market themselves as such).»

Follow Us

The GNU/Linux Free Software Phylosophy

GNU/Linux Logo

Steve Jobs’ Last Words

Steve Jobs Last Words in the Darkness

«Being a Winner in a Free Computing OS Mission means to adopt a Commercial like Strategy. Transcending Duality in Oneness and so dispensing both Free and Non Free Software. Cause evangelizing Freedom in a Non Free World is like keeping a Trojan Horse. Hallelujah!»

«Using the Money just for buying Stuff and Not Supporting the Free Gift Philosophy is a sign of a Selfish and Narrow Mind.»

What can Save the World from a Blind and Quick Self-destruction.
The Immediate and Humble Mass Conversion to the Spiritual Way!
Because Earth & Nature has been Ravaged without Pity by the Wild and Selfish mass Competition to Win and Shown that U’re someone Better because you got a Lot of fla$hY Power$$$.

«Taking care if somebody is liking, following, or buying is just a serious hidrance on the priceless Way of Creative Freedom.»

Credits

Ganesha

Everlasting Glory to God, Jesus Christ, The Holy Spirit, Ganesha, Shiva, Vishnu, Krisna, Laozi, Buddha, Bodhidharma, Ma Gcig, Hakuin, Ikkyu, Nagarjuna, Tilopa, Naropa, Milarepa, Suhrawardi, St Dismas, St Francesco, St Teresa, St John, St Filippo, Eckehart. All The Holy Divinities, Avatars, Saints, Mystics, and True Spiritual Masters. Because they are in the Eternal Light of Truth & Delight Enlightening a World of Darkness, Nescience, Blindness, Uneasiness and Falsehood!

Источник

Оцените статью
Adblock
detector