<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.muhro.eu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Kimikz</id>
	<title>MuhRO - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.muhro.eu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Kimikz"/>
	<link rel="alternate" type="text/html" href="https://wiki.muhro.eu/Special:Contributions/Kimikz"/>
	<updated>2026-08-18T13:26:53Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://wiki.muhro.eu/index.php?title=How_To_Play_on_Linux&amp;diff=61957</id>
		<title>How To Play on Linux</title>
		<link rel="alternate" type="text/html" href="https://wiki.muhro.eu/index.php?title=How_To_Play_on_Linux&amp;diff=61957"/>
		<updated>2026-08-14T22:14:19Z</updated>

		<summary type="html">&lt;p&gt;Kimikz: /* Creating an Application Desktop/Menu Entry */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is heavily work in progress! If you have additional Informations, feel free to add it or inform the Team about it.&lt;br /&gt;
&lt;br /&gt;
===Requirements===&lt;br /&gt;
[https://www.winehq.org/ Wine]&amp;lt;br&amp;gt;&lt;br /&gt;
webkit2gtk4.0&lt;br /&gt;
&lt;br /&gt;
== Pre-Requisite Installations ==&lt;br /&gt;
&lt;br /&gt;
==== Wine ====&lt;br /&gt;
Fedora/RHEL: &amp;lt;code&amp;gt;sudo dnf install wine&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Arch Linux: &amp;lt;code&amp;gt;sudo pacman -S wine&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Debian/Ubuntu/Pop_OS/Mint: &amp;lt;code&amp;gt;sudo apt install wine&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your distribution has a outdated Wine version Download Wine by going to [https://wiki.winehq.org/Download this link] and follow the instructions for your specific Linux distribution to install.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Webkit2gtk4.0 ====&lt;br /&gt;
Some distributions do not include this dependency and must install it manually. The patcher will not launch if this dependency is not installed.&amp;lt;br /&amp;gt;&lt;br /&gt;
Fedora/RHEL: &amp;lt;code&amp;gt;sudo dnf install webkit2gtk3-devel&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Arch Linux : &amp;lt;code&amp;gt;sudo pacman -S webkit2gtk webkit2gtk-4.1&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Installing MuhRO ==&lt;br /&gt;
If you haven&#039;t already, [https://muhro.eu/?module=account&amp;amp;action=create create a master account] and confirm your email address. &lt;br /&gt;
&lt;br /&gt;
Once you have a master account, and verified through discord, you can download MuhRO by entering &amp;lt;code&amp;gt;/download&amp;lt;/code&amp;gt; (typed, not pasted) in any discord channel.&lt;br /&gt;
&lt;br /&gt;
[[File:Download-command.png|394x394px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Download the Full Client using the mirror of your choice.&lt;br /&gt;
&lt;br /&gt;
Extract the zip file to the location you would like to store the game on your computer.&lt;br /&gt;
&lt;br /&gt;
Navigate to the folder you extracted and double click on Muh_Patcher. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;You may have to go to files properties and mark it as executable in the permissions tab before it will launch.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Muh Patcher.png|598x598px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The first time that you launch it you will need to click Game Setup on the left hand menu.&lt;br /&gt;
&lt;br /&gt;
[[File:Game Setup Option.png|545x545px]]&lt;br /&gt;
&lt;br /&gt;
Configure your settings in the Game Setup menu. Click Apply, then click OK.&lt;br /&gt;
&lt;br /&gt;
[[File:Game Setup Menu.png|394x394px]]&lt;br /&gt;
&lt;br /&gt;
Enter your Master Account Login and select your character account to begin playing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Creating an Application Desktop/Menu Entry ==&lt;br /&gt;
Create a new text file named MuhRO.desktop in &amp;lt;code&amp;gt;~/.local/share/applications&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Enter the following into the text file and save it. Make sure to replace &#039;&#039;PATH TO FOLDER CONTAINING GAME FILES&#039;&#039; with the path to the folder containing your game files (ideally a location without spaces in the folder).&lt;br /&gt;
&amp;lt;code style=&amp;quot;display: block; white-space: pre&amp;quot;&amp;gt;[Desktop Entry]&lt;br /&gt;
Comment=MuhRO&lt;br /&gt;
Exec=env WINEDEBUG=-all /PATH/TO/FOLDER/CONTAINING/GAME-FILES/Muh_Patcher&lt;br /&gt;
Icon=/PATH/TO/FOLDER/CONTAINING/GAME-FILES/muhro.ico&lt;br /&gt;
Name=MuhRO&lt;br /&gt;
Path=/PATH/TO/FOLDER/CONTAINING/GAME-FILES/&lt;br /&gt;
StartupNotify=true&lt;br /&gt;
Terminal=false&lt;br /&gt;
Type=Application&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Make the file executable by either opening the files properties and marking it as executable in the permissions tab or run the following in terminal.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;chmod +x ~/.local/share/applications/MuhRO.desktop&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You may have to log out and back in to see the start menu entry.&lt;br /&gt;
&lt;br /&gt;
== Known Problems ==&lt;br /&gt;
====Bad performance====&lt;br /&gt;
Using dxvk can often give significant performance benefits. To use it, follow these steps:&lt;br /&gt;
&lt;br /&gt;
* Start the patcher&lt;br /&gt;
* On the left side, click on &amp;quot;Addons&amp;quot;&lt;br /&gt;
* Find &amp;quot;Renderer&amp;quot; and set it to &amp;quot;dxvk&amp;quot;&lt;br /&gt;
* Done! You can now launch the game&lt;br /&gt;
&lt;br /&gt;
[[File:Patcher-addons-dxvk.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
====Performance on hybrid graphics====&lt;br /&gt;
When running hybrid graphics (e.g. onboard graphics + dedicated nvidia GPU), the following environment variables may help when launching the game:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;__NV_PRIME_RENDER_OFFLOAD=1 __GLX_VENDOR_LIBRARY_NAME=nvidia ./Muh_Patcher&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Unacceptable TLS certificate====&lt;br /&gt;
This issue seems to affect Ubuntu 22.04 and all other distro based on it (KDE Neon) &amp;lt;br&amp;gt;&lt;br /&gt;
Solution: so far changing distro&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;strong&amp;gt;(!Not recommended anymore!)&amp;lt;/strong&amp;gt; &amp;lt;del&amp;gt;Using Proton&amp;lt;/del&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note: Since client update from 13th August 2026, proton is &amp;lt;strong&amp;gt;not&amp;lt;/strong&amp;gt; necessary anymore to run the client (and might get in the way of using the MuhUI feature of this server).&amp;lt;br /&amp;gt;Regular wine versions (including up-to-date ones) should work just fine.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
You can use Proton setting the patcher with an environment variable&amp;lt;br&amp;gt;&lt;br /&gt;
Create a file named proton-wrapper.sh inside muhro folder with this content:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/bash&lt;br /&gt;
PROTON_DIR=&amp;quot;$HOME/.steam/steam/steamapps/common/Proton 10.0&amp;quot;&lt;br /&gt;
APPID=&amp;quot;muhro&amp;quot;&lt;br /&gt;
STEAM_COMPAT_DATA_PATH=&amp;quot;$HOME/.steam/steam/steamapps/compatdata/$APPID&amp;quot;&lt;br /&gt;
STEAM_COMPAT_CLIENT_INSTALL_PATH=&amp;quot;$HOME/.steam/steam&amp;quot;&lt;br /&gt;
mkdir -p $HOME/.steam/steam/steamapps/compatdata/$APPID&lt;br /&gt;
&lt;br /&gt;
export PROTON_DIR&lt;br /&gt;
export APPID&lt;br /&gt;
export STEAM_COMPAT_DATA_PATH&lt;br /&gt;
export STEAM_COMPAT_CLIENT_INSTALL_PATH&lt;br /&gt;
export SteamAppId=&amp;quot;$APPID&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;$PROTON_DIR/proton&amp;quot; run &amp;quot;$@&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Open a terminal in muhro folder:&lt;br /&gt;
&lt;br /&gt;
Make the file executable with &amp;lt;code&amp;gt;chmod +x proton-wrapper.sh&amp;lt;/code&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Execute the patcher with &amp;lt;code&amp;gt;env RPATCHUR_WINE=/path/to/gamefolder/proton-wrapper.sh ./Muh_Patcher&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;If you have created a menu-entry&#039;&#039;&#039; ([[How To Play on Linux#Creating an Application Desktop/Menu Entry]]), the following entry&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;Exec=PATH TO FOLDER CONTAINING GAME FILES/Muh_Patcher&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
should be replaced with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;Exec=env RPATCHUR_WINE=/path/to/gamefolder/proton-wrapper.sh path/to/gamefolder/Muh_Patcher&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Removing proton-usage ===&lt;br /&gt;
&lt;br /&gt;
Remove the &amp;lt;code&amp;gt;RPATCHUR_WINE&amp;lt;/code&amp;gt; environment variable from your desktop-file, or don&#039;t use it anymore when manually launching the patcher.&lt;br /&gt;
&lt;br /&gt;
Optionally, the proton-wrapper.sh may be deleted, but in any case it will not be invoked anymore if the environment variable is removed or renamed.&lt;/div&gt;</summary>
		<author><name>Kimikz</name></author>
	</entry>
</feed>