2021-09-21 03:40:25 +08:00
|
|
|
|
# 树莓派安装 RetroPie
|
|
|
|
|
|
|
|
|
|
## 系统安装
|
|
|
|
|
|
|
|
|
|
### 中文支持
|
|
|
|
|
|
|
|
|
|
安装完毕后,使用 Linux 挂载 SD 卡,用 [Cabin-Bold.zip](./Basic/Cabin-Bold.zip) 中的文件替换:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
/etc/emulationstation/themes/carbon/art/Cabin-Bold.ttf
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Wifi 设置
|
|
|
|
|
|
|
|
|
|
编辑 /etc/wpa_supplicant directory 文件:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
country=US
|
|
|
|
|
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
|
|
|
|
|
update_config=1
|
|
|
|
|
|
|
|
|
|
# RETROPIE CONFIG START
|
|
|
|
|
network={
|
|
|
|
|
ssid="your_real_wifi_ssid"
|
|
|
|
|
psk="your_real_password"
|
|
|
|
|
}
|
|
|
|
|
# RETROPIE CONFIG END
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### SSH 设置
|
|
|
|
|
|
|
|
|
|
#### Enable SSH
|
|
|
|
|
|
|
|
|
|
1. Touch ssh file in SD-card's boot partition.
|
|
|
|
|
2. Select raspi-config from the RetroPie menu after booting up.
|
|
|
|
|
3. Select Interface Options
|
|
|
|
|
4. Select SSH
|
|
|
|
|
5. Choose Yes
|
|
|
|
|
6. Select Ok
|
|
|
|
|
7. Choose Finish
|
|
|
|
|
|
|
|
|
|
#### Connecting
|
|
|
|
|
|
|
|
|
|
* Port: 22
|
|
|
|
|
* Username: pi
|
|
|
|
|
* Password: raspberry
|
|
|
|
|
|
2021-09-21 11:26:41 +08:00
|
|
|
|
### 手柄设置
|
|
|
|
|
|
|
|
|
|
可设置手柄或键盘。长按任意键进入配置界面,长按 A 将功能设置为未配置。
|
|
|
|
|
|
2022-11-09 02:50:23 +08:00
|
|
|
|
## 安装模拟器
|
|
|
|
|
|
|
|
|
|
按 Start 键进入 RetroPie 设置,选择 RetroPie Setup->Manage packages->Manage optional packages,选择任意项进行 binary 安装或 source 安装。
|
|
|
|
|
|
|
|
|
|
如果安装了多个模拟器,可以在进入游戏时选择使用哪一个。
|
|
|
|
|
|
2021-09-21 03:40:25 +08:00
|
|
|
|
## 安装 ROM
|
|
|
|
|
|
|
|
|
|
ROM 位于:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
~/RetroPie/roms/$CONSOLE
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
路径下。$CONSOLE 指具体的仿真器目标 console,如 snes or arcade。
|
|
|
|
|
|
|
|
|
|
## 游戏操作
|
|
|
|
|
|
|
|
|
|
### 退出游戏
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
start+hot key
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Arcade
|
|
|
|
|
|
|
|
|
|
ROM 必须完整,也就 ROM 的 ZIP 包里必须包含 [MAME 0.78.dat](./Basic/lr-mame2003/MAME%200.78.dat) 或相关文件中描述的全部文件,且校验码相同。
|
|
|
|
|
|
|
|
|
|
### 游戏下载
|
|
|
|
|
|
|
|
|
|
* [RomsHub](https://romshub.com/roms/neo-geo)
|
2022-11-08 23:32:30 +08:00
|
|
|
|
* [EmulatorGames](https://www.emulatorgames.net/roms/)
|
2022-11-09 00:03:21 +08:00
|
|
|
|
* [RomsGames](https://www.romsgames.net/roms/)
|
2021-09-21 03:40:25 +08:00
|
|
|
|
|
2024-04-29 18:43:47 +08:00
|
|
|
|
## 外部参考资料
|
2021-09-21 03:40:25 +08:00
|
|
|
|
|
2024-07-31 17:59:30 +08:00
|
|
|
|
1. [Retropie:树莓派游戏机的完整指南](https://www.lxx1.com/4305)
|
|
|
|
|
2. [树莓派 Retropie 4.4中文版使用说明 含roms资源](https://blog.csdn.net/JOYIST/article/details/90692593)
|
|
|
|
|
3. [树莓派安装retropie,打造属于你的小霸王街机游戏机](https://zhuanlan.zhihu.com/p/406926099)
|