You are not logged in.
Pages: 1
I have installed wine and winetricks (Wine-doors didn't run for some reason)
Next I installed my sons Bob the Builder game, and I just couldn't get it to run, so I set the CDrom drive with Winecfg to /media/BOB3 same problem, I have reinstalled it and found that it is not a disc protection problem as it runs when just installed, but I cannot get it to run subsequently. The error is that the executable could not be found, invalid path (and then blank where the path would be).
On a whim I tried to
cd /media/BOB3
wine BBCAuto.exe
and bingo, the game runs, but I am not getting a 4 year old to do that, but choosing the right icon to that he can do.
So what am I missing.
Let me know if I should post any config files.
Thanks
Offline
Can you get it to run with this command?
env WINEPREFIX=/media/BOB3 wine BBCAuto.exe
:wq
Offline
no, got a "read only filesystem" error - makes sense as I tried before mounting the cdrom and it created the environment. (Automount under PCmanFM is another issue)
Thanks for the input anyway.
Offline
allright new idea, dirty for sure if, but if it works it works. Problem is that I am not sure how to do this.
I have a text file with the code, I can
sh bob
and it CD's into the directory and executes the file.
Now the question os how do I "make it executable" from the desktop. Like an old DOS .bat file.
Offline
To make it executable, open a terminal and run
chmod +x bob
(assuming the file is called bob and is in the current directory). However, if you want it to have a different icon, you'll have to make a .desktop file. This code should generate a simple one, just replace <icon> with the path to the icon you want to use:
echo "[Desktop Entry]
Type=Application
Name=Bob The Builder
Icon=<icon>
Exec=sh bob
Terminal=false
Categories=Application;Game;
" > bob.desktop
:wq
Offline
Thanks especially the last part which I wouldn't even have known how to google.
just beccause I'm a bit dense. The last bit of code is not a entry to a file, right, it's what I should type in the CLI
Offline
Yes, that last part should be entered in the CLI, although all it does is create a file. If you'd like to know more about .desktop files, you can take a look at http://standards.freedesktop.org/deskto … ec/latest/
:wq
Offline
Thanks, this works a treat - Have a little trouble assigning the Icon but I should be able to solve that.
Only issue now is the automount but I have seen a number of topics on that (re PCmanFM) and I trawl those before creating a new topic
Offline
Pages: 1