First I checked the WINE HQ appdb and make sure the game was listed as Silver or Gold rating. Due to the executable flag being inhibited by default in current Linux distros, I copied over the CD contents to a separate directory in the home directory and set the executable permission for the "setup.exe" program. I then installed the game using the "setup.exe". Of course, the installed menu listing/icon for the game would bomb out with all kinds of errors.
The tip:
I first created a link in the home directory to the directory where the game was installed (within the WINE directory structure).
Example:
I installed the "Tone Rebellion" and then created a link called "Tone" in my home directory which points to the "~/.wine/c_drive/Program Files/Tone" directory. Then I created a shell script called "Tone-Reb.sh" on my desktop like this (use your home directory instead of the stars which I have listed below):
Code: Select all
#!/bin/sh
env WINEPREFIX="/home/******/.wine" wine C:\\windows\\command\\start.exe /Unix /home/******/Tone/float.exe
And then I set the executable permission for the shell script. When I click on the script icon, it will ask if I want to view or run it. I simply answer with Run. For Tone Rebellion, you would need to drag the screen to the upper left position to get the starting screen of the game.
I've tried this method with other games and have been successful so far. Good luck and hopefully this work-around will help you get the older games up and running.