I am brand new to WINE. I hope someone can help me.
This is in regards to installing and running a software called "LDS Library 2006".
I am running a 32 bit Lenovo ThinkPad T60.
The software seems to install alright. However when you try to run it, the cursor pinwheels for around fifteen seconds, then nothing.
The command that is executed by the link that WINE installer leaves on the desktop is:
env WINEPREFIX="/home/robert/.wine" wine C:\\windows\\command\\start.exe /Unix /home/robert/.wine/dosdevices/c:/users/Public/Desktop/LDS\ Library\ 2006.lnk
After looking at the manual page for wine I decided to run the following commands in a terminal:
$ env WINEPREFIX="/home/robert/.wine"
$ env WINEARCH="win32"
$ env WINEDEBUG="warn+all"
$ wine C:\\windows\\command\\start.exe /Unix /home/robert/.wine/dosdevices/c:/users/Public/Desktop/LDS\ Library\ 2006.lnk
This is the standard output:
$ wine C:\\windows\\command\\start.exe /Unix /home/robert/.wine/dosdevices/c:/users/Public/Desktop/LDS\ Library\ 2006.lnk
fixme:exec:SHELL_execute flags ignored: 0x00000100
fixme:exec:SHELL_execute flags ignored: 0x00004100
$
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"configSections" in state 1
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"section" in state 3
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"appStart" in state 1
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"ClientApplicationInfo" in state 3
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"appFolderName" in state 3
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"PreviousAppFolder" in state 3
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"appExeName" in state 3
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"installedVersion" in state 3
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"lastUpdated" in state 3
wine: Install Mono 2.6 for Windows to run .NET 1.1 applications.
Please take a look at my error messages
Re: Please take a look at my error messages
You either need to run the application with Mono (native Linux) or install MS .Net 2.0:
But hey the program has already quite clearly told you all that in your short debug output!!
I would recommend locating the default location of your application it will be somewhere in a directory in:
/home/robert/.wine/drive_c/Program Files/???/???.exe
Just like on Windows.
Use BASH to do the heavy lifting for you...
cd (Change Directory) to that folder and launch the application directly and run it directly in wine, as in:
(please replace those ??? quotes with something meaningful!!)
This will ensure that your application has it's working path set correctly.
Bob (#2)
Code: Select all
winetricks dotnet20
I would recommend locating the default location of your application it will be somewhere in a directory in:
/home/robert/.wine/drive_c/Program Files/???/???.exe
Just like on Windows.
Use BASH to do the heavy lifting for you...
Code: Select all
find "/home/robert/.wine/drive_c/Program Files" -name "*.exe"
Code: Select all
cd "/home/robert/.wine/drive_c/Program Files/???"
wine "???.exe"
This will ensure that your application has it's working path set correctly.
Bob (#2)