Can't run Active State perl .exe

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
peanutnoir
Level 1
Level 1
Posts: 5
Joined: Fri Apr 11, 2008 8:15 am

Can't run Active State perl .exe

Post by peanutnoir »

I am having trouble running an exe that was written in Active State perl.

In Windows, I would go to the CLI and type

Code: Select all

C:\pager\pager.exe cl
Passing "cl" as an arguement that passes the file "cl.config" to the pager.exe program.

I have not had any success running this in Wine, and I do not know if it is a syntax problem or if Wine does not work with it.

I have tried:

Code: Select all

me@pc:~/work/pager$ wine pager.exe
fixme:spoolsv:serv_main (0 (nil))
Error: must specify config file
me@pc:~/work/pager$ wine pager.exe ./cl
fixme:spoolsv:serv_main (0 (nil))
fixme:msvcrt:MSVCRT__sopen : pmode 0x01b6 ignored
fixme:msvcrt:msvcrt_fdtoh wtf
me@pc:~/work/pager$ wine ./pager.exe cl
fixme:spoolsv:serv_main (0 (nil))
fixme:msvcrt:MSVCRT__sopen : pmode 0x01b6 ignored
fixme:msvcrt:msvcrt_fdtoh wtf
me@pc:~/work/pager$ wine ./pager.exe ./cl
fixme:spoolsv:serv_main (0 (nil))
fixme:msvcrt:MSVCRT__sopen : pmode 0x01b6 ignored
fixme:msvcrt:msvcrt_fdtoh wtf
me@pc:~/work/pager$ wine pager.exe /home/work/pager/cl
fixme:spoolsv:serv_main (0 (nil))
fixme:msvcrt:MSVCRT__sopen : pmode 0x01b6 ignored
fixme:msvcrt:msvcrt_fdtoh wtf
me@pc:~/wor/pager$ 
When I try to only run pager.exe, it asks for the config file, so it at least runs part of it.
austin987
Wine Developer
Wine Developer
Posts: 2383
Joined: Fri Feb 22, 2008 8:19 pm

Can't run Active State perl .exe

Post by austin987 »

On Fri, Apr 11, 2008 at 8:27 AM, peanutnoir <[email protected]> wrote:
I am having trouble running an exe that was written in Active State perl.

In Windows, I would go to the CLI and type

Code:
C:\pager\pager.exe cl


Passing "cl" as an arguement that passes the file "cl.config" to the pager.exe program.

I have not had any success running this in Wine, and I do not know if it is a syntax problem or if Wine does not work with it.

I have tried:

Code:
me@pc:~/work/pager$ wine pager.exe
fixme:spoolsv:serv_main (0 (nil))
Error: must specify config file
me@pc:~/work/pager$ wine pager.exe ./cl
fixme:spoolsv:serv_main (0 (nil))
fixme:msvcrt:MSVCRT__sopen : pmode 0x01b6 ignored
fixme:msvcrt:msvcrt_fdtoh wtf
me@pc:~/work/pager$ wine ./pager.exe cl
fixme:spoolsv:serv_main (0 (nil))
fixme:msvcrt:MSVCRT__sopen : pmode 0x01b6 ignored
fixme:msvcrt:msvcrt_fdtoh wtf
me@pc:~/work/pager$ wine ./pager.exe ./cl
fixme:spoolsv:serv_main (0 (nil))
fixme:msvcrt:MSVCRT__sopen : pmode 0x01b6 ignored
fixme:msvcrt:msvcrt_fdtoh wtf
me@pc:~/work/pager$ wine pager.exe /home/work/pager/cl
fixme:spoolsv:serv_main (0 (nil))
fixme:msvcrt:MSVCRT__sopen : pmode 0x01b6 ignored
fixme:msvcrt:msvcrt_fdtoh wtf
me@pc:~/wor/pager$




When I try to only run pager.exe, it asks for the config file, so it at least runs part of it.





Have you tried:
$ wine pager.exe /cl
?

Run it as you would on windows...just with 'wine' in front.
peanutnoir
Level 1
Level 1
Posts: 5
Joined: Fri Apr 11, 2008 8:15 am

Post by peanutnoir »

No, 'cl' is not a directory. :

Code: Select all

me@pc:~/work/pager$ wine pager.exe /cl
fixme:spoolsv:serv_main (0 (nil))
ERROR: can't read file '/cl.config': No such file or directory

See this error, this is what it expects:

Code: Select all

me@pc:~/work/pager$ wine pager.exe cl.config
fixme:spoolsv:serv_main (0 (nil))
ERROR: can't read file 'cl.config.config': No such file or directory
[/code]
David Shaw

