我的长期目标是让 Doom(版本 1.1)在混合硬件(1 个在 DOS 7.10 下的 Pentium 3 和 2 个在 Raspbian 下的 Raspberry Pi)上以3 屏幕模式运行。
我有运行 LNE100TX 的 DOS(如果有帮助的话我可以分享配置文件)。
我在Raspbian下启动DOSBox的配置文件中启用了IPX。
[ipx]
# ipx: Enable ipx over UDP/IP emulation.
ipx=true
pi@raspberrypi:~$ dosbox
DOSBox version 0.74
Copyright 2002-2010 DOSBox Team, published under GNU GPL.
---
CONFIG:Loading primary settings from config file /home/pi/.dosbox/dosbox-0.74.conf
MIXER:No Sound Mode Selected.
ALSA:Can’t subscribe to MIDI port (65:0) nor (17:0)
MIDI:Opened device:none
我启动了 ipx 服务器并在 DOSBox 中安装了驱动器
Z:\>ipxnet startserver 19900
IPX Tunneling utility for DosBox
IPX Tunneling Server started
Z:\>mount c ~/dos-games
Drive C is mounted as local directory /home/pi/dos-games/
我在 Github 上找到了ipxbox,上面写着:
ipxbox 是一个用 Go 编写的独立 DOSBox IPX 服务器。DOSBox客户端可以连接到服务器并一起玩。
一个独特的功能是,它可以选择以类似于 VPN 的方式桥接到真实的物理网络。DOSBox 客户端可以在服务器上相互通信,但启用此功能后,它们还可以与连接网络上的物理 IPX 节点进行通信。因此,模拟 DOS 客户端应该能够与连接到同一网络的真实 DOS 机器玩游戏。
所以,我安装了 Go:
pi@raspberrypi:~ $ sudo apt-get install libpcap-dev
pi@raspberrypi:~ $ export GOPATH=/home/pi/work
pi@raspberrypi:~ $ export PATH=$PATH:$GOPATH/bin
pi@raspberrypi:~ $ sudo apt-get install golang
然后我尝试安装 ipxbox:
pi@raspberrypi:~ $ go get github.com/fragglet/ipxbox
pi@raspberrypi:~ $ cd work
pi@raspberrypi:~ $ go build ipxbox.go
这是我运行此命令时收到的消息:
#github.com/google/gopacket/pcap
go/src/github.com/google/gopacket/pcap/pcap_unix.go:34:18: fatal error: pcap.h: No such file or directory
#include <pcap.h>
compilation terminated.
也许这是显而易见的,但我对 Linux 不是很熟悉。有人对造成这种情况的原因有任何建议吗?
白衣非少年
相关分类