http://bugs.winehq.org/show_bug.cgi?id=2643
pviegas@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED
------- Additional Comments From pviegas@gmail.com 2005-15-01 16:10 ------- I've been a little busy bee in the meanwhile! :-D I've tried all I could put my hands on in the net and no success! Finnally I came acros a page: "http://www.tux.org/~tbr/lotusnotes/notes6underwine.html" and tried it out. Still no result. After a few good pointer from it's author I finnaly got it working!
For the record theses were the steps I took, although I'm sure a few of them were allready paranoia style and could be simplified (copy as root?!?!? :-D). But still, following exactlly these it works!
1. Removed all wine software from the sytem apt-get remove wine rm -rf .wine
2. Install the last wine package from "deb http://wine.sourceforge.net/apt/ binary/" apt-get install wine
3. Run wine to set it up wine
4. Copy the lotus install dir from windows XP mounted drive. Here my recent traumas caused me to do this as root... cp -rv /mnt/windows/Program\ Files/lotus /home/pviegas/.wine/drive_c/Program\ Files/ chown -R pviegas:pviegas /home/pviegas/.wine/drive_c/Program\ Files/lotus
5. First test on running notes wine nlnotes.exe
Result: It ran, but got the following error message: "You cannot use the Administration program while the Domino Server is running. Either shut down the Domino Server (but keep the file server running) or choose the icon labeled 'Lotus Notes' instead."
6. I read in some pages that this might be caused from the lack of privileges over the program files, so... chmod -R +rwx *
7. Second execution test wine nlnotes.exe
Result: fixme:ole:CoRegisterMessageFilter stub fixme:ole:CoCreateInstance no classfactory created for CLSID {4955dd33-b159-11d0-8fcf-00aa006bcc59}, hres is 0x80040154 fixme:ole:StdMarshalImpl_MarshalInterface table marshalling unimplemented err:module:import_dll Library MFC42.DLL (which is needed by L"C:\Program Files\lotus\notes\nimui.dll") not found err:module:import_dll Library MSVCP60.dll (which is needed by L"C:\Program Files\lotus\notes\nimui.dll") not found err:module:import_dll Library nimui.dll (which is needed by L"C:\Program Files\lotus\notes\nstclient.dll") not found err:module:import_dll Library MFC42.DLL (which is needed by L"C:\Program Files\lotus\notes\nstclient.dll") not found err:module:import_dll Library MSVCP60.dll (which is needed by L"C:\Program Files\lotus\notes\nstclient.dll") not found fixme:ole:CoRegisterMessageFilter stub fixme:ole:COM_ApartmentRelease Destroy outstanding stubs err:ole:StdMarshalImpl_ReleaseMarshalData could not map MID to stub manager, oxid=a0000000b, oid=1 err:ole:CoReleaseMarshalData IMarshal::ReleaseMarshalData failed with error 0x8001011d
8. Copyed the missing dlls from windows mounted drive cp /mnt/windows/WINDOWS/system32/mfc42.dll ~/.wine/drive_c/windows/system cp /mnt/windows/WINDOWS/system32/msvcp60.dll ~/.wine/drive_c/windows/system
9. SUCCESS! wine nlnotes.exe runs successfully!
Thank you all for your help! Hope this info helps someone in the future! ;-)