RomVault is designed as a Windows application, but it will run on many Linux distros using mono. The instructions below outline the basic steps to initially setup RomVault on Linux using the Ubuntu distro as an example.
There may be Linux and mono specific bugs. Please refer to the Bugs & Known Issues page and filter for the Linux tag for more details. Please join the ROMVault Discord server to report any new bugs.
mono-complete
package appropriate for your version of your Linux distro.The RomVault application is designed to write configuration files and its Cache file to the same directory as the executable. Its important to launch RomVault using mono from the same directory as the RomVault executable. You may find it helpful to create a launcher shortcut to do this.
[Desktop Entry] Type=Application Terminal=false Hidden=false Name=ROMVault Path=/home/gordonj/Desktop/ROMVault Exec=mono /home/gordonj/Desktop/ROMVault/ROMVault3.exe Icon=/home/gordonj/Desktop/ROMVault/romvault.ico
Path
, Exec
, and Icon
lines as neededROMVault.desktop
and save it to your desktopRomVault does not come packaged with a separate icon file. You can use your own .png or .ico file for your launcher shortcut image. The ROMVault chip icon is available on GitHub.
You can now Launch RomVault by double clicking your newly created shortcut.
Alternately, you can launch RomVault via the command line with mono from the RomVault executable directory:
mono ./ROMVault3.exe
There are many combinations of Linux distros, Mono versions, and system setups that could cause certain display issues like missing text or images. If there is text missing from certain areas of the application, particularly DatVault, then the most likely root cause font compatibility.
If you have missing text after upgrading to the latest stable version of mono, then you can try to globally remap specific fonts that RomVault uses:
fc-match Arial
then fc-match “Microsoft Sans Serif”
to check if those fonts are installed./etc/fonts/local.conf
with the following: <!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd"> <fontconfig> <alias> <family>Microsoft Sans Serif</family> <prefer> <family>Liberation Sans</family> </prefer> </alias> <alias> <family>Arial</family> <prefer> <family>Liberation Sans</family> </prefer> </alias> </fontconfig>
GTK_DATA_PREFIX= mono ROMVault36.exe
which will force light mode
If RomVault does not start properly or if certain features like DatVault do not work, then the issue may be related to a WinForms style that is deprecated in mono. If you run into this issue, try setting the following variable when launching the application:
$ MONO_WINFORMS_XIM_STYLE=disabled mono ROMVault3.exe