tutorial-demo.mp4
Game emulation is on the rise, with years of contribution from the community and
now with Valve's portable handheld, the steam deck
. The fragmentation with
several platform emulators is daunting, especially since it requires repetitive
configuration for the first time or if the config files go missing. GameImage is
a tool to pack a runner (such as an emulator), a game, and it's configs in a
single flatimage
.
Advantages:
- Simplicity:
- No need to install an emulator or wine to run your games, they are downloaded as images and packaged with the game.
- Each game config/saves are in the same folder as the
flatimage
by default, which simplifies backups.
- Usability: get your game running with a double click on a fresh linux install, no dependencies required.
- Storage: Smaller file sizes than loose files, since the images uses a compressed filesystem.
Download the latest gameimage.run
file in the releases page.
tutorial-download.mp4
tutorial-wine.low.mp4
tutorial-wine-multi.low.mp4
tutorial-linux.low.mp4
The key advantages of flatimage are:
- Flatimage packs everything the application requires to run in a single file.
- Subsequently, the generated file works on linux distributions without, expecting any libraries to be available on the host.
- Flatimage runs the application on a containerized environment, it only allows the application to access what is necessary for it to work (such as sockets and devices).
- Flatimage is read-write, you can create a flatimage that stores your saves in the image itself, that way, instead of having back-up one file (wine+prefix+game data) and one directory (saves), you just have to backup one file. Flatimage grows automatically to accomodate your save data, you can still use the previous method with flatimage, as well as others listed in
You can skip the GUI launcher and run a game directly with:
$ ./my-game.flatimage --select-index=0
This will launch the game with index 0
, to list valid indices, use:
$ ./my-game.flatimage --select-list
To disable the launcher completely, and open your game directly when double clicked in the file manager, use:
$ ./my-game.flatimage fim-boot sh -c '/fim/static/gameimage-launcher "$@"' -- --select-index 0
- Wine umu takes longer to start than other options
- Select shaders in retroarch, and use ‘save as global preset’. GameImage will remember your selected shaders after the image creation.
- Use the environment variable GAMEID to set the gameid for umu, either on the wizard or on the launcher.
Avoid using NTFS
formatted hard-drives.
Disclaimer: This project does not endorse piracy, buy your games and console to use this software.