I'm using Wine 1.6.1 installed using the Ubuntu Wine Team's ppa under Ubuntu Precise. I have a Desktop Configuration File (named Basic4android.desktop) created by Wine when I installed the Basic4android windows app. The file is in directory /home/john/.local/share/applications/wine/Programs/Basic4android/. Contents of the file are: [Desktop Entry] Name=Basic4android Exec=env WINEPREFIX="/home/john/.wine" wine C:\\\\windows\\\\command\\\\start.exe /Unix /home/john/.wine/dosdevices/c:/users/Public/Start\\ Menu/Programs/Basic4android/Basic4android.lnk Type=Application StartupNotify=true Path=/home/john/.wine/dosdevices/c:/Basic4android Icon=05D9_Basic4android.0 /home/john/.wine/dosdevices/c:/users/Public/Start Menu/Programs/Basic4android/Basic4android.lnk (written using standard Unix notation) exists. I don't know how to determine where it points to. However, the file (basic4android.exe) that it should point to is in directory /home/john/.wine/c:/dosdevices/c:/Basic4android/ and I can run it successfully by double clicking it in the Nautilus File Manager. When I try to run the app (by using the launcher in Unity (corresponding to the Desktop Configuration File detailed above), I get a small window showing 'File Missing' with no useful options, but it doesn't detail which file that is missing. Help please! PS I get the same problem with other windows apps (e.g. Windows version of Android SDK). -- Regards, John
On Sat, 2014-01-11 at 12:33 +0000, John Rose wrote: If you start a terminal session, cd to the Basic4Android directory and then run the command: ls -l Basic4android.lnk and post a copy of the output. The colour used for the file name is meaningful too, so: - What colour is Basic4android.lnk shown in? The usual Linux convention is that: - a valid symbolic link is pale blue - an invalid symbolic link, i.e. the file it points at doesn't exist, is red. - a hard link to a file is the same colour as the file it links to, probably white or green. - If Basic4android.lnk is pale blue or red, what is it pointing to? This is shown at the end of the line, e.g. lrwxrwxrwx 1 kiwi kiwi 10 Jan 11 15:47 target_sym -> target.txt where 'target_sym' is the name of the symbolic link and 'target.txt' is the file it points to. Martin