Trying to run lotus notes under wine/fedora core6

Soldato
Joined
4 Feb 2003
Posts
11,058
Location
telford, shropshire
Hi,

Following a guide on the web, managed to get notes installed then enter the following command that generates the error listed later :

[markpitchford@localhost ~]$ wine $HOME/.wine/drive_c/Program Files/lotus/notes/nlnotes.exe
wine: cannot find '/home/markpitchford/.wine/drive_c/Program'
[markpitchford@localhost ~]$

I've done a search for nlnotes.exe and the path for it is :

H:\.wine\drive_c\Program Files\lotus\notes\nlnotes.exe

H shows on the drives as /home/markpitchford/ so not exactly sure what its got an issue with :confused:

may well be something obvious i've missed so i'll offer my apologies up front.

thanks.........
 
There's a space in your directory path ;)
Enclosing the path with inverted commas should work IIRC (Not certain if it'll like the $HOME bit though)-
Code:
wine "$HOME/.wine/drive_c/Program Files/lotus/notes/nlnotes.exe"
More precisely, its interpreting the space in Program Files as the start of a new paramater.

-Leezer-
 
leezer3 said:
There's a space in your directory path ;)
Enclosing the path with inverted commas should work IIRC (Not certain if it'll like the $HOME bit though)-
Code:
wine "$HOME/.wine/drive_c/Program Files/lotus/notes/nlnotes.exe"
More precisely, its interpreting the space in Program Files as the start of a new paramater.

-Leezer-
rofl nice one.

wondered whether it was that but my googling skills let me down again, so i posted here :)
 
Back
Top Bottom