Can't run Active State perl .exe

Post by David Shaw »

peanutnoir wrote:
No, 'cl' is not a directory. :


Code:
me@pc:~/work/pager$ wine pager.exe /cl
fixme:spoolsv:serv_main (0 (nil))
ERROR: can't read file '/cl.config': No such file or directory




See this error, this is what it expects:

Code:
me@pc:~/work/pager$ wine pager.exe cl.config
fixme:spoolsv:serv_main (0 (nil))
ERROR: can't read file 'cl.config.config': No such file or directory


[/code]
Try wine "pager.exe cl"

David Shaw
peanutnoir
Level 1
Level 1
Posts: 5
Joined: Fri Apr 11, 2008 8:15 am

Post by peanutnoir »

No go.

Code: Select all

me@pc:~/work/pager$ wine "pager.exe cl"
wine: could not load L"c:\\windows\\system32\\pager.exe cl": Module not found
me@pc:~/work/pager$ fixme:spoolsv:serv_main (0 (nil))
wine "./pager.exe cl"
wine: cannot find './pager.exe cl'
me@pc:~/work/pager$ wine "./pager.exe ./cl"
wine: cannot find './pager.exe ./cl'
me@pc:~/work/pager$ wine "/home/work/pager.exe cl"
wine: cannot find '/home/work/pager.exe cl'
me@pc:~/work/pager$ wine "/home/work/pager.exe cl"
me@pc:~/work/pager$ wine "/home/work/pager.exe /home/work/cl"
wine: cannot find '/home/work/pager.exe /home/work/cl'
John Drescher

Can't run Active State perl .exe

Post by John Drescher »

On Fri, Apr 11, 2008 at 12:39 PM, peanutnoir <[email protected]> wrote:
No go.


Code:
me@pc:~/work/pager$ wine "pager.exe cl"
wine: could not load L"c:\\windows\\system32\\pager.exe cl": Module not found
me@pc:~/work/pager$ fixme:spoolsv:serv_main (0 (nil))
wine "./pager.exe cl"
wine: cannot find './pager.exe cl'

me@pc:~/work/pager$ wine "./pager.exe ./cl"
wine: cannot find './pager.exe ./cl'
me@pc:~/work/pager$ wine "/home/work/pager.exe cl"
wine: cannot find '/home/work/pager.exe cl'
me@pc:~/work/pager$ wine "/home/work/pager.exe cl"
me@pc:~/work/pager$ wine "/home/work/pager.exe /home/work/cl"
wine: cannot find '/home/work/pager.exe /home/work/cl'

Is ~/work/pager mapped to a drive letter in wine?

John
peanutnoir
Level 1
Level 1
Posts: 5
Joined: Fri Apr 11, 2008 8:15 am

Post by peanutnoir »

No. I did not think it had to be in the "Windows drive" because of this:

Code: Select all

me@pc:~/work/pager$ wine pager.exe cl.config
fixme:spoolsv:serv_main (0 (nil))
ERROR: can't read file 'cl.config.config': No such file or directory 
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Post by vitamin »

peanutnoir wrote:

Code: Select all

C:\pager\pager.exe cl
Do the same on Wine:

Code: Select all

cd ~/.wine/drive_c/pager
wine "c:\pager\pager.exe" cl
Of course of that you have to install this program into c:\pager.
peanutnoir
Level 1
Level 1
Posts: 5
Joined: Fri Apr 11, 2008 8:15 am

Post by peanutnoir »

OK, tried that, it is a standalone .exe, not installable. I did put it in the "C" drive however.

Code: Select all

me@pc:~/.wine/drive_c/pager$ wine "c:\pager\pager.exe" cl
fixme:spoolsv:serv_main (0 (nil))
fixme:msvcrt:MSVCRT__sopen : pmode 0x01b6 ignored
fixme:msvcrt:msvcrt_fdtoh wtf

also tried wine "c:\pager\pager.exe" "c:\pager\cl"
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Post by vitamin »

peanutnoir wrote:OK, tried that, it is a standalone .exe, not installable. I did put it in the "C" drive however.

Code: Select all

me@pc:~/.wine/drive_c/pager$ wine "c:\pager\pager.exe" cl
fixme:spoolsv:serv_main (0 (nil))
fixme:msvcrt:MSVCRT__sopen : pmode 0x01b6 ignored
fixme:msvcrt:msvcrt_fdtoh wtf

also tried wine "c:\pager\pager.exe" "c:\pager\cl"
So the problem is? Those fixme messages are not a problem on itself.
Locked