在 Linux 平台安装 RPG Maker MV(2016 年 3 月 1 日更新)
Overview
In order to install RPG Maker MV on Linux platforms, users must use sudo with the apt-get command. Use the method below to install RPG Maker MV via SteamOS.
Steps to Install
1. Access the Linux Desktop
- The desktop can be accessed via [Settings]→[Interface].
- Click [Exit] to switch to the Desktop view.
2. Enter a password
In order to use sudo, a password must be set for the user “desktop” by running the following command.
passwd
3. Edit the source list file
It is necessary to edit the official Debian source list file.
-
Open the source list file.
sudo nano /etc/apt/sources.list
-
Add the following two lines to the bottom of the file.
deb ftp://mirror.nl.leaseweb.net/debian/ jessie main contrib non-free deb-src ftp://mirror.nl.leaseweb.net/debian/ jessie main contrib non-free
- Save and close the file.
Next, ensure that SteamOS packages don’t get updated and replaced by creating a new preferences file.
-
Create a new preferences file.
sudo nano /etc/apt/preferences
-
Paste the following text to the bottom of the file.
Package: * Pin: release o=Valve Software LLC Pin-Priority: 900 Package: * Pin: release l=Debian Pin-Priority: 110
- Save and close the file.
4. Import a package list
Run the following command to import a package list from the server.
sudo apt-get update
After completing the steps above, the apt-get install command can now be used to install applications.
sudo apt-get install [package]
Installing xdg-utils
By default, SteamOS is set so that that users are not able to access and manage folders. In order to open folders such as “Open Project,” etc., it is necessary to install xdg-utils.
sudo apt-get install xdg-utils
*This step is not necessary for users using Debian8 or newer.
Installing a Graphics Driver (Example: NVIDIA)
1. Download the necessary driver
Using the link below, search for and download the necessary drivers.
http://www.nvidia.com/Download/index.aspx
*Files will have a .run extension.
2. Delete the existing driver file
Run the following command to delete the existing driver file.
sudo apt-get purge nvidia*
3. Suspend GUI mode
Run the following commands to suspend GUI mode.
sudo service lightdm stop sudo service gdm stop
4. Start console mode
Press Ctrl + Alt + F1 to start console mode.
5. Change the execute permissions for the installation file
Run the following command to change the execute permissions for the file installer.
sudo chmod 755 ~/Downloads/[file_name]
6. Install the file
Run the following command to execute the file installer and install the file.
sudo ~/Downloads/[file_name]
Follow the on-screen prompts the complete the installation.
7. Reboot
Run the following command to reboot the OS.
sudo reboot
Running Games
To start playing used a deployed game, follow the steps below to change the permissions of the “Game” file.
1. Switch users
Run the following command to switch to the root user.
su
2. Open the game folder
Run the following command to open the game folder.
cd (game folder path)
3. Change the permissions for the “Game” file
Run the following command to change the permissions of the “Game” file in the game folder.
chmod +x Game
4. Start the game
Run the following command to start the game.
./Game
The steps above are only required the first time. From then on, double click the “Game” file to start the game.