设为首页收藏本站同能贴吧 切换语言 繁体中文
开启辅助访问 切换到窄版
扫描二维码关注官方公众号
返回列表
+ 发新帖
查看: 69|回复: 0

[交流讨论] Run RM Games on Linux with Wine

[复制链接]
累计送礼:
0 个
累计收礼:
1 个
  • TA的每日心情
    开心
    前天 04:10
  • 签到天数: 209 天

    连续签到: 2 天

    [LV.7]常住居民III

    4446

    主题

    864

    回帖

    2万

    积分

    管理员

    Rank: 9Rank: 9Rank: 9

    VIP
    7
    卡币
    22899
    OK点
    16
    推广点
    0
    同能卷
    50
    积分
    28239

    灌水之王

    发表于 前天 17:22 | 显示全部楼层 |阅读模式
    [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 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.
    Spoiler: Ubuntu(-based)
    Popular Ubuntu-based distros: Linux Mint, Pop!_OS, Lubuntu, KDE Neon, Zorin OS, Elementary OS, Ubuntu Budgie, Feren OS, Nitrux

    • Open the terminal and run command                                       Code:        
      1. 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:        
      1. wget -nc https://dl.winehq.org/wine-builds/winehq.key
      复制代码


      • This command downloads the Wine repository key.

    • Run command                                       Code:        
      1. 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:        
        1. sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ groovy main'
        复制代码

      • For Ubuntu 20.04 and Mint 20.x:                                       Code:        
        1. sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ focal main'
        复制代码

      • For Ubuntu 18.04 and Mint 19.x:                                       Code:        
        1. sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main'
        复制代码


    • Run command                                       Code:        
      1. sudo apt update
      复制代码


      • Updates all applications; recommended to do after adding repositories.

    • Run command                                       Code:        
      1. sudo apt install --install-recommends winehq-stable
      复制代码


      • This command installs the stable version of the Wine application.

    Spoiler: Debian(-based)
    Popular Debian-based (non-Ubuntu) distros: Q40S, Devuan, Kali Linux, MX Linux, Deepin

    • Open the terminal and run command                                       Code:        
      1. 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:        
      1. wget -nc https://dl.winehq.org/wine-builds/winehq.key
      复制代码


      • This command downloads the Wine repository key.

    • Run command                                       Code:        
      1. 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:        
        1. sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/debian/ buster main'
        复制代码

      • For Debian 11 (Bullseye):                                       Code:        
        1. sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/debian/ bullseye main'
        复制代码

      • For Debian Testing (Bookworm):                                       Code:        
        1. sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/debian/ bookworm main'
        复制代码


    • Run command                                       Code:        
      1. sudo apt update
      复制代码


      • Updates all applications; recommended to do after adding repositories.

    • Run command                                       Code:        
      1. sudo apt install --install-recommends winehq-stable
      复制代码


      • This command installs the stable version of the Wine application.

    Spoiler: Fedora

    • Open a terminal and run one of the following commands (which add the repository):

      • For Fedora 33:                                       Code:        
        1. dnf config-manager --add-repo https://dl.winehq.org/wine-builds/fedora/33/winehq.repo
        复制代码

      • For Fedora 32:                                       Code:        
        1. dnf config-manager --add-repo https://dl.winehq.org/wine-builds/fedora/32/winehq.repo
        复制代码


    • Then run                                       Code:        
      1. dnf install winehq-stable
      复制代码


      • This command installs the stable version of the Wine application.

    Spoiler: openSUSE & Arch
    Popular Arch-based distro: Manjaro

    Follow one of these links for instructions.

    Wine - openSUSE Wiki



                                            en.opensuse.org                                
    Wine - ArchWiki




    During the installation you may get a complaint about missing dependencies. If so, install them.
    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." Type                                       Code:        
    1. wine game.exe
    复制代码

    assuming that the .exe is entitled "Game", as it should be.

    Alternatively, if you want to specify the full filepath name, you can open the terminal and type                                       Code:        
    1. cd '.wine/drive_c/Games/Project1'
    复制代码

    or wherever the file is stored, then type the wine game.exe command. Or, you could use wine start to specify the full path, like so:                                       Code:        
    1. wine start '.wine/drive_c/Games/Project1/game.exe'
    复制代码

    and type /unix directly after wine start if using a Unix style pathname.

    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.


    本贴来自国际rpgmaker官方论坛作者:lakeisgay处,因国际论坛即将永久关站,为了存档多年珍贵资料,署名转载到本论坛存档,由于官方帖子为英文原帖,需要中文翻译请点击论坛顶部切换语言为中文就可以将帖子翻译成中文浏览,方便大家随时查看,原文地址:https://forums.rpgmakerweb.com/threads/run-rm-games-on-linux-with-wine.133975/

    本帖子中包含更多资源

    您需要 登录 才可以下载或查看,没有账号?立即注册

    x
    天天去同能,天天有童年!
    回复 送礼论坛版权

    使用道具 举报

    文明发言,和谐互动
    文明发言,和谐互动
    高级模式
    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    简体中文
    繁體中文
    English(英语)
    日本語(日语)
    Deutsch(德语)
    Русский язык(俄语)
    بالعربية(阿拉伯语)
    Türkçe(土耳其语)
    Português(葡萄牙语)
    ภาษาไทย(泰国语)
    한어(朝鲜语/韩语)
    Français(法语)
    关闭

    幸运抽奖

    社区每日抽奖来袭,快来试试你是欧皇还是非酋~

    立即查看

    聊天机器人
    Loading...

    QQ|Archiver|手机版|小黑屋|同能RPG制作大师 ( 沪ICP备12027754号-3 )

    GMT+8, 2026-7-14 14:26 , Processed in 0.117089 second(s), 53 queries .

    Powered by Discuz! X3.4

    Copyright © 2001-2020, Tencent Cloud.

    快速回复 返回顶部 返回列表