Original Source
- Original title: Run RM Games on Linux with Wine
- Original author: lakeisgay
- Original date: March 1, 2021
- Source thread: https://forums.rpgmakerweb.com/threads/run-rm-games-on-linux-with-wine.133975/
- Source forum path: Game Development Engines > RPG Maker Tutorials > Non-Maker Specific Tutorials
Summary
[If you're wanting to run the actual RPG Maker engine (Steam version) on Linux, refer to this guide. The page you're on now tells you how to run the .exe of the game itself. This is a general guide for running Windows apps on Linux. Thus, if you have the non-Steam version of the RPG Maker engine, this guide should allow you to run it.] If you're wanting to run a game made with RPG Maker on Linux, this is the guide for you. MV and onward have a native...
Archived First Post
This is a general guide for running Windows apps on Linux. Thus, if you have the non-Steam version of the RPG Maker engine, this guide should allow you to run it.]
If you're wanting to run a game made with RPG Maker on Linux, this is the guide for you. MV and onward have a native Linux export version, but the previous makers do not.
Step 1: Install Wine
Go to https://wiki.winehq.org/Download and, under WineHQ binary packages, select your operating system. I'll attach the instructions here.- Open the terminal and run command
Code:
sudo dpkg --add-architecture i386- This command enables 32-bit architecture, if it is not already enabled. It's necessary for Wine. If it is already enabled, this command will do nothing.
- Run command
Code:
wget -nc https://dl.winehq.org/wine-builds/winehq.key- This command downloads the Wine repository key.
- Run command
Code:
sudo apt-key add winehq.key- This command adds the Wine repository key.
- Run one of these commands (which add the repository itself):
- For Ubuntu 20.10:
Code:
sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ groovy main' - For Ubuntu 20.04 and Mint 20.x:
Code:
sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ focal main' - For Ubuntu 18.04 and Mint 19.x:
Code:
sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main'
- For Ubuntu 20.10:
- Run command
Code:
sudo apt update- Updates all applications; recommended to do after adding repositories.
- Run command
Code:
sudo apt install --install-recommends winehq-stable- This command installs the stable version of the Wine application.
- Open the terminal and run command
Code:
sudo dpkg --add-architecture i386- This command enables 32-bit architecture, if it is not already enabled. It's necessary for Wine. If it is already enabled, this command will do nothing.
- Run command
Code:
wget -nc https://dl.winehq.org/wine-builds/winehq.key- This command downloads the Wine repository key.
- Run command
Code:
sudo apt-key add winehq.key- This command adds the Wine repository key.
- Run one of these commands (which add the repository itself):
- For Debian 10 (Buster):
Code:
sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/debian/ buster main' - For Debian 11 (Bullseye):
Code:
sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/debian/ bullseye main' - For Debian Testing (Bookworm):
Code:
sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/debian/ bookworm main'
- For Debian 10 (Buster):
- Run command
Code:
sudo apt update- Updates all applications; recommended to do after adding repositories.
- Run command
Code:
sudo apt install --install-recommends winehq-stable- This command installs the stable version of the Wine application.
- Open a terminal and run one of the following commands (which add the repository):
- For Fedora 33:
Code:
dnf config-manager --add-repo https://dl.winehq.org/wine-builds/fedora/33/winehq.repo - For Fedora 32:
Code:
dnf config-manager --add-repo https://dl.winehq.org/wine-builds/fedora/32/winehq.repo
- For Fedora 33:
- Then run
Code:
dnf install winehq-stable- This command installs the stable version of the Wine application.
Follow one of these links for instructions.
Wine - openSUSE Wiki
Step 2: Run RM Game
Navigate to the folder in which you downloaded the RPG Maker game and right-click anywhere on the file explorer main window, then select "Open in Terminal." Typewine game.exe
Alternatively, if you want to specify the full filepath name, you can open the terminal and type
cd '.wine/drive_c/Games/Project1'
wine start '.wine/drive_c/Games/Project1/game.exe'
Or graphically, you should be able to right-click on the .exe for your RPG Maker game and select the option to run the game with Wine. If you don't see it, click "Open with other application..." and select Wine.
You might see a prompt asking you to download Gecko and Mono; choose "Yes" for both, and the game should work fine.
As this is a compatibility layer, you will most likely encounter issues, but that should be understandable. I've noticed from personal experience that the older the engine in which the game was made, the better it typically runs. Rm2k(3) runs excellently on Wine, while XP and onward not nearly so well.
Downloads / Referenced Files
Log in, then follow the RPG Maker Developers Group to see these download links.
Log in to downloadReferenced Images / Attachments
Creator Claims / Removal
If you are the original creator and want this listing reassigned, edited, or removed, join BMMPlay and contact the moderators with proof that matches the original RPG Maker Web profile, linked GitHub, itch.io page, or another public creator identity.
Replies (0)
No replies yet.
Topic Summary
Loading summary...
