← Back to context

Comment by anthk

1 day ago

For games Mednafen and PCSXR do wonders; and SCummvm itself supports tons of graphical and text adventures (even modern ones such as Technobabylon) and tons of source ports (and recompilations such as Super Mario 64) will run fine with just the bundled GL 2.1 adapter.

Instead of Mint I'd pick something like Alpine Linux with LXQT:

https://wiki.alpinelinux.org/wiki/LXQt

Also, adding ZRAM will fly on that machine.

Also, you can build SCUMMVM (install alpine-sdk, get the alpine ports and edit the pkg build file so scummvm gets compiled with these options at the configure build stage:

    #!/bin/sh
    sh configure \
  --enable-static \
  --enable-all-engines \
   --enable-all-unstable-engines \
   --enable-release \
   --enable-plugins \
   --disable-hq-scalers \
  --disable-dlc \
  --disable-scummvmdlc \
   --disable-discord

With these options even Macromedia Director stuff will run (maybe Encarta 95 and the like) and modern games such as Technobabylon, Thimbleweed Park and so on.

Zswap is better than ZRAM for this use case. ZRAM is only really interesting in situations where you don't want any swap to disk, like when running on an SD card or something.