https://qa.mandrakesoft.com/show_bug.cgi?id=2064





------- Additional Comments From [EMAIL PROTECTED]  2003-02-23 20:31 -------
I confirm the WineX behavior. Removing the directory 
~/.transgaming/wineserver-[name of your workstation]/ solves the problem 
temporarily, but you have to do it before each use. 
 
I'm also having problems with Crossover Office and Plugin. Office works but Excel 
complains about memory problems, and I can no longer install Quicken, while the 
Crossover Plugins don't work anymore. It is not a kernel problem, since going back 
to an earlier kernel doesn't make the problem go away. I'm still trying to figure out 
where Cxoffice anc Cxplugin create their socket files, to see if deleting those 
helps... 
 
This is a very important problem since a lot of us are still dependent on Windows 
programs (and games! ;-) to avoid the shame of dual-booting! I have notified 
Codeweavers about it but haven't heard from them yet. 



------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.



------- Reminder: -------
assigned_to: [EMAIL PROTECTED]
status: UNCONFIRMED
creation_date: 
description: 
When running wine, it won't create its own socket

[EMAIL PROTECTED] ~]$ tail -n 1 bin/kazaa 
$ARTSCMD wine ~/.wine/fake_windows/Program\ Files/KaZaA\ Lite/Kazaa.exe
[EMAIL PROTECTED] ~]$ kazaa
wine: lstat /tmp/.wine-todd/server-301-17dbe8/socket : No such file or directory
[EMAIL PROTECTED] ~]$ vdir /tmp/.wine-todd/server-301-17dbe8/
total 0
-rw-r--r--    1 todd     todd            0 Feb 20 13:55 lock
srwxr-xr-x    1 todd     todd            0 Oct  2 18:44 socket.sav
[EMAIL PROTECTED] ~]$ vdir /tmp/.wine-todd/                  
total 4
drwx------    2 todd     todd         4096 Feb 20 13:55 server-301-17dbe8
[EMAIL PROTECTED] ~]$ cp -a /tmp/.wine-todd/server-301-17dbe8/socket.sav
/tmp/.wine-todd/server-301-17dbe8/socket
[EMAIL PROTECTED] ~]$ kazaa
ArtsD is running
The command will execute through artsdsp
fixme:win32:PE_CreateModule Unknown directory 15 ignored
Loading required GL library /usr/X11R6/lib/libGL.so.1.4.500
err:win32:PE_fixup_imports No implementation for SHELL32.DLL.712 imported from
C:\Windows\System\comdlg32.dll, setting to 0xdeadbeef
<snip>

Works regularly.  Exit, then try again:

[EMAIL PROTECTED] ~]$ kazaa
ArtsD is running
The command will execute through artsdsp
wine: lstat /tmp/.wine-todd/server-301-17dbe8/socket : No such file or directory

The full kazaa wrapper script is:
[EMAIL PROTECTED] ~]$ cat bin/kazaa 
#!/bin/sh
### Brad Laue
# Wrapper launching Kazaa through wine; traps /dev/dsp through the arts 
# daemon if KDE is running, working around a bug.
#
ARTSCMD=""
ARTSSTAT=`artsshell status | head -1 | awk '{print $3}'`
case $ARTSSTAT in
suspended)
        echo "ArtsD is not running."
        ARTSCMD="exec"
        ;;
busy)
        echo "ArtsD is running"
        ARTSCMD="artsdsp"
        echo "The command will execute through $ARTSCMD"
        ;;
*)
        echo "Meh"
        ARTSCMD=""
        ;;
esac
$ARTSCMD wine ~/.wine/fake_windows/Program\ Files/KaZaA\ Lite/Kazaa.exe

Reply via email